/* ==========================================================================
   SCOPLE — Corporate Website Design System v3
   Benchmark: toss.im — 키 브랜드컬러 없는 뉴트럴(화이트/그레이/블랙),
   컬러는 제품 UI(Jobility 그린)와 파스텔 그라데이션 카드 안에서만.
   KR: Pretendard / EN display·숫자: Plus Jakarta Sans
   ========================================================================== */

:root {
  /* Neutral palette (toss gray scale) */
  --ink: #191f28;
  --ink-soft: #333d4b;
  --muted: #6b7684;
  --faint: #8b95a1;
  --line: #e5e8eb;
  --fill: #f2f4f6;
  --bg: #ffffff;
  --bg-soft: #f9fafb;

  /* Jobility product green — 제품 UI 목업 안에서만 사용 */
  --jg-700: #176b38;
  --jg-600: #1e8c48;
  --jg-500: #26a557;
  --jg-100: #dff3e7;
  --jg-50: #f0f9f4;

  /* Functional accent (상태 배지 등 최소 사용) */
  --info: #1b64da;
  --info-bg: #e8f1fd;

  /* Type */
  --font: "Pretendard Variable", Pretendard, "Inter", -apple-system,
    BlinkMacSystemFont, "Apple SD Gothic Neo", "Segoe UI", "Malgun Gothic", sans-serif;
  --font-display: "Plus Jakarta Sans", "Pretendard Variable", Pretendard, "Inter", sans-serif;

  /* Layout */
  --container: 1100px;
  --container-wide: 1240px;
  --radius-lg: 28px;
  --radius: 20px;
  --radius-sm: 14px;
  --header-h: 64px;
  --shadow-float: 0 24px 64px rgba(25, 31, 40, 0.1);
}

/* Reset ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
  overflow-wrap: break-word;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; color: var(--ink); }

::selection { background: #d9e2ec; color: var(--ink); }

.en { font-family: var(--font-display); letter-spacing: -0.01em; }

/* Container / Section ---------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container.wide { max-width: var(--container-wide); }

.section { padding: 140px 0; }
.section.tight { padding: 100px 0; }
.section.soft { background: var(--bg-soft); }
.section.green-tint { background: var(--bg-soft); }
.section.dark {
  background: #17181c;
  color: #fff;
}
.section.dark .eyebrow { color: rgba(255, 255, 255, 0.5); }
.section.dark .sec-sub { color: rgba(255, 255, 255, 0.64); }

/* Typography — 토스식: 크게, 적게 ---------------------------------------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 24px;
}
h1, .h1 {
  font-size: clamp(2.625rem, 5.8vw, 4.5rem);
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: -0.028em;
}
h2, .h2 {
  font-size: clamp(1.9375rem, 3.9vw, 3.125rem);
  line-height: 1.26;
  font-weight: 800;
  letter-spacing: -0.022em;
}
h3, .h3 { font-size: 1.375rem; font-weight: 700; letter-spacing: -0.012em; }
.sec-sub {
  margin-top: 26px;
  font-size: clamp(1.0625rem, 1.7vw, 1.28125rem);
  line-height: 1.72;
  color: var(--muted);
  font-weight: 500;
}
.sec-head { max-width: 800px; margin-bottom: 72px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.accent { color: var(--jg-600); }

/* Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 16px;
  font-size: 1.0313rem;
  font-weight: 700;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.btn.primary { background: var(--ink); color: #fff; }
.btn.primary:hover { background: #333d4b; transform: translateY(-1px); }
.btn.ghost { background: var(--fill); color: var(--ink-soft); }
.btn.ghost:hover { background: var(--line); }
.btn.on-dark { background: #fff; color: var(--ink); }
.btn.on-dark:hover { background: var(--fill); }
.btn.sm { padding: 11px 20px; font-size: 0.9375rem; border-radius: 13px; }
.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--ink);
  font-size: 1.0313rem;
}
.text-link:hover { color: var(--muted); }
.text-link .arrow { transition: transform 0.2s ease; }
.text-link:hover .arrow { transform: translateX(3px); }

/* 원형 화살표 버튼 (토스 카드 스타일) */
.arrow-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 14px rgba(25, 31, 40, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: var(--ink);
  transition: transform 0.2s ease;
}
.arrow-circle:hover { transform: translateX(3px); }

/* Header ----------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px) saturate(1.6);
  -webkit-backdrop-filter: blur(16px) saturate(1.6);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: block;
  width: 108px;
  aspect-ratio: 1295 / 366;
  background: currentColor;
  -webkit-mask: url(../img/scople-logo.svg) no-repeat center / contain;
  mask: url(../img/scople-logo.svg) no-repeat center / contain;
  color: var(--ink);
  font-size: 0;
  transition: opacity 0.2s ease;
}
.logo:hover { opacity: 0.75; }
/* 개구리 마크는 Jobility 제품 심볼 — 회사 로고에는 사용하지 않음.
   (company.html의 심볼 소개 섹션에서만 사용) */
.logo-mark {
  width: 28px; height: 28px;
  border-radius: 9px;
  background: var(--jg-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 17px; height: 17px; }
.gnb { display: flex; gap: 2px; }
.gnb a {
  padding: 9px 15px;
  font-size: 0.9688rem;
  font-weight: 600;
  color: var(--ink-soft);
  border-radius: 10px;
  transition: background 0.15s ease, color 0.15s ease;
}
.gnb a:hover { background: var(--fill); }
.gnb a.active { color: var(--ink); font-weight: 800; }
.header-right { display: flex; align-items: center; gap: 14px; }
.lang {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-size: 0.8438rem;
  font-weight: 700;
  color: var(--faint);
}
.lang .on { color: var(--ink); }
.lang .divider { color: var(--line); }
.lang button { color: inherit; font: inherit; }
.lang button[disabled] { cursor: default; }
.lang a { color: inherit; transition: color 0.2s ease; }
.lang a:hover { color: var(--ink); }

/* 헤더 Contact — 토스 '앱 다운로드' 스타일 그레이 칩 */
.site-header .btn.primary.sm,
.mobile-menu .btn.primary.sm {
  background: var(--fill);
  color: var(--ink);
}
.site-header .btn.primary.sm:hover { background: var(--line); transform: none; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span {
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: #fff;
  z-index: 99;
  padding: 24px 24px 40px;
  flex-direction: column;
  gap: 2px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 17px 10px;
  font-size: 1.1875rem;
  font-weight: 700;
  border-radius: 12px;
}
.mobile-menu a:active { background: var(--fill); }
.mobile-menu a.active { color: var(--ink); }
/* 언어 토글 앵커는 메뉴 대형 링크 스타일을 상속받지 않는다 (KR/EN 크기 통일) */
.mobile-menu .lang a { padding: 0; font-size: inherit; font-weight: inherit; border-radius: 0; }
.mobile-menu .mm-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

/* ==========================================================================
   HERO — 토스식 인셋 라운드 미디어 + 오버레이 헤드라인
   ========================================================================== */
.hero-photo {
  padding: 16px 16px 0;
}
.hero-photo .hp-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: min(86svh, 780px);
  display: flex;
  align-items: flex-end;
  background: linear-gradient(160deg, #eef1f5 0%, #dfe4ea 45%, #aab4c0 100%);
}
/* 사진 레이어 — 로드 시 1.08 → 1.0 스케일-다운 엔트런스 (Ken Burns) */
.hero-photo .hp-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../img/hero-home.jpg) center / cover no-repeat;
  animation: hp-zoom 2.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes hp-zoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-photo .hp-media::before { animation: none; }
}
@media (max-width: 640px) {
  /* 모바일 전용 세로 배너 (4:5) */
  .hero-photo .hp-media::before { background-image: url(../img/hero-home-m.jpg); }
}
.hero-photo .hp-media::after {
  /* 하단 가독성 스크림 */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 24, 30, 0.55) 0%, rgba(20, 24, 30, 0.12) 38%, rgba(20, 24, 30, 0) 60%);
  pointer-events: none;
}
.hp-tag {
  position: absolute;
  top: 28px; left: 32px;
  z-index: 2;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(20, 24, 30, 0.35);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 999px;
}
.hp-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 56px 56px;
  color: #fff;
}
.hp-copy h1 {
  color: #fff;
  font-size: clamp(2.375rem, 5vw, 4.25rem);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.18);
}
.hp-copy .hp-sub {
  margin-top: 20px;
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
}
.hero-photo .hp-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 24px 0;
}

/* 히어로 앰비언트 비디오 (음소거·루프 커버) */
.hp-video { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hp-video iframe {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: max(100vw, 153svh);
  height: max(57vw, 88svh);
  border: 0;
}

/* 실사 스트립 이미지 / 앰비언트 클립 */
.strip-img { width: 100%; height: 100%; border-radius: 20px; object-fit: cover; display: block; }
.media-clip { position: relative; border-radius: 20px; overflow: hidden; background: #0b0d12; }
.media-clip iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; pointer-events: none; }

/* 실제 Jobility 로고 적용 지점 */
.ps-head img { height: 18px; width: auto; display: block; }
.ps-head.has-img::before { display: none; }
.symbol-logo { width: min(340px, 100%); height: auto; display: inline-block; }

/* 더미 이미지 표시용 라벨 */
.dummy-label {
  position: absolute;
  top: 28px; right: 32px;
  z-index: 2;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(20, 24, 30, 0.3);
  padding: 7px 14px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

/* 일반 더미 이미지 블록 */
.placeholder-img {
  position: relative;
  border-radius: var(--radius);
  background: linear-gradient(150deg, #eef1f5 0%, #dde2e9 60%, #cbd3dc 100%);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.placeholder-img::before {
  content: attr(data-label);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--faint);
  letter-spacing: 0.03em;
}

/* 피처 히어로 — 좌 헤드라인 / 우 설명 / 하단 풀와이드 미디어 (토스 서비스 페이지 문법) */
.feature-hero { padding: 112px 0 0; }
.fh-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 44px;
}
.feature-hero h1 {
  font-size: clamp(2.125rem, 4.4vw, 3.5rem);
  text-align: left;
}
.fh-sub {
  color: var(--muted);
  font-weight: 500;
  font-size: 1.0313rem;
  line-height: 1.78;
  padding-bottom: 10px;
}
.fh-media {
  border-radius: 24px;
  min-height: min(62vh, 560px);
  background:
    radial-gradient(110% 90% at 80% 10%, #e3e9f2 0%, rgba(227, 233, 242, 0) 55%),
    linear-gradient(160deg, #f0f2f6 0%, #dfe4ea 50%, #b9c2cd 100%);
}
/* 콤포지트 변주 — 메인 미디어 + 우측 스택 카드 (토스 슬래브의 스코플식 비틀기) */
.fh-composite {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 20px;
  align-items: stretch;
}
.fh-composite .fh-media { min-height: min(56vh, 500px); position: relative; }
.fh-media.fm-impact { background: url(../img/hero-impact.jpg) center / cover no-repeat; }
.fh-media.fm-global { background: url(../img/hero-global.jpg) center / cover no-repeat; }
.fh-side { display: grid; grid-template-rows: 1fr 1fr; gap: 20px; }
.fh-card {
  border-radius: 20px;
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
/* 라벨은 상단 고정, 숫자·설명은 하단 정렬 — 세로로 긴 카드에서 여백이 의도된 구조로 읽히게 */
.fh-card .viz-label { margin-bottom: auto; }
.fh-card.metric {
  background: linear-gradient(165deg, #f9fbfe 0%, #edf2f9 100%);
  border: 1px solid rgba(25, 31, 40, 0.06);
  box-shadow: 0 16px 44px rgba(25, 31, 40, 0.08);
}
.fh-card.metric .viz-label { color: #4468b8; }
.fh-card.tint-b { background: linear-gradient(160deg, #eaf1fb 0%, #d6e4f7 100%); }
.fh-card.tint-m { background: linear-gradient(160deg, #eaf6f0 0%, #d5ecdf 100%); }
@media (max-width: 860px) {
  .fh-grid { grid-template-columns: 1fr; gap: 20px; align-items: start; }
  .fh-media { min-height: 44vh; }
  .fh-composite { grid-template-columns: 1fr; }
  .fh-side { grid-template-rows: none; grid-template-columns: 1fr 1fr; }
}

/* Legacy hero (서브페이지 page-hero) -------------------------------------- */
.hero {
  position: relative;
  padding: 140px 0 110px;
  overflow: hidden;
  text-align: center;
}
.hero .container { position: relative; }
.hero-copy { max-width: 820px; margin: 0 auto; }
.hero-cta { display: flex; gap: 12px; margin-top: 44px; flex-wrap: wrap; justify-content: center; }
.hero .sec-sub { margin-left: auto; margin-right: auto; max-width: 620px; }

.page-hero { padding: 120px 0 90px; text-align: center; }
.page-hero .sec-sub { max-width: 660px; margin-left: auto; margin-right: auto; }

/* ==========================================================================
   NUMBERS — 토스식 얇은 룰 그리드, 큰 블랙 숫자
   ========================================================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 40px;
}
.stat {
  position: relative;
  padding: 28px 4px 8px;
  background: transparent;
  border-radius: 0;
  transition: none;
}
/* 룰 라인 쉬머 — 좌측 진하게 시작해 우측으로 사라짐 */
.stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, rgba(25, 31, 40, 0.75) 0%, rgba(25, 31, 40, 0.28) 55%, rgba(25, 31, 40, 0) 100%);
}
.stat:hover { transform: none; }
.stat.green { background: transparent; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 3.8vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.08;
}
.stat-label { margin-top: 12px; font-size: 0.9688rem; font-weight: 700; color: var(--ink-soft); }
.stat-desc { margin-top: 7px; font-size: 0.8594rem; color: var(--muted); line-height: 1.6; font-weight: 500; }
.stat-note { margin-top: 34px; font-size: 0.8438rem; color: var(--faint); }

/* Cards — 보더리스 필 ----------------------------------------------------- */
.cards { display: grid; gap: 20px; }
.cards.c2 { grid-template-columns: repeat(2, 1fr); }
.cards.c3 { grid-template-columns: repeat(3, 1fr); }
.cards.c4 { grid-template-columns: repeat(4, 1fr); }
.card {
  padding: 44px 36px;
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.section.soft .card, .section.green-tint .card { background: #fff; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-float); }
.card.green { background: var(--fill); }
.section.soft .card.green { background: #fff; }
.card .card-eyebrow {
  font-family: var(--font-display);
  font-size: 0.7813rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 16px;
}
.card h3 { margin-bottom: 12px; line-height: 1.4; }
.card p { color: var(--muted); font-size: 0.9875rem; line-height: 1.72; font-weight: 500; }
.card .card-icon {
  width: 56px; height: 56px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(25, 31, 40, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  font-size: 1.5rem;
  color: var(--ink);
}
.card .card-icon svg { width: 26px; height: 26px; }

/* ==========================================================================
   GLASS CARDS — 토스식 파스텔 그라데이션 카드
   ========================================================================== */
.glass-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.glass-card {
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  transition: transform 0.28s ease;
}
.glass-card:hover { transform: translateY(-5px); }
.glass-card.g-blue { background: linear-gradient(160deg, #eaf1fb 0%, #dbe7f8 55%, #cfdcf3 100%); }
.glass-card.g-lav { background: linear-gradient(160deg, #f0eefa 0%, #e5e1f5 55%, #d9d4ef 100%); }
.glass-card.g-mint { background: linear-gradient(160deg, #eaf6f0 0%, #dcefe5 55%, #cfe8db 100%); }
.glass-card .gc-visual {
  flex: 1;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 30px rgba(25, 31, 40, 0.06);
  padding: 20px;
  margin-bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}
.glass-card h3 { font-size: 1.1875rem; line-height: 1.5; margin-bottom: 6px; }
.glass-card p { font-size: 0.9063rem; color: var(--muted); font-weight: 500; line-height: 1.65; flex-grow: 0; }
.glass-card .gc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
.glass-card .gc-foot span { font-size: 0.875rem; font-weight: 700; color: var(--ink-soft); }

/* 글래스 카드 내부 컬러 동조 — 쨍한 그린 대신 카드 톤의 저채도 딥 컬러 */
.glass-card .gc-row {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 4px 14px rgba(25, 31, 40, 0.05);
}
.glass-card .mock-track { background: rgba(255, 255, 255, 0.85); }
.glass-card.g-blue .gc-row .dot, .glass-card.g-blue .mock-fill { background: #5b7fd0; }
.glass-card.g-blue .gc-row em, .glass-card.g-blue .mock-bar-row em { color: #4468b8; }
.glass-card.g-lav .gc-row .dot, .glass-card.g-lav .mock-fill { background: #8a7cc9; }
.glass-card.g-lav .gc-row em, .glass-card.g-lav .mock-bar-row em { color: #7461b5; }
.glass-card.g-mint .gc-row .dot, .glass-card.g-mint .mock-fill { background: #4f9673; }
.glass-card.g-mint .gc-row em, .glass-card.g-mint .mock-bar-row em { color: #3f8563; }

/* 글래스 카드 내부 미니 UI 조각 */
.gc-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-soft);
  box-shadow: 0 2px 8px rgba(25, 31, 40, 0.04);
}
.gc-row .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--jg-500); flex-shrink: 0; }
.gc-row em { margin-left: auto; font-style: normal; font-family: var(--font-display); font-weight: 800; color: var(--jg-600); }

/* ==========================================================================
   STICKY STORY — 토스식 2컬럼 스크롤 스토리텔링
   ========================================================================== */
.sticky-story { position: relative; }
.ss-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.ss-visual {
  position: sticky;
  top: calc(var(--header-h) + 48px);
  height: calc(100vh - var(--header-h) - 96px);
  max-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ss-stage { position: relative; width: 100%; max-width: 460px; }
.ss-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}
.ss-panel.on { opacity: 1; transform: none; pointer-events: auto; position: relative; }
.ss-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(25, 31, 40, 0.1);
  padding: 26px;
  display: grid;
  gap: 12px;
}
.ss-steps { padding: 8vh 0 12vh; }
.ss-step {
  padding: 20vh 0;
  opacity: 0.28;
  transition: opacity 0.4s ease;
}
.ss-step.active { opacity: 1; }
.ss-step .step-no {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--faint);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.ss-step h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.125rem);
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin-bottom: 14px;
}
.ss-step p { color: var(--muted); font-size: 1.0313rem; font-weight: 500; line-height: 1.75; max-width: 420px; }

/* 역방향 스티키(텍스트 좌 · 비주얼 우) */
.ss-grid.rev .ss-visual { order: 2; }
.ss-grid.rev .ss-steps { order: 1; }

/* ==========================================================================
   CONSOLE — 사이드바형 제품 콘솔 목업 (토스 payments 콘솔 문법)
   ========================================================================== */
.console {
  display: grid;
  grid-template-columns: 168px 1fr;
  width: 100%;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(25, 31, 40, 0.05);
  box-shadow: 0 24px 70px rgba(25, 31, 40, 0.12);
  overflow: hidden;
}
.console-side {
  background: var(--bg-soft);
  border-right: 1px solid var(--line);
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cs-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.0625rem;
  padding: 6px 10px 16px;
}
.cs-logo::before {
  content: "";
  width: 26px; height: 26px;
  background: url(../img/jobility-logo.png) left center / auto 100% no-repeat;
}
.cs-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
  padding: 9px 10px;
  border-radius: 8px;
  transition: background 0.25s ease, color 0.25s ease;
}
.cs-item svg { width: 15px; height: 15px; flex-shrink: 0; opacity: 0.72; }
.cs-item.on svg, .ss-menu-item.hot svg { opacity: 1; }
.cs-item.on { background: #fff; color: var(--ink); font-weight: 700; box-shadow: 0 1px 4px rgba(25, 31, 40, 0.06); }
.console-main { padding: 22px; position: relative; min-height: 400px; }
.console-main .ss-stage { max-width: none; }
.console-pane { display: grid; gap: 10px; align-content: start; }
.console .gc-row { background: var(--bg-soft); box-shadow: none; }
.console .mock-kpi { background: var(--jg-50); }
@media (max-width: 860px) {
  .console { grid-template-columns: 1fr; }
  .console-side { flex-direction: row; flex-wrap: wrap; border-right: 0; border-bottom: 1px solid var(--line); }
  .cs-logo { padding: 6px 10px; width: 100%; }
  .console-main { min-height: 0; }
  .ss-grid.rev .ss-visual { order: 0; }
}

/* ==========================================================================
   WATERMARK — 대형 라이트그레이 타이포 + 키워드 하이라이트
   ========================================================================== */
.watermark-sec {
  position: relative;
  overflow: hidden;
  padding: 170px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(to right, var(--line) 1px, transparent 1px) no-repeat calc(50% - 380px) 0 / 1px 100%,
    linear-gradient(to right, var(--line) 1px, transparent 1px) no-repeat calc(50% + 380px) 0 / 1px 100%,
    #fff;
}
.wm-text {
  text-align: center;
  will-change: transform;
  transform-origin: 50% 50%;
  font-size: clamp(2.25rem, 6vw, 4.375rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.3;
  color: #e8ebee;
}
.wm-hl { color: var(--jg-500); position: relative; }
.wm-hl::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 0.9em;
  margin-left: 6px;
  vertical-align: -0.12em;
  background: var(--jg-500);
  animation: caret 1.1s steps(1) infinite;
}
@keyframes caret { 50% { opacity: 0; } }
.wm-ink { color: var(--ink); }

/* ==========================================================================
   COMPANY — 토스 컴퍼니 페이지 문법 + 스크롤 타이포 인터랙션
   ========================================================================== */

/* 포토 스트립 — 더미 3장, 패럴랙스 */
.photo-strip {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 0.9fr;
  gap: 16px;
  margin-top: 72px;
  align-items: start;
}
.photo-strip .placeholder-img { will-change: transform; }
@media (max-width: 860px) {
  /* 태블릿: 사진 2단 + 영상 풀폭 (스태거 마진·개별 높이 리셋) */
  .photo-strip { grid-template-columns: 1fr 1fr; grid-auto-flow: dense; gap: 16px; margin-top: 48px; }
  .photo-strip > div { margin-top: 0 !important; height: 300px !important; transform: none !important; }
  .photo-strip .media-clip { grid-column: 1 / -1; height: 350px !important; }
}
@media (max-width: 560px) {
  /* 모바일: 1단 스택 */
  .photo-strip { grid-template-columns: 1fr; gap: 20px; }
  .photo-strip > div { height: 260px !important; }
  .photo-strip .media-clip { height: 210px !important; }
}

/* 필 텍스트 — 스크롤에 따라 단어가 회색→검정으로 채워짐 */
.fill-text {
  font-size: clamp(1.6875rem, 3.4vw, 2.8125rem);
  font-weight: 800;
  line-height: 1.56;
  letter-spacing: -0.022em;
  color: var(--ink);
  max-width: 900px;
}
.fill-text.armed .fw { color: #e3e6ea; transition: color 0.22s ease; }
.fill-text.armed .fw.lit { color: var(--ink); }
.fill-brand {
  margin-top: 48px;
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 1.8vw, 1.4375rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.fill-brand small {
  display: block;
  margin-top: 8px;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--muted);
}

/* SCOPE + PEOPLE → SCOPLE 머지 인터랙션 */
.merge-wrap {
  position: relative;
  text-align: center;
  will-change: transform;
  transform-origin: 50% 50%;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7.5vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  padding: 24px 0;
}
.merge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 56px);
}
.mw-side { display: inline-block; color: #d6dade; will-change: transform, opacity; }
.mw-plus { color: #d6dade; font-weight: 600; font-size: 0.5em; will-change: opacity; }
.mw-result {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  opacity: 0;
  will-change: transform, opacity;
}
.mw-result .mw-logo {
  display: block;
  width: 4.3em;
  aspect-ratio: 1295 / 366;
  background: currentColor;
  -webkit-mask: url(../img/scople-logo.svg) no-repeat center / contain;
  mask: url(../img/scople-logo.svg) no-repeat center / contain;
}
/* JS가 .armed를 붙이기 전에는 결과 워드마크만 표시 (미지원 폴백) */
.merge-wrap:not(.armed) .merge-row { display: none; }
.merge-wrap:not(.armed) .mw-result { position: relative; opacity: 1; }

/* 개구리 hop 등장 */
@keyframes frog-hop {
  0% { transform: translateY(0); }
  28% { transform: translateY(-30px) rotate(-3deg); }
  52% { transform: translateY(0) rotate(0deg); }
  70% { transform: translateY(-12px); }
  84% { transform: translateY(0); }
  100% { transform: translateY(0); }
}
.frog-hop.in svg { animation: frog-hop 1.1s cubic-bezier(0.34, 1.2, 0.5, 1) 0.15s both; }

/* 타임라인 포커스 — 중앙 항목만 강조 */
.timeline.dim .tl-item { opacity: 0.32; transition: opacity 0.35s ease; }
.timeline.dim .tl-item.now { opacity: 1; }

/* ==========================================================================
   DATA WAVE — 토스 랜딩 하단 도트 지형 컨셉 (Technology)
   ========================================================================== */
.datawave-sec { padding: 120px 0 0; overflow: hidden; }
.datawave-sec .dw-head {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 64px;
  padding: 0 24px;
}
.dw-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 8px;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--faint);
}
.dw-meta b { color: var(--jg-600); font-weight: 800; }
.dw-stage { position: relative; height: min(60vh, 600px); }
.dw-stage canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.dw-pin {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 6px;
  pointer-events: none;
  will-change: transform;
  /* JS가 지형 표면에 앵커링(.dw-stage.armed)하기 전에는 숨김 */
  visibility: hidden;
}
.dw-stage.armed .dw-pin { visibility: visible; }
.dw-pin .pin-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  background: #fff;
  padding: 5px 11px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(25, 31, 40, 0.08);
  white-space: nowrap;
  transition: opacity 0.3s ease;
}
.dw-pin .pin-line { width: 1.5px; height: 60px; background: linear-gradient(to bottom, var(--faint), rgba(139, 149, 161, 0)); }
.dw-pin .pin-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--faint); }
.dw-pin.mini { opacity: 0.5; }
.dw-pin.mini .pin-label { display: none; }
.dw-pin.mini .pin-line { height: 42px; }
.dw-pin.hot .pin-label { color: #fff; background: var(--jg-600); box-shadow: 0 6px 18px rgba(30, 140, 72, 0.32); }
.dw-pin.hot .pin-line { height: 34px; }
.dw-pin.hot .pin-line { background: linear-gradient(to bottom, var(--jg-500), rgba(38, 165, 87, 0)); }
.dw-pin.hot .pin-dot {
  width: 9px; height: 9px;
  background: var(--jg-600);
  box-shadow: 0 0 0 3px #fff, 0 0 0 4.5px rgba(38, 165, 87, 0.8);
}
.dw-foot {
  display: grid;
  grid-template-columns: 1.05fr 1.45fr;
  gap: 64px;
  align-items: start;
  padding: 88px 0 140px;
}
.dw-foot h2 { font-size: clamp(1.625rem, 2.8vw, 2.375rem); }
.dw-foot .dw-foot-sub { margin-top: 18px; font-size: 1rem; color: var(--muted); font-weight: 500; line-height: 1.72; }
.dw-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; padding-top: 8px; }
.dw-col h3 { font-size: 1.0625rem; margin-bottom: 10px; }
.dw-col p { font-size: 0.9063rem; color: var(--muted); line-height: 1.7; font-weight: 500; }

/* ==========================================================================
   ORB HERO — 다크 + 리퀴드 글래스 오브 (Technology)
   오브 셰이더 레퍼런스: lersent001.github.io/orb (orb-glass-liquid × aurora)
   ========================================================================== */
.orb-hero {
  position: relative;
  overflow: hidden;
  background: #05070f;
  color: #fff;
  padding: 112px 0 84px;
  text-align: center;
}
.orb-hero .eyebrow { color: rgba(255, 255, 255, 0.42); }
.orb-hero h1 { color: #fff; }
.orb-stage {
  position: relative;
  width: min(560px, 88vw);
  height: min(560px, 88vw);
  margin: 44px auto 20px;
}
.orb-rings { position: absolute; inset: 0; animation: orb-spin 90s linear infinite; }
.orb-ring { position: absolute; border-radius: 50%; border: 1px dotted rgba(255, 255, 255, 0.16); }
.orb-ring.r1 { inset: 3%; }
.orb-ring.r2 { inset: 14%; border-color: rgba(255, 255, 255, 0.09); }
.orb-star {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: #fff;
  animation: orb-twinkle 3.2s ease-in-out infinite;
}
@keyframes orb-spin { to { transform: rotate(360deg); } }
@keyframes orb-twinkle { 50% { opacity: 0.1; } }
.orb-slot { position: absolute; inset: 26%; border-radius: 50%; }
.orb-slot::before {
  /* 오로라 글로우 아우라 */
  content: "";
  position: absolute;
  inset: -30%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 99, 214, 0.3), rgba(32, 240, 182, 0.13) 50%, rgba(32, 240, 182, 0) 72%);
}
.orb-fallback {
  position: absolute;
  inset: 5%;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #2b3f77, #0a1030 58%, #05070f 80%);
  display: block;
  transition: opacity 0.6s ease, filter 0.6s ease;
}
/* WebGPU 오브 활성 시: 원반 → 경계 없는 내부 글로우 */
.orb-slot.gpu-on .orb-fallback {
  inset: 16%;
  opacity: 0.5;
  filter: blur(32px);
  background: radial-gradient(circle at 45% 40%, #35406f, #101433 60%, rgba(5, 7, 15, 0) 85%);
}
.orb-slot canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.orb-pill {
  position: absolute;
  transform: translate(-50%, -50%);
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8438rem;
  font-weight: 600;
  white-space: nowrap;
  transition: border-color 0.5s ease, background 0.5s ease, color 0.5s ease, box-shadow 0.5s ease;
  animation: orb-float 5.6s ease-in-out infinite;
}
.orb-pill.on {
  border-color: rgba(74, 222, 128, 0.6);
  background: rgba(30, 140, 72, 0.22);
  color: #8af0b8;
  box-shadow: 0 0 26px rgba(74, 222, 128, 0.22);
}
@keyframes orb-float { 50% { margin-top: -7px; } }
.orb-hero .dw-meta { color: rgba(255, 255, 255, 0.38); padding-top: 26px; }
.orb-hero .dw-meta b { color: #4ade80; }
@media (max-width: 700px) {
  .orb-pill { font-size: 0.75rem; padding: 7px 13px; }
  .orb-hero { padding: 88px 0 64px; }
}
@media (prefers-reduced-motion: reduce) {
  .orb-rings { animation: none; }
  .orb-star { animation: none; opacity: 0.4; }
  .orb-pill { animation: none; }
}

/* ==========================================================================
   TICKER — 기울어진 파스텔 카드가 흐르는 무한 마퀴 (토스 문법)
   ========================================================================== */
.ticker-wrap { overflow: hidden; padding: 48px 0 72px; }
.ticker {
  display: flex;
  align-items: flex-start; /* 호버 확장 시 다른 카드 높이 영향 없음 */
  gap: 24px;
  width: max-content;
  animation: ticker-scroll 38s linear infinite;
}
.ticker-wrap:hover .ticker { animation-play-state: paused; }
@keyframes ticker-scroll { to { transform: translateX(-50%); } }
.ticker-card {
  width: 280px;
  min-height: 310px;
  flex-shrink: 0;
  border-radius: 26px;
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.ticker-card:nth-child(odd) { transform: rotate(-3.2deg) translateY(10px); }
.ticker-card:nth-child(even) { transform: rotate(2.6deg); }
.ticker-card:hover { transform: rotate(0deg) translateY(-8px); box-shadow: var(--shadow-float); }
.ticker-card.t1 { background: linear-gradient(160deg, #eaf1fb 0%, #d6e4f7 100%); }
.ticker-card.t2 { background: linear-gradient(160deg, #f0eefa 0%, #ded8f2 100%); }
.ticker-card.t3 { background: linear-gradient(160deg, #eaf6f0 0%, #d5ecdf 100%); }
.ticker-card.t4 { background: linear-gradient(160deg, #fdf2e9 0%, #f7e1cd 100%); }
.ticker-card.t5 { background: linear-gradient(160deg, #f2f4f6 0%, #e3e7ec 100%); }
.ticker-card.t6 { background: linear-gradient(160deg, #fbeef2 0%, #f1d9e2 100%); }
/* 레코드 타일 티커 — 틸트 없는 정방형, 다크/그레이 교차, 역방향 흐름 (토스뱅크 '기록' 문법) */
.ticker.records { animation-direction: reverse; }
.record-card {
  width: 300px;
  min-height: 300px;
  flex-shrink: 0;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.record-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-float); }
.record-card { position: relative; overflow: hidden; }
.record-card .rc-art {
  position: absolute;
  right: 14px;
  bottom: 44px;
  width: 128px;
  height: 128px;
  object-fit: contain;
  pointer-events: none;
  transition: transform 0.3s ease;
}
.record-card .rc-art.blend { mix-blend-mode: multiply; }
.record-card:hover .rc-art { transform: translateY(-4px) scale(1.04); }
.record-card .rc-label { font-size: 0.8125rem; font-weight: 600; color: var(--muted); }
.record-card h3 { font-size: 1.375rem; letter-spacing: -0.015em; line-height: 1.42; margin-top: 10px; }
.record-card .rc-foot {
  margin-top: auto;
  padding-top: 24px;
  font-family: var(--font-display);
  font-size: 0.8438rem;
  font-weight: 700;
  opacity: 0.5;
}
.record-card.rc-dark { background: #17181c; color: #fff; }
.record-card.rc-dark .rc-label { color: rgba(255, 255, 255, 0.55); }
.record-card.rc-navy { background: linear-gradient(165deg, #33497a 0%, #1d2a4c 100%); color: #fff; }
.record-card.rc-navy .rc-label { color: rgba(255, 255, 255, 0.6); }
.record-card.rc-blue { background: linear-gradient(165deg, #eef4fe 0%, #d8e6fa 100%); }
.record-card.rc-blue .rc-label { color: #4468b8; }
.record-card.rc-mint { background: linear-gradient(165deg, #ebf7f1 0%, #d4ecdf 100%); }
.record-card.rc-mint .rc-label { color: #3f8563; }
.record-card.rc-peach { background: linear-gradient(165deg, #fff2ea 0%, #fbdfcd 100%); }
.record-card.rc-peach .rc-label { color: #b9643a; }
.record-card.rc-lav { background: linear-gradient(165deg, #f2effd 0%, #e2dcf7 100%); }
.record-card.rc-lav .rc-label { color: #7461b5; }
.tc-no {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(25, 31, 40, 0.42);
}
.tc-ic {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 8px 24px rgba(25, 31, 40, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  margin: auto 0;
  align-self: center;
}
.tc-ic svg { width: 24px; height: 24px; }
.ticker-card .tc-sub { font-size: 0.8125rem; font-weight: 600; color: var(--muted); margin-bottom: 4px; }
.ticker-card h3 { font-size: 1.25rem; letter-spacing: -0.015em; }
/* 호버 시 펼쳐지는 설명 */
.tc-desc {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  font-size: 0.8438rem;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.62;
  transition: max-height 0.4s ease, opacity 0.35s ease, margin-top 0.4s ease;
}
.ticker-card:hover .tc-desc { max-height: 130px; opacity: 1; margin-top: 10px; }
@media (prefers-reduced-motion: reduce) {
  .ticker { animation: none; }
  .ticker-wrap { overflow-x: auto; }
}

/* 파이프라인 스크롤 진행 — 지나간 단계가 순서대로 점등 */
.pipeline.armed .pipe-node,
.pipeline.armed .pipe-arrow {
  opacity: 0.32;
  transition: opacity 0.4s ease, background 0.4s ease, transform 0.4s ease;
}
.pipeline.armed .pipe-node.lit { opacity: 1; background: var(--fill); transform: translateY(-1px); }
.section.soft .pipeline.armed .pipe-node.lit { background: #fff; }
.pipeline.armed .pipe-arrow.lit { opacity: 1; color: var(--ink); }

/* 가로 타임라인 시퀀스 — 도트 순차 점등 */
.htl.armed .htl-item { opacity: 0.3; transition: opacity 0.45s ease; }
.htl.armed .htl-item::before { border-color: var(--line); transition: border-color 0.3s ease, transform 0.3s ease; }
.htl.armed .htl-item.on { opacity: 1; }
.htl.armed .htl-item.on::before { border-color: var(--ink); transform: translateX(-50%) scale(1.12); }

/* People — 토스 리더 소개 문법 ------------------------------------------- */
.people-head {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 56px;
}
.people-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: start;
}
.people-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ink-soft);
}
.people-label::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ink);
}
.people-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.person-card { display: block; }
.person-photo { position: relative; border-radius: var(--radius); overflow: hidden; }
.person-photo .placeholder-img { min-height: 340px; transition: transform 0.45s ease; }
.person-card:hover .person-photo .placeholder-img { transform: scale(1.035); }
.person-photo .arrow-circle {
  position: absolute;
  right: 16px; bottom: 16px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 6px 18px rgba(25, 31, 40, 0.25);
}
.person-card:hover .arrow-circle { transform: translateX(3px); }
.person-name { margin-top: 20px; font-size: 1.125rem; font-weight: 800; }
.person-name span { color: var(--faint); font-weight: 700; }
.person-desc { margin-top: 8px; font-size: 0.9375rem; color: var(--muted); line-height: 1.66; font-weight: 500; }

/* Flow (legacy 컴포넌트 — 서브페이지 호환) -------------------------------- */
.flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.flow-step {
  position: relative;
  padding: 34px 28px;
  border-radius: var(--radius);
  background: var(--bg-soft);
  transition: background 0.3s ease, transform 0.25s ease;
}
.section.soft .flow-step { background: #fff; }
.flow-step:hover { transform: translateY(-3px); }
.flow-step .step-no {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--faint);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.flow-step h3 { font-size: 1.1875rem; margin-bottom: 3px; }
.flow-step .step-en {
  font-family: var(--font-display);
  font-size: 0.7813rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--faint);
  margin-bottom: 13px;
}
.flow-step p { font-size: 0.9063rem; color: var(--muted); line-height: 1.66; font-weight: 500; }
.flow-step::after {
  content: "→";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--faint);
  font-size: 1.1875rem;
  font-weight: 700;
  z-index: 2;
}
.flow-step:last-child::after { display: none; }
.flow-step.lit { background: var(--fill); }
.flow-step.lit .step-no { color: var(--ink); }

/* Vertical pipeline ------------------------------------------------------ */
.pipeline { max-width: 540px; margin: 0 auto; }
.pipe-node {
  padding: 21px 28px;
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  text-align: center;
  font-weight: 700;
  font-size: 1.0313rem;
}
.section.soft .pipe-node { background: #fff; }
.pipe-node .pipe-sub { display: block; font-size: 0.8438rem; font-weight: 500; color: var(--muted); margin-top: 3px; }
.pipe-node.hl { background: var(--fill); color: var(--ink); }
.section.soft .pipe-node.hl { background: var(--fill); }
.pipe-arrow { text-align: center; color: var(--faint); font-size: 1.1875rem; padding: 7px 0; font-weight: 700; }

/* Product mockup — Jobility 그린은 여기(제품 UI)에서만 --------------------- */
.mockup-wrap { position: relative; }
.mockup {
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 40px 100px rgba(25, 31, 40, 0.14);
  overflow: hidden;
  border: 1px solid rgba(25, 31, 40, 0.05);
}
.mockup-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 15px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}
.mockup-bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--line); }
.mockup-bar i:first-child { background: #f2b8b5; }
.mockup-bar i:nth-child(2) { background: #f5d791; }
.mockup-bar i:nth-child(3) { background: #a9dcb7; }
.mockup-bar .mockup-url {
  margin-left: 10px;
  flex: 1;
  max-width: 320px;
  padding: 5px 14px;
  background: #fff;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--faint);
}
.mockup-body { padding: 28px; display: grid; gap: 18px; }

.mock-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.mock-kpi {
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
}
.mock-kpi b { display: block; font-family: var(--font-display); font-size: 1.4375rem; font-weight: 800; color: var(--jg-600); letter-spacing: -0.02em; }
.mock-kpi span { font-size: 0.7813rem; color: var(--muted); font-weight: 600; }
.mock-cand-list { display: grid; gap: 10px; }
.mock-cand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
}
.mock-cand.top { background: var(--jg-50); }
.mock-cand .avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--jg-100);
  color: var(--jg-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9375rem;
  flex-shrink: 0;
}
.mock-cand .cand-info { flex: 1; min-width: 0; text-align: left; }
.mock-cand .cand-info b { display: block; font-size: 0.9375rem; }
.mock-cand .cand-info span { font-size: 0.7813rem; color: var(--muted); font-weight: 500; }
.mock-cand .score {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--jg-600);
  white-space: nowrap;
}
.mock-bars { display: grid; gap: 13px; }
.mock-bar-row { display: grid; grid-template-columns: 122px 1fr 44px; align-items: center; gap: 12px; }
.mock-bar-row span { font-size: 0.8125rem; font-weight: 600; color: var(--ink-soft); text-align: left; }
.mock-bar-row em { font-family: var(--font-display); font-size: 0.8125rem; font-weight: 700; color: var(--jg-600); font-style: normal; text-align: right; }
.mock-track { height: 8px; border-radius: 99px; background: var(--line); overflow: hidden; }
.mock-fill { height: 100%; border-radius: 99px; background: var(--jg-500); }
.sample-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.7813rem;
  color: var(--faint);
  font-weight: 500;
}

/* Floating labels */
.float-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 36px;
}
.float-label {
  padding: 10px 19px;
  border-radius: 999px;
  background: var(--fill);
  font-family: var(--font-display);
  font-size: 0.8438rem;
  font-weight: 700;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.float-label::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--jg-500);
}

/* Accessibility pictograms ----------------------------------------------- */
.picto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.picto {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  font-size: 0.9375rem;
  font-weight: 700;
}
.section.soft .picto, .section.green-tint .picto { background: #fff; }
.picto .p-ic {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--fill);
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1875rem;
  flex-shrink: 0;
}

/* Split ------------------------------------------------------------------ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  text-align: left;
}
.split.rev > :first-child { order: 2; }
.split.rev > :last-child { order: 1; }
.split .sec-head { margin-bottom: 0; }
.split-body p + p { margin-top: 16px; }
.split-body p { color: var(--muted); font-size: 1.0625rem; line-height: 1.78; font-weight: 500; }

/* Story columns ---------------------------------------------------------- */
.story-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.story-card {
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
  text-align: left;
}
.section.soft .story-card { background: #fff; }
.story-card .who {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}
.story-card .who .avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--fill);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.125rem;
}
.story-card .who b { display: block; font-size: 1.125rem; }
.story-card .who span { font-size: 0.8438rem; color: var(--muted); font-weight: 600; }
.story-card p { color: var(--ink-soft); line-height: 1.82; font-size: 1rem; }
.story-card p + p { margin-top: 14px; }

blockquote.pull {
  margin: 72px auto 0;
  max-width: 660px;
  text-align: center;
  font-size: clamp(1.4375rem, 2.8vw, 2rem);
  font-weight: 800;
  line-height: 1.48;
  letter-spacing: -0.018em;
  color: var(--ink);
}
blockquote.pull small { display: block; margin-top: 18px; font-size: 0.9375rem; font-weight: 600; color: var(--muted); }

/* Timeline --------------------------------------------------------------- */
.timeline { display: grid; }
.tl-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 44px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  text-align: left;
}
.tl-item:last-child { border-bottom: 1px solid var(--line); }
.tl-year {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.tl-year small { display: block; font-size: 0.7813rem; font-weight: 700; color: var(--faint); letter-spacing: 0.07em; text-transform: uppercase; margin-top: 6px; }
.tl-body h3 { margin-bottom: 14px; font-size: 1.25rem; }
.tl-body ul { display: grid; gap: 9px; }
.tl-body li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.9875rem;
  font-weight: 500;
}
.tl-body li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #c9cfd6;
}

/* Horizontal timeline ----------------------------------------------------- */
.htl { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.htl::before {
  content: "";
  position: absolute;
  top: 9px; left: 10%; right: 10%;
  height: 2px;
  background: var(--line);
}
.htl-item { text-align: center; position: relative; padding-top: 36px; }
.htl-item::before {
  content: "";
  position: absolute;
  top: 1px; left: 50%;
  transform: translateX(-50%);
  width: 17px; height: 17px;
  border-radius: 50%;
  background: #fff;
  border: 3.5px solid var(--ink);
}
.htl-item b { display: block; font-family: var(--font-display); font-size: 1.0625rem; font-weight: 800; color: var(--ink); }
.htl-item span { font-size: 0.875rem; color: var(--muted); font-weight: 600; }

/* Badges ----------------------------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 15px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.7813rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.badge.base { background: var(--ink); color: #fff; }
.badge.poc { background: var(--info-bg); color: var(--info); }
.badge.plan { background: var(--fill); color: var(--muted); }

/* Global status ---------------------------------------------------------- */
.geo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.geo-card {
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.section.soft .geo-card { background: #fff; }
.geo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-float); }
.geo-card.primary { background: var(--fill); }
.section.soft .geo-card.primary { background: #fff; }
.geo-card .flag { font-size: 1.875rem; margin-bottom: 18px; display: block; }
.geo-card h3 { margin-bottom: 4px; }
.geo-card .geo-en {
  font-family: var(--font-display);
  font-size: 0.7813rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 18px;
}
.geo-card p { font-size: 0.9063rem; color: var(--muted); margin-top: 14px; line-height: 1.68; font-weight: 500; }

/* Partner groups --------------------------------------------------------- */
.partner-group { margin-bottom: 52px; text-align: left; }
.partner-group:last-child { margin-bottom: 0; }
.partner-group .pg-title {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 18px;
}
.partner-row { display: flex; flex-wrap: wrap; gap: 10px; }
.partner-chip {
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  font-weight: 700;
  font-size: 0.9875rem;
  color: var(--ink-soft);
}
.section.soft .partner-chip { background: #fff; }

/* Awards ----------------------------------------------------------------- */
.award-list { display: grid; text-align: left; }
.award-item {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 28px 8px;
  border-top: 1px solid var(--line);
}
.award-item:last-child { border-bottom: 1px solid var(--line); }
.award-item .a-year { font-family: var(--font-display); font-weight: 800; color: var(--ink); font-size: 1.0625rem; }
.award-item .a-name { font-weight: 700; font-size: 1.0625rem; }
.award-item .a-name small { display: block; font-weight: 500; font-size: 0.8438rem; color: var(--muted); margin-top: 3px; }
.award-item .a-tag { font-size: 0.8125rem; color: var(--faint); font-weight: 600; white-space: nowrap; }

/* Media cards ------------------------------------------------------------ */
.media-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.media-card {
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.section.soft .media-card { background: #fff; }
.media-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-float); }
.media-card .m-src { font-family: var(--font-display); font-size: 0.8438rem; font-weight: 700; color: var(--faint); }
.media-card h3 { font-size: 1.1875rem; line-height: 1.46; }
.media-card p { font-size: 0.9063rem; color: var(--muted); line-height: 1.68; flex: 1; font-weight: 500; }

/* Contact ---------------------------------------------------------------- */
.contact-types { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.form-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 56px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 8px 40px rgba(25, 31, 40, 0.06);
  text-align: left;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-field { display: flex; flex-direction: column; gap: 9px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.875rem; font-weight: 700; color: var(--ink-soft); }
.form-field label .req { color: var(--info); }
/* 인풋 — GRPM 브릭(TDS 계열) 이식: 보더 없는 그레이 필 필드 */
.form-field input,
.form-field select,
.form-field textarea {
  padding: 15px 16px;
  min-height: 52px;
  border: 0;
  border-radius: 14px;
  background: var(--fill);
  font-weight: 500;
  transition: background 0.15s ease;
  width: 100%;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--faint); opacity: 1; }
.form-field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 46px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%238b95a1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 20px;
  cursor: pointer;
}
.form-field textarea { min-height: 148px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  background-color: #e9edf1;
}
.form-agree {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9063rem;
  color: var(--ink-soft);
  grid-column: 1 / -1;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
}
/* 체크박스 — GRPM Checkbox 브릭(circle · medium)의 TDS 실측 아트워크 이식 */
.form-agree input {
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  margin: 0;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.12s ease;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23d1d6db' d='M12 3C17 3 21 7 21 12C21 17 17 21 12 21C7 21 3 17 3 12C3 7 7 3 12 3ZM12 1C5.9 1 1 5.9 1 12C1 18.1 5.9 23 12 23C18.1 23 23 18.1 23 12C23 5.9 18.1 1 12 1Z'/%3E%3Cpath fill='%23d1d6db' d='M17.2 10.2L11.6 15.8C11.4 16 11.2 16.1 10.9 16.1C10.6 16.1 10.4 16 10.2 15.8L6.8 12.4C6.4 12 6.4 11.4 6.8 11C7.2 10.6 7.8 10.6 8.2 11L10.9 13.7L15.8 8.8C16.2 8.4 16.8 8.4 17.2 8.8C17.6 9.2 17.6 9.8 17.2 10.2Z'/%3E%3C/svg%3E");
}
.form-agree input:checked {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M12 24C18.6274 24 24 18.6274 24 12C24 5.37258 18.6274 0 12 0C5.37258 0 0 5.37258 0 12C0 18.6274 5.37258 24 12 24Z'/%3E%3Cpath fill='%23191f28' fill-rule='evenodd' clip-rule='evenodd' d='M12 0C5.37 0 0 5.37 0 12C0 18.63 5.37 24 12 24C18.63 24 24 18.63 24 12C24 5.37 18.63 0 12 0ZM17.68 10.05L11.59 16.14C11.39 16.34 11.11 16.46 10.82 16.46C10.53 16.46 10.25 16.34 10.05 16.14L6.32 12.41C5.89 11.98 5.89 11.29 6.32 10.87C6.75 10.44 7.44 10.44 7.86 10.87L10.82 13.83L16.14 8.51C16.57 8.08 17.26 8.08 17.68 8.51C18.11 8.94 18.11 9.63 17.68 10.05Z'/%3E%3C/svg%3E");
}
.form-agree input:active { transform: scale(0.92); }
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}
.form-error {
  display: none;
  margin-top: 14px;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #d64545;
  text-align: center;
}
.form-error.show { display: block; }
.form-done { display: none; text-align: center; padding: 48px 0; }
.form-done.show { display: block; }
.form-done .done-ic {
  width: 68px; height: 68px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--fill);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

/* Pending block ----------------------------------------------------------- */
.pending {
  padding: 34px 38px;
  border-radius: var(--radius);
  background: var(--fill);
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.72;
  font-weight: 500;
  text-align: left;
}
.pending b { color: var(--ink-soft); display: block; margin-bottom: 7px; font-size: 1rem; }

/* CTA band --------------------------------------------------------------- */
.cta-band { text-align: center; }
.cta-band .h2, .cta-band h2 { color: #fff; }
.cta-band .sec-sub { color: rgba(255, 255, 255, 0.66); margin-left: auto; margin-right: auto; max-width: 560px; }
.cta-band .hero-cta { justify-content: center; }
.cta-tags { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
.cta-tags span {
  padding: 9px 19px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.8438rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

/* Footer ----------------------------------------------------------------- */
.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 72px 0 44px;
  font-size: 0.9063rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
}
.footer-brand .logo { color: var(--ink); width: 122px; margin-bottom: 22px; }
.footer-brand p {
  font-size: 1.375rem;
  line-height: 1.5;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
  word-break: keep-all;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.7813rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 18px;
}
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-weight: 500; }
.footer-col a:hover { color: var(--ink); }
.footer-biz {
  padding-top: 36px;
  border-top: 1px solid var(--line);
  font-size: 0.8438rem;
  color: var(--faint);
  line-height: 2;
}
.footer-biz .sep { margin: 0 10px; opacity: 0.45; }
.footer-biz a { color: inherit; }
.footer-biz a:hover { color: var(--ink); }
.footer-policy {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 32px;
  font-size: 0.8438rem;
  color: var(--faint);
}
.footer-policy a { font-weight: 500; }
.footer-policy a.strong { font-weight: 700; color: var(--muted); }
.footer-policy a:hover { color: var(--ink); }
.footer-policy .copy { margin-left: auto; }

/* ==========================================================================
   DARK THEME — 페이지 단위 스코프 (예: technology.html <body class="theme-dark">)
   토큰만 뒤집고, 흰 배경이 하드코딩된 컴포넌트만 개별 오버라이드
   ========================================================================== */
body.theme-dark {
  --ink: #f2f4f8;
  --ink-soft: #c9ced8;
  --muted: #8f97a5;
  --faint: #667082;
  --line: rgba(255, 255, 255, 0.1);
  --fill: rgba(255, 255, 255, 0.06);
  --bg: #05070f;
  --bg-soft: #0a0d17;
  background: #05070f;
  color: var(--ink);
}
body.theme-dark ::selection { background: rgba(74, 222, 128, 0.25); color: #fff; }
body.theme-dark .site-header { background: rgba(5, 7, 15, 0.78); }
body.theme-dark .mobile-menu { background: #05070f; }
body.theme-dark .btn.primary { background: #fff; color: #0a0d17; }
body.theme-dark .btn.primary:hover { background: #e3e6ec; }
body.theme-dark .site-header .btn.primary.sm,
body.theme-dark .mobile-menu .btn.primary.sm { background: var(--fill); color: var(--ink); }
body.theme-dark .section.soft .card,
body.theme-dark .section.soft .flow-step,
body.theme-dark .section.soft .pipe-node,
body.theme-dark .section.soft .picto,
body.theme-dark .section.soft .story-card,
body.theme-dark .section.soft .geo-card,
body.theme-dark .section.soft .partner-chip,
body.theme-dark .section.soft .media-card { background: rgba(255, 255, 255, 0.05); }
body.theme-dark .card .card-icon { background: rgba(255, 255, 255, 0.07); box-shadow: none; color: var(--ink); }
body.theme-dark .arrow-circle { background: rgba(255, 255, 255, 0.1); color: var(--ink); box-shadow: none; }
body.theme-dark .stat::before { background: linear-gradient(90deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.18) 55%, rgba(255, 255, 255, 0) 100%); }
body.theme-dark .mockup { background: #0d1119; border-color: rgba(255, 255, 255, 0.08); box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5); }
body.theme-dark .mockup-bar .mockup-url { background: rgba(255, 255, 255, 0.07); }
body.theme-dark .console { background: #0d1119; border-color: rgba(255, 255, 255, 0.08); box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5); }
body.theme-dark .cs-item.on { background: rgba(255, 255, 255, 0.1); box-shadow: none; }
body.theme-dark .gc-row,
body.theme-dark .console .gc-row { background: rgba(255, 255, 255, 0.05); box-shadow: none; color: var(--ink-soft); }
body.theme-dark .mock-kpi { background: rgba(255, 255, 255, 0.05); }
body.theme-dark .console .mock-kpi,
body.theme-dark .mock-cand.top { background: rgba(30, 140, 72, 0.16); }
body.theme-dark .mock-cand { background: rgba(255, 255, 255, 0.05); }
body.theme-dark .mock-cand .avatar { background: rgba(30, 140, 72, 0.25); color: #7ee2a8; }
body.theme-dark .mock-kpi b,
body.theme-dark .mock-cand .score,
body.theme-dark .mock-bar-row em,
body.theme-dark .gc-row em { color: #4ade80; }
body.theme-dark .mock-fill { background: #22c55e; }
body.theme-dark .mock-track { background: rgba(255, 255, 255, 0.1); }
body.theme-dark .gc-row .dot { background: #22c55e; }
body.theme-dark .accent { color: #4ade80; }
body.theme-dark .dw-meta b { color: #4ade80; }

/* 어워드 리스트 포커스 — 중앙 항목 강조 (타임라인과 동일 문법) */
.award-list.dim .award-item { opacity: 0.3; transition: opacity 0.35s ease; }
.award-list.dim .award-item.now { opacity: 1; }

/* Active PoC 배지 핑 */
.badge.poc::after {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--info);
  animation: badge-ping 1.8s ease-out infinite;
}
@keyframes badge-ping {
  0% { box-shadow: 0 0 0 0 rgba(27, 100, 218, 0.4); }
  70% { box-shadow: 0 0 0 6px rgba(27, 100, 218, 0); }
  100% { box-shadow: 0 0 0 0 rgba(27, 100, 218, 0); }
}

/* ==========================================================================
   PHONE 목업 — 토스 서비스 소개 페이지 문법 (Jobility)
   ========================================================================== */
.feat-no {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 12px;
  background: var(--fill);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.section.soft .feat-no { background: #fff; }

/* 프레임 없는 비주얼 패널 — 회색 라운드 + 떠 있는 미니멀 카드 (토스 문법) */
.viz-panel {
  background: var(--fill);
  border-radius: 24px;
  padding: clamp(48px, 7vw, 92px) clamp(28px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.viz-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 70px -18px rgba(25, 31, 40, 0.2);
  padding: 24px 28px;
  width: min(320px, 100%);
  display: grid;
  gap: 12px;
}
.viz-label { font-size: 0.8125rem; color: var(--muted); font-weight: 700; }
.viz-num {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.6vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.1;
}
.viz-num.jg { color: var(--jg-600); }
.viz-sub { font-size: 0.8438rem; color: var(--faint); font-weight: 500; line-height: 1.55; }
.viz-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 0.8438rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.viz-row em { font-style: normal; font-family: var(--font-display); font-weight: 800; color: var(--jg-600); }
.viz-icons { display: flex; gap: 8px; }
.viz-icons .p-ic { width: 36px; height: 36px; border-radius: 10px; background: var(--fill); color: var(--ink-soft); display: flex; align-items: center; justify-content: center; }
.viz-icons .p-ic svg { width: 18px; height: 18px; }
.phone-wrap { position: relative; width: min(300px, 76vw); margin: 0 auto; }
.phone {
  width: 100%;
  aspect-ratio: 9 / 18.6;
  border-radius: 56px;
  padding: 7px;
  /* 티타늄 프레임 — 밴딩 그라데이션 + 베벨 + 하드 오프셋으로 측면 두께 */
  background: linear-gradient(140deg, #f4f5f7 0%, #c2c7d0 20%, #eef0f3 42%, #a6adb9 60%, #d9dce2 80%, #8f96a2 100%);
  box-shadow:
    inset 2.5px 2.5px 4px rgba(255, 255, 255, 0.85),
    inset -2.5px -2.5px 5px rgba(88, 96, 110, 0.6),
    0 60px 110px -34px rgba(25, 31, 40, 0.35),
    0 22px 44px -22px rgba(25, 31, 40, 0.2);
  position: relative;
  margin: 0 auto;
}
.phone::before {
  /* 전원 버튼 (우측) */
  content: "";
  position: absolute;
  right: -3px; top: 30%;
  width: 3.5px; height: 56px;
  border-radius: 2px;
  background: linear-gradient(90deg, #cdd1d8, #8f96a2);
}
.phone::after {
  /* 볼륨 버튼 (좌측) */
  content: "";
  position: absolute;
  left: -3px; top: 20%;
  width: 3.5px; height: 30px;
  border-radius: 2px;
  background: linear-gradient(90deg, #8f96a2, #cdd1d8);
  box-shadow: 0 42px 0 0 #a6adb9;
}
.phone-screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 49px;
  border: 4px solid #0b0d12;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.ps-head {
  padding: 30px 16px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9375rem;
  background: #fff;
  color: #191f28;
}
.ps-head::before { content: ""; width: 18px; height: 18px; border-radius: 6px; background: var(--jg-500); }
.ps-body {
  flex: 1;
  padding: 10px 13px 16px;
  display: grid;
  gap: 9px;
  align-content: start;
  background: #f7f8fa;
  overflow: hidden;
}
.ps-tab {
  display: flex;
  justify-content: space-around;
  padding: 10px 6px 16px;
  border-top: 1px solid #e5e8eb;
  background: #fff;
  font-size: 0.625rem;
  font-weight: 600;
  color: #8b95a1;
}
.ps-tab .on { color: var(--jg-600); font-weight: 700; }
.ps-banner {
  border-radius: 12px;
  background: linear-gradient(135deg, var(--jg-500), #157a3e);
  color: #fff;
  padding: 16px 14px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8438rem;
  line-height: 1.45;
}
.ps-banner small { display: block; font-family: var(--font); font-weight: 600; opacity: 0.82; font-size: 0.6875rem; margin-top: 3px; }
.ps-label { font-size: 0.6875rem; font-weight: 700; color: #6b7684; padding: 4px 2px 0; }
/* 폰 내부 컴팩트 스케일 — 라이트 고정(제품 UI), 소프트 섀도 카드 */
.phone .gc-row, .phone .mock-kpi, .phone .mock-cand, .phone .picto {
  box-shadow: 0 8px 22px rgba(25, 31, 40, 0.08);
}
.phone .mock-cand { padding: 10px 12px; gap: 10px; border-radius: 12px; background: #fff; }
.phone .mock-cand.top { background: #f2fbf5; }
.phone .mock-cand .avatar { width: 30px; height: 30px; font-size: 0.75rem; background: var(--jg-100); color: var(--jg-700); }
.phone .mock-cand .cand-info b { font-size: 0.8125rem; color: #191f28; }
.phone .mock-cand .cand-info span { font-size: 0.6563rem; color: #6b7684; }
.phone .mock-cand .score { font-size: 0.875rem; color: var(--jg-600); }
.phone .gc-row { padding: 10px 12px; font-size: 0.7188rem; border-radius: 10px; background: #fff; box-shadow: none; color: #333d4b; }
.phone .gc-row em { color: var(--jg-600); }
.phone .gc-row .dot { background: var(--jg-500); }
.phone .mock-kpi { padding: 13px 15px; border-radius: 13px; background: #fff; }
.phone .mock-kpi b { font-size: 1.25rem; color: var(--jg-600); }
.phone .mock-kpi span { font-size: 0.6563rem; color: #6b7684; }
.phone .mock-bars { gap: 9px; }
.phone .mock-bar-row { grid-template-columns: 74px 1fr 34px; gap: 8px; }
.phone .mock-bar-row span { font-size: 0.6563rem; color: #333d4b; }
.phone .mock-bar-row em { font-size: 0.6563rem; color: var(--jg-600); }
.phone .mock-track { height: 6px; background: #e5e8eb; }
.phone .mock-fill { background: var(--jg-500); }
.phone .picto-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
.phone .picto { padding: 9px 10px; font-size: 0.6875rem; gap: 8px; border-radius: 10px; background: #fff; color: #333d4b; }
.phone .picto .p-ic { width: 26px; height: 26px; border-radius: 8px; font-size: 0.8125rem; background: #f2f4f6; color: #333d4b; }
.phone .picto .p-ic svg { width: 14px; height: 14px; }
.phone .placeholder-img { min-height: 84px; border-radius: 14px; }
.phone .placeholder-img::before { font-size: 0.6563rem; }

/* 폰 밖으로 겹쳐 뜨는 디태치드 카드 (토스 문법) */
.ph-float {
  position: absolute;
  z-index: 6;
  background: #fff;
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: 0 24px 60px rgba(25, 31, 40, 0.2);
  min-width: 158px;
  animation: ph-bob 5.4s ease-in-out infinite;
}
.ph-float .pf-ic {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #f2f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  margin-bottom: 8px;
}
.ph-float b { display: block; font-size: 0.875rem; color: #191f28; letter-spacing: -0.01em; }
.ph-float span { font-size: 0.7188rem; color: #8b95a1; font-weight: 600; }
@keyframes ph-bob { 50% { transform: translateY(-8px); } }
@media (prefers-reduced-motion: reduce) { .ph-float { animation: none; } }
@media (max-width: 560px) {
  .ph-float { display: none; }
}

/* ==========================================================================
   토스 문법 액센트 — 무채색 베이스 위 적재적소의 그라데이션·파스텔·글래스
   ========================================================================== */
/* 앰비언트 워시: 섹션 하단/상단에서 차오르는 은은한 라디얼 */
.wash-bottom { position: relative; overflow: hidden; }
.wash-bottom::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -22%;
  transform: translateX(-50%);
  width: 150%; height: 75%;
  background: radial-gradient(52% 62% at 50% 100%, rgba(84, 130, 222, 0.13), rgba(84, 130, 222, 0) 70%);
  pointer-events: none;
}
.wash-top-lav { position: relative; overflow: hidden; }
.wash-top-lav::before {
  content: "";
  position: absolute;
  left: 50%; top: -24%;
  transform: translateX(-50%);
  width: 150%; height: 70%;
  background: radial-gradient(50% 60% at 50% 0%, rgba(150, 120, 220, 0.1), rgba(150, 120, 220, 0) 70%);
  pointer-events: none;
}

/* 그라데이션 텍스트 — 페이지당 한 곳, 키 워드에만 */
.grad-text {
  background: linear-gradient(98deg, var(--ink) 0%, #3565d8 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* 유리 질감 아이콘 칩 */
.card .card-icon,
.tc-ic,
.ph-float .pf-ic {
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1.5px 0 rgba(255, 255, 255, 0.95), 0 8px 24px rgba(25, 31, 40, 0.08);
}

/* viz 패널 — 기능별 파스텔 그라데이션 + 글래스 카드 */
.viz-panel.vp-blue { background: linear-gradient(165deg, #eef3fb 0%, #dbe6f7 100%); }
.viz-panel.vp-mint { background: linear-gradient(165deg, #ecf6f0 0%, #d8ecdf 100%); }
.viz-panel.vp-peach { background: linear-gradient(165deg, #fdf3ea 0%, #f6e3d1 100%); }
.viz-panel.vp-lav { background: linear-gradient(165deg, #f1effa 0%, #e1dcf3 100%); }
.viz-panel .viz-card {
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: inset 0 1.5px 0 rgba(255, 255, 255, 0.9), 0 24px 70px -18px rgba(25, 31, 40, 0.18);
}

/* Reveal ------------------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .ss-panel { transition: none; }
  .wm-hl::after { animation: none; }
  .badge.poc::after { animation: none; }
}

/* Responsive ------------------------------------------------------------- */
@media (max-width: 1024px) {
  .section { padding: 104px 0; }
  .stats, .cards.c4 { grid-template-columns: repeat(2, 1fr); gap: 32px 32px; }
  .flow { grid-template-columns: repeat(2, 1fr); }
  .flow-step:nth-child(2)::after { display: none; }
  .split { gap: 52px; }
  .geo-grid { grid-template-columns: repeat(2, 1fr); }
  .glass-cards { grid-template-columns: 1fr; }
  .glass-card { min-height: 0; }
  .ss-grid { gap: 48px; }
}
@media (max-width: 860px) {
  .gnb, .header-right .lang, .header-right .btn { display: none; }
  .hamburger { display: flex; }
  .split, .split.rev { grid-template-columns: 1fr; }
  .split.rev > :first-child { order: 1; }
  .split.rev > :last-child { order: 2; }
  .story-cols, .cards.c3, .cards.c2, .media-grid, .contact-types { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .mock-kpis { grid-template-columns: repeat(2, 1fr); }
  .picto-grid { grid-template-columns: repeat(2, 1fr); }
  .tl-item { grid-template-columns: 1fr; gap: 14px; padding: 30px 0; }
  .people-grid { grid-template-columns: 1fr; gap: 28px; }
  .people-cards { grid-template-columns: 1fr; }
  .dw-foot { grid-template-columns: 1fr; gap: 40px; padding: 64px 0 96px; }
  .dw-stage { height: 44vh; }
  .dw-meta { justify-content: center; }
  .award-item { grid-template-columns: 64px 1fr; }
  .award-item .a-tag { display: none; }
  .form-wrap { padding: 40px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .htl { grid-template-columns: repeat(2, 1fr); gap: 34px 0; }
  .htl::before { display: none; }
  /* sticky story → 세로 스택 */
  .ss-grid { grid-template-columns: 1fr; }
  .ss-visual { position: relative; top: 0; height: auto; max-height: none; margin-bottom: 12px; }
  .ss-step { padding: 9vh 0; opacity: 1; }
  .hp-copy { padding: 0 28px 36px; }
  .hero-photo .hp-media { min-height: 74svh; }
  .watermark-sec { padding: 110px 0; background: #fff; }
}
@media (max-width: 700px) {
  .hp-tag { display: none; }
}
@media (max-width: 560px) {
  .section { padding: 80px 0; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .flow { grid-template-columns: 1fr; }
  .flow-step::after { display: none; }
  .geo-grid { grid-template-columns: 1fr; }
  .hero-cta .btn, .hero-photo .hp-cta .btn { width: 100%; }
  .picto-grid { grid-template-columns: 1fr; }
  .hero-photo { padding: 10px 10px 0; }
  .dw-cols { grid-template-columns: 1fr; gap: 24px; }
  .hp-tag, .dummy-label { top: 18px; }
  .hp-tag { left: 20px; }
  .dummy-label { right: 20px; }
}

/* 크롭 폰 목업 — 상단부만 보이는 대형 폰, 화이트 앱 화면 + 알림 토스트 (토스 교통 문법) */
.phone-stage { position: relative; height: 520px; margin-top: 64px; overflow: hidden; }
.phone-crop {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(480px, 88vw);
  height: 640px;
  border-radius: 62px 62px 0 0;
  padding: 17px 17px 0;
  background: linear-gradient(150deg, #5c5f67 0%, #33353c 34%, #23242a 62%, #4a4d55 100%);
  box-shadow: 0 42px 90px rgba(25, 31, 40, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.35);
}
.phone-crop::before,
.phone-crop::after {
  content: "";
  position: absolute;
  left: -2.5px;
  width: 2.5px;
  border-radius: 2px 0 0 2px;
  background: linear-gradient(90deg, #202127, #55585f);
}
.phone-crop::before { top: 158px; height: 54px; }
.phone-crop::after { top: 228px; height: 94px; }
.pc-screen {
  position: relative;
  height: 100%;
  border-radius: 46px 46px 0 0;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
}
/* 크롭 폰 내부 — 기존 폰 UI 조각 스케일업 */
.pc-screen .ps-head { padding: 38px 26px 16px; }
.pc-screen .ps-head img { height: 42px; }
.pc-screen .ps-body { padding: 8px 12px 20px; gap: 2px; background: #fff; }
.pc-screen .ps-banner {
  font-size: 1.0313rem;
  padding: 24px 22px;
  border-radius: 18px;
  background: linear-gradient(160deg, #2eb266 0%, #23a057 100%);
}
.pc-screen .ps-banner small { font-size: 0.8125rem; }
.pc-screen .ps-label { font-size: 0.8125rem; padding: 8px 4px 0; }
.pc-screen .gc-row { padding: 16px 18px; border-radius: 14px; font-size: 0.9375rem; }
/* iOS 푸시 스타일 알림 토스트 */
.pc-toast {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 74px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 13px;
  border-radius: 18px;
  padding: 15px 20px;
  background: rgba(23, 24, 28, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  box-shadow: 0 14px 34px rgba(25, 31, 40, 0.3);
  opacity: 0;
  transform: translateY(-14px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.pc-toast .tico {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--jg-500);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pc-toast .tico svg { width: 21px; height: 21px; display: block; }
.pc-toast b { display: block; font-size: 0.9063rem; font-weight: 700; }
.pc-toast span { display: block; font-size: 0.7813rem; font-weight: 500; color: rgba(255, 255, 255, 0.6); margin-top: 2px; }
.pc-toast.show { opacity: 1; transform: none; }
@media (max-width: 640px) {
  .phone-stage { height: 400px; margin-top: 44px; }
  .phone-crop { height: 500px; width: min(370px, 92vw); border-radius: 48px 48px 0 0; padding: 13px 13px 0; }
  .pc-screen { border-radius: 36px 36px 0 0; }
  .pc-toast { top: 60px; left: 16px; right: 16px; }
}

/* GRPM 브릭 레시피 — 목업 내부 리스트 문법 (list-header / list-row / badge / squircle icon) */
.gl-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 16px 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #8b95a1;
}
.gl-header span { font-size: 0.7813rem; font-weight: 500; color: #b0b8c1; }
.gl-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 16px;
  background: #fff;
}
.gl-ic {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.gl-ic svg { width: 22px; height: 22px; display: block; }
.gl-ic.green { background: var(--jg-50); color: var(--jg-600); }
.gl-ic.blue { background: #eef4fe; color: #4468b8; }
.gl-ic.lav { background: #f2effd; color: #7461b5; }
.gl-ic.peach { background: #fff2ea; color: #b9643a; }
.gl-text { flex: 1; min-width: 0; text-align: left; }
.gl-text b { display: block; font-size: 0.9375rem; font-weight: 600; color: #191f28; letter-spacing: -0.01em; }
.gl-text small { display: block; font-size: 0.8125rem; color: #8b95a1; margin-top: 2px; }
.gl-badge {
  flex-shrink: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--jg-600);
  background: var(--jg-50);
  border-radius: 8px;
  padding: 4px 9px;
}
.gl-badge.new { color: #4468b8; background: #eef4fe; }
.gl-arrow { flex-shrink: 0; color: #d1d6db; font-size: 1.375rem; font-weight: 500; line-height: 1; }

/* 콘솔 패널 — 활성화 시 행 스태거 + 바 채움 (실사용 느낌) */
@media (prefers-reduced-motion: no-preference) {
  .ss-panel .console-pane > * {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.45s ease, transform 0.45s ease;
  }
  .ss-panel.on .console-pane > * { opacity: 1; transform: none; }
  .ss-panel.on .console-pane > *:nth-child(1) { transition-delay: 0.08s; }
  .ss-panel.on .console-pane > *:nth-child(2) { transition-delay: 0.18s; }
  .ss-panel.on .console-pane > *:nth-child(3) { transition-delay: 0.28s; }
  .ss-panel.on .console-pane > *:nth-child(4) { transition-delay: 0.38s; }
  .console .mock-fill { transition: width 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.45s; }
  .ss-panel:not(.on) .mock-fill { width: 0 !important; }
}

/* 크롭 폰 — 홈 ↔ 추천 결과 화면 전환 (iOS 푸시 문법) */
.pc-view {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.pc-view.v-match { transform: translateX(102%); box-shadow: -18px 0 40px rgba(25, 31, 40, 0.14); }
.pc-screen.show-match .pc-view.v-home { transform: translateX(-26%); }
.pc-screen.show-match .pc-view.v-match { transform: none; }
.pc-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 38px 24px 14px;
  background: #fff;
  font-weight: 700;
  font-size: 1.0313rem;
  color: #191f28;
  text-align: left;
}
.pc-nav svg { width: 20px; height: 20px; color: #8b95a1; flex-shrink: 0; }
.pc-view.v-match .ps-body { background: #f7f8fa; gap: 10px; padding: 14px 18px 20px; }
.pc-view.v-match .mock-cand { background: #fff; }
.pc-view.v-match .mock-cand.top { background: var(--jg-50); }
@media (prefers-reduced-motion: no-preference) {
  .pc-view.v-match .mock-fill { transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.55s; }
  .pc-screen:not(.show-match) .pc-view.v-match .mock-fill { width: 0 !important; }
}

/* 히어로 사이드 카드 — 빈 공간을 3D 어셋으로 채움 (레코드 카드 문법) */

/* 토스식 타이틀 등장 — 단어별 마스크 라이즈 + 블러 디졸브("모래 뿌려지듯"), reveal .in 에 동기 */
.reveal.tsplit { opacity: 1; transform: none; transition: none; }
/* 마스크 박스를 글리프 잉크·블러 번짐보다 넓게 — 패딩으로 확장, 마진으로 레이아웃 상쇄 (잘림 방지) */
.tw {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding: 0.12em 0.14em 0.2em;
  margin: -0.12em -0.14em -0.2em;
}
.tw-i {
  display: inline-block;
  transform: translateY(130%);
  opacity: 0;
  filter: blur(7px);
  transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease, filter 0.6s ease;
  will-change: transform, filter;
}
.tsplit.in .tw-i { transform: none; opacity: 1; filter: blur(0); }

/* 다크 CTA 밴드 — 이미지 배경 변형 (다크 스크림으로 가독성 유지) */
.cta-band.cta-img {
  position: relative;
  background: url(../img/cta-global.jpg) center / cover no-repeat;
  overflow: hidden;
}
.cta-band.cta-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 18, 22, 0.9) 0%, rgba(16, 18, 22, 0.82) 100%);
}
.cta-band.cta-img .container { position: relative; z-index: 1; }

/* 스티키 스토리 모바일 — 스텝 위 인라인 카드 (클론은 main.js가 생성) */
.ss-inline { display: none; }
@media (max-width: 860px) {
  .ss-inline { display: block; margin: 0 0 22px; }
  .ss-inline > .console-pane {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px;
  }
  .ss-grid.has-inline .ss-visual { display: none; }
  .ss-grid.has-inline .ss-step { padding: 0 0 8vh; }
  .ss-grid.has-inline .ss-steps { padding: 0; }
}

/* 크롭 폰 — 레퍼런스급 레시피 (그라데이션 히어로 스탯·칩·프로그레스·인사이트 콜아웃) */
.pc-hero {
  border-radius: 20px;
  padding: 22px 24px 24px;
  background: linear-gradient(160deg, #2eb266 0%, #1f9c53 100%);
  color: #fff;
  text-align: left;
}
.pc-hero .ph-label { font-size: 0.8125rem; font-weight: 600; color: rgba(255, 255, 255, 0.78); }
.pc-hero .ph-num { font-family: var(--font-display); font-size: 2.375rem; font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; margin-top: 4px; }
.pc-hero .ph-num small { font-size: 1.125rem; font-weight: 700; margin-left: 3px; }
.pc-hero .ph-sub { font-size: 0.8438rem; font-weight: 500; color: rgba(255, 255, 255, 0.82); margin-top: 5px; }
.pc-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 13px;
  padding: 6px 11px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.17);
  font-size: 0.75rem;
  font-weight: 700;
}
.pc-prog { margin-top: 15px; }
.pc-prog .pr-row { display: flex; justify-content: space-between; font-size: 0.75rem; font-weight: 600; color: rgba(255, 255, 255, 0.8); margin-bottom: 7px; }
.pc-prog .pr-track { height: 6px; border-radius: 99px; background: rgba(255, 255, 255, 0.24); overflow: hidden; }
.pc-prog .pr-track i { display: block; height: 100%; width: 92%; border-radius: 99px; background: #fff; }
.pc-callout {
  border-radius: 14px;
  background: #eef4fe;
  padding: 14px 17px;
  font-size: 0.8125rem;
  line-height: 1.62;
  font-weight: 500;
  color: #4e5968;
  text-align: left;
}
.pc-callout b { color: #3268c7; font-weight: 700; }
@media (prefers-reduced-motion: no-preference) {
  .pc-view.v-match .pc-prog .pr-track i { transition: width 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.5s; }
  .pc-screen:not(.show-match) .pc-view.v-match .pc-prog .pr-track i { width: 0 !important; }
}

/* 스탯 타일 — 컬러 빅넘버 2분할 (무디 리포트 퀘스트 타일 문법) */
.pc-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pc-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  text-align: center;
}
.pc-tile .tl { display: block; font-size: 0.75rem; font-weight: 600; color: #8b95a1; }
.pc-tile b { display: block; margin-top: 4px; font-family: var(--font-display); font-size: 1.375rem; font-weight: 800; letter-spacing: -0.01em; }
.pc-tile b.t-green { color: var(--jg-600); }
.pc-tile b.t-blue { color: #3268c7; }

/* 콘솔 하프 도넛 게이지 (무디 리포트 게이지 문법) — conic + radial mask 도넛 */
.cs-gauge-card, .cs-heat-card {
  background: var(--bg-soft);
  border-radius: 12px;
  padding: 16px 18px;
  text-align: center;
}
.cs-gauge { position: relative; width: 150px; height: 78px; margin: 2px auto 0; overflow: hidden; }
.cs-gauge::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: conic-gradient(from 270deg, var(--jg-500) 0deg 165.6deg, rgba(139, 149, 161, 0.22) 165.6deg 180deg, transparent 180deg 360deg);
  -webkit-mask: radial-gradient(closest-side, transparent 61%, #000 62%);
  mask: radial-gradient(closest-side, transparent 61%, #000 62%);
}
.cs-gauge .g-num {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.cs-gauge .g-num small { font-size: 0.875rem; font-weight: 700; margin-left: 1px; }
.g-cap { margin-top: 8px; font-size: 0.7188rem; font-weight: 600; color: var(--faint); }
/* 콘솔 히트맵 — 요일×시간 그리드 (무디 리포트 히트맵 문법) */
.cs-heat-card { text-align: left; }
.hm-title { font-size: 0.7813rem; font-weight: 700; color: var(--muted); margin-bottom: 10px; display: flex; justify-content: space-between; }
.hm-title span { font-weight: 600; color: var(--faint); }
.cs-heat { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cs-heat i { display: block; aspect-ratio: 1; border-radius: 4px; background: rgba(139, 149, 161, 0.14); }
.cs-heat i.l1 { background: var(--jg-100); }
.cs-heat i.l2 { background: #7fd0a2; }
.cs-heat i.l3 { background: var(--jg-500); }
.hm-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-top: 6px; }
.hm-days span { font-size: 0.625rem; font-weight: 600; color: var(--faint); text-align: center; }
body.theme-dark .cs-gauge-card, body.theme-dark .cs-heat-card { background: rgba(255, 255, 255, 0.05); }
body.theme-dark .cs-heat i { background: rgba(255, 255, 255, 0.08); }
body.theme-dark .cs-heat i.l1 { background: rgba(38, 165, 87, 0.32); }
body.theme-dark .cs-heat i.l2 { background: rgba(38, 165, 87, 0.6); }

/* 랭킹 고스트 넘버 리스트 (무디 "자주 기록한 감정" 문법) */
.rank-list { display: grid; margin-top: 8px; }
.rank-row { display: flex; align-items: center; gap: 14px; padding: 11px 4px; }
.rank-row + .rank-row { border-top: 1px solid var(--line); }
.rk-no { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: #dfe3e8; width: 30px; text-align: center; line-height: 1; flex-shrink: 0; }
.rk-info { flex: 1; min-width: 0; }
.rk-info b { display: block; font-size: 0.9375rem; font-weight: 700; color: var(--ink); }
.rk-tags { display: flex; gap: 5px; margin-top: 6px; flex-wrap: wrap; }
.rk-tags i { font-style: normal; font-size: 0.6875rem; font-weight: 600; color: var(--muted); background: var(--fill); border-radius: 6px; padding: 3px 8px; }
.rk-score { font-style: normal; font-family: var(--font-display); font-weight: 800; font-size: 0.9375rem; color: var(--jg-600); flex-shrink: 0; }
/* 트리맵 — 데이터 구성 면적 표현 (무디 키워드 트리맵 문법) */
.treemap-card {
  margin-top: 44px;
  border-radius: 20px;
  padding: 24px 26px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
}
.tm-head { display: flex; justify-content: space-between; align-items: baseline; font-size: 0.8438rem; font-weight: 700; color: var(--muted); margin-bottom: 14px; }
.tm-head span { font-size: 0.75rem; font-weight: 600; color: var(--faint); }
.treemap { display: grid; grid-template-columns: 1.5fr 1fr 0.8fr; grid-template-rows: 96px 70px; gap: 6px; }
.tm-b { border-radius: 10px; padding: 10px 13px; font-size: 0.75rem; font-weight: 700; color: #fff; }
.tm-b.b1 { grid-row: 1 / 3; background: var(--jg-500); font-size: 0.9063rem; }
.tm-b.b2 { background: #3fae6c; font-size: 0.8438rem; }
.tm-b.b3 { background: #7fcb9e; }
.tm-b.b4 { background: #b6e2c8; color: var(--ink-soft); }
.tm-b.b5 { background: var(--fill); color: var(--muted); }
.tm-cap { margin-top: 12px; font-size: 0.7188rem; font-weight: 500; color: var(--faint); }
body.theme-dark .rk-no { color: rgba(255, 255, 255, 0.16); }
body.theme-dark .rk-tags i { background: rgba(255, 255, 255, 0.08); }
body.theme-dark .rank-row + .rank-row { border-top-color: rgba(255, 255, 255, 0.08); }
body.theme-dark .tm-b.b2 { background: rgba(38, 165, 87, 0.72); }
body.theme-dark .tm-b.b3 { background: rgba(38, 165, 87, 0.48); }
body.theme-dark .tm-b.b4 { background: rgba(38, 165, 87, 0.28); color: rgba(255, 255, 255, 0.85); }
body.theme-dark .tm-b.b5 { background: rgba(255, 255, 255, 0.08); color: var(--muted); }
/* 폰 홈 — 화이트 스탯 스트립 (헤어라인 3분할, 토스 문법) */
.ph-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 0 15px;
}
.ph-strip > div { text-align: center; }
.ph-strip > div + div { border-left: 1px solid var(--line); }
.ph-strip span { display: block; font-size: 0.6875rem; font-weight: 600; color: #8b95a1; }
.ph-strip b { display: block; margin-top: 4px; font-family: var(--font-display); font-size: 1.125rem; font-weight: 800; letter-spacing: -0.01em; color: #191f28; }
.ph-strip b.pt-green { color: var(--jg-600); }

/* c4 카드 반응형 보강 — 태블릿 2열, 모바일 1열 (긴 영문 h3 min-content 오버플로 방지) */
.cards > .card { min-width: 0; }
@media (max-width: 860px) {
  .cards.c4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .cards.c4 { grid-template-columns: 1fr; }
}

/* 스티키 스토리 배경 구조선 — 쉬머 헤어라인 그리드 + 활성 스텝 세로 액센트 (토스 문법) */
.sticky-story { position: relative; }
.sticky-story::before {
  content: "";
  position: absolute;
  top: 4%;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(var(--container) - 48px), calc(100% - 48px));
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), var(--line) 14%, var(--line) 86%, rgba(0, 0, 0, 0)) left top / 1px 100% no-repeat,
    linear-gradient(180deg, rgba(0, 0, 0, 0), var(--line) 14%, var(--line) 86%, rgba(0, 0, 0, 0)) right top / 1px 100% no-repeat;
}
.sticky-story .container { position: relative; }
/* 타이틀 아래 가로 쉬머 라인 — 풀블리드, 세로선과 교차 */
.sticky-story .sec-head { position: relative; padding-bottom: 52px; }
.sticky-story .sec-head::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100vw;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), var(--line) 15%, var(--line) 85%, rgba(0, 0, 0, 0));
}
@media (max-width: 860px) {
  .sticky-story .sec-head { padding-bottom: 0; }
  .sticky-story .sec-head::after { display: none; }
}
.ss-steps { position: relative; padding-left: 40px; }
.ss-steps::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), var(--line) 12%, var(--line) 88%, rgba(0, 0, 0, 0));
}
.ss-step { position: relative; }
.ss-step::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 64px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--ink) 0%, rgba(25, 31, 40, 0.35) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.ss-step.active::before { opacity: 1; }
body.theme-dark .ss-step::before { background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.3) 100%); }
@media (max-width: 860px) {
  .sticky-story::before, .ss-steps::before { display: none; }
  .ss-steps { padding-left: 0; }
  .ss-step::before { display: none; }
}
