/* ==========================================================================
   Portfolio Deck 2026 — 이은빈
   deck-2021 구조 오마주: 타원 배지 + 페이지 넘버 프레임은 고정,
   프로젝트마다 컬러 세계가 바뀐다.
   고정 캔버스 1440×810(16:9)을 창 크기에 맞춰 통째로 스케일 — 비율 항상 유지.
   ========================================================================== */

/* 픽셀 폰트 (Supernova 섹션 전용) */
@font-face {
  font-family: "DungGeunMo";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-04@2.1/DungGeunMo.woff") format("woff");
  font-weight: normal;
  font-display: swap;
}

:root {
  --paper: #eceae5;
  --ink: #161616;
  --muted: #6f6c66;
  --line: #d6d3cc;

  /* project worlds */
  --px-bg: #0d0d1a;        /* supernova — launcher와 동일한 아케이드 팔레트 */
  --px-card: #1e1e36;
  --px-cab: #1a1a2e;
  --px-cab-top: #2a2a4a;
  --px-line: #3a3a5c;
  --px-gold: #ffd700;
  --px-pink: #e84070;
  --px-accent: #c87bdb;    /* purple */
  --px-accent-2: #87ceeb;  /* sky */
  --px-peri: #8b9ef0;

  --pc-bg: #f6e9d4;        /* centient papercraft cream */
  --pc-accent: #0e8f8a;
  --pc-deep: #0b5f5c;
  --pc-light: #fbf4e6;

  --fm-bg: #e3e8e5;        /* film — 앱 챕터와 분리되는 밝은 청록 회색 */
  --fm-accent: #8b634d;
  --fm-ink: #18211d;
  --fm-muted: #66716c;
  --fm-light: #eef1ef;

  --wb-bg: #ffffff;        /* creverse — 흰 배경 · 민트 포인트 */
  --wb-accent: #00b3b8;
  --wb-ink: #0f161f;
  --wb-muted: #767676;
  --wb-line: #e4e4e4;
  --wb-light: #ffffff;

  --ad-bg: #173f47;        /* odie mint railway */
  --ad-accent: #79b49d;
  --ad-light: #e4f2eb;

  --cz-bg: #f7a9b4;        /* 고양이 침대 분홍 */
  --cz-accent: #ab6e21;    /* 고양이 진한 주황 */
  --cz-deep: #7d5626;      /* 스프라이트 윤곽 갈색 */
  --cz-light: #fdf1ec;     /* 크림 */

  /* Supernova 앱 UI — Figma 260615 */
  --app-bg: #0f0f10;
  --app-surface: #1b1b1b;
  --app-surface-raised: #242426;
  --app-line: #343438;
  --app-lime: #e9ff3f;
  --app-text: #f7f7f2;
  --app-muted: #a4a5aa;

  /* 고정 캔버스 */
  --stage-w: 1440px;
  --stage-h: 810px;
  --content: 1180px;
  --gutter: 130px; /* (1440 - 1180) / 2 */
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  background: #dcd9d1; /* 레터박스 — 현재 페이지 테마 색으로 JS가 갱신 */
  transition: background .6s ease;
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.skip-link {
  position: fixed;
  left: 24px;
  top: -80px;
  z-index: 300;
  padding: 12px 18px;
  background: var(--ink);
  color: #fff;
  border-radius: 10px;
}
.skip-link:focus { top: 16px; }

/* ==========================================================================
   Stage — 고정 비율 캔버스
   ========================================================================== */
.deck {
  position: fixed;
  left: 50%;
  top: 50%;
  width: var(--stage-w);
  height: var(--stage-h);
  transform: translate(-50%, -50%) scale(var(--s, 1));
  transform-origin: center;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 10px 60px rgba(0, 0, 0, .22);
}
.slide {
  position: absolute;
  inset: 0;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  transform: translateY(100%);
  transition: transform .6s cubic-bezier(.7, 0, .3, 1);
  visibility: hidden;
  transition-property: transform, visibility;
}
.slide.is-current { transform: none; visibility: visible; }
.slide.is-above { transform: translateY(-100%); }
.slide.is-current,
.slide.is-above,
.slide.is-below-next { visibility: visible; }
.deck.no-anim .slide { transition: none; }

/* 공통 프레임: 타원 배지 + 페이지 넘버 */
.oval {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 46px;
  padding: 0 12px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .01em;
  white-space: nowrap;
  background: transparent;
  color: var(--ink);
}
.oval-light { border-color: #fff; color: #fff; }
.slide-badge {
  position: absolute;
  top: 48px;
  left: var(--gutter);
  z-index: 5;
}
.pageno {
  position: absolute;
  right: var(--gutter);
  bottom: 34px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
}
.pageno-light { color: rgba(255, 255, 255, .6); }

/* ==========================================================================
   HUD — 눈금 레일 (뷰포트 기준, 스케일과 무관)
   ========================================================================== */
.deck-hud {
  position: fixed;
  right: 26px;
  top: 50%;
  z-index: 100;
  transform: translateY(-50%);
}
.rail {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}
.tick {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 36px;
  height: 9px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.tick.project-start { margin-top: 5px; }
.tick i {
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: rgba(20, 20, 20, .22);
  transition: width .18s ease, background .2s ease;
}
.tick:hover i { background: rgba(20, 20, 20, .6); }
.tick.active i { height: 2.5px; background: var(--ink); }
.rail-light .tick i { background: rgba(255, 255, 255, .3); }
.rail-light .tick:hover i { background: rgba(255, 255, 255, .65); }
.rail-light .tick.active i { background: #fff; }

/* 호버 미리보기 카드 */
.rail-preview {
  position: fixed;
  right: 72px;
  top: 0;
  z-index: 99;
  width: max-content;
  max-width: 320px;
  padding: 14px 18px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 8px rgba(15, 15, 30, .08), 0 14px 40px rgba(15, 15, 30, .18);
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .16s ease, transform .16s ease;
  pointer-events: none;
}
.rail-preview.show { opacity: 1; transform: none; }
.rail-preview .pv-group {
  display: block;
  padding-left: 27px;
  margin-bottom: 3px;
  color: #858795;
  font-size: .62rem;
  font-weight: 750;
  line-height: 1.25;
  letter-spacing: .045em;
  white-space: nowrap;
}
.rail-preview b {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  font-size: .88rem;
  font-weight: 800;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
}
.rail-preview .pv-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  font-style: normal;
  font-size: .66rem;
  font-weight: 800;
  flex: none;
}
.rail-preview p { padding-left: 27px; }
.rail-preview p {
  margin: 0;
  font-size: .78rem;
  line-height: 1.55;
  color: var(--muted);
}

/* ==========================================================================
   공통 컴포넌트
   ========================================================================== */
.lead { max-width: 560px; margin: 18px 0 0; color: #3f3d38; font-size: 1.02rem; line-height: 1.8; }
.lead-center { margin-inline: auto; text-align: center; max-width: 640px; }
.note {
  max-width: 720px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: .92rem;
  text-align: center;
}
.stack { width: 100%; text-align: center; }
.split {
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 86px;
  align-items: center;
}
.duo {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.stat-list { margin: 28px 0 0; padding: 0; list-style: none; }
.stat-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.stat-list li:last-child { border-bottom: 0; }
.stat-list span { color: var(--muted); font-size: .7rem; font-weight: 850; letter-spacing: .12em; align-self: center; }
.stat-list b { font-size: .95rem; font-weight: 700; }
.chip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.stat-center { max-width: 620px; margin: 30px auto 0; padding: 0; list-style: none; }
.stat-compact li { padding: 9px 0; }
.stat-compact b { font-size: .88rem; }

/* 트러블슈팅 */
.trouble { max-width: 880px; margin: 30px auto 0; text-align: left; }
.trouble-label {
  margin: 0 0 10px;
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.trouble-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.trouble-grid > div {
  padding: 14px 16px;
  background: rgba(255, 255, 255, .8);
  border: 1px solid rgba(0, 0, 0, .14);
  border-radius: 12px;
}
.t-pixel-light .trouble-grid > div { border-radius: 0; background: #262950; }
.trouble-grid span {
  display: block;
  margin-bottom: 6px;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .1em;
  color: var(--ink);
}
.trouble-grid p { margin: 0; font-size: .8rem; line-height: 1.6; }
.todo { color: #a9a49b; font-style: italic; }

.media-slot {
  display: grid;
  place-items: center;
  border: 1.5px dashed rgba(0, 0, 0, .3);
  color: rgba(0, 0, 0, .45);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
}

/* 리빌 */
.js .reveal { opacity: 0; transform: none; transition: opacity .35s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ==========================================================================
   T-PAPER — 표지 · Profile · Skills · Index · Thank you
   ========================================================================== */
.t-paper { background: var(--paper); }

.s-cover { justify-content: flex-end; padding-bottom: 110px; }
.cover-block { display: flex; flex-direction: column; align-items: flex-start; gap: 30px; }
.cover-title {
  margin: 0;
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: -.01em;
}
.cover-meta { margin: 0; color: var(--muted); font-size: .92rem; font-weight: 650; line-height: 1.8; }
.cover-meta a { text-decoration: underline; text-underline-offset: 4px; }

.col-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 58px;
  align-items: start;
  margin-top: 50px;
}
.index-row { grid-template-columns: repeat(6, 1fr); gap: 35px; }
.col { text-align: center; }
.col-num {
  margin: 0 0 16px;
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.col-num i { width: 26px; height: 2.5px; background: var(--ink); }
.col h3 { margin: 0 0 14px; font-size: 1.02rem; font-weight: 800; letter-spacing: 0; }
.col ul { margin: 0; padding: 0; list-style: none; color: #55524c; font-size: .86rem; line-height: 1.9; }
.col ul b { color: var(--ink); font-weight: 750; }
.col ul a { text-decoration: underline; text-underline-offset: 3px; }
.col-strong { margin: -6px 0 12px; font-size: .82rem; font-weight: 800; color: var(--muted); letter-spacing: .04em; }
.col-wide .col-para { margin: 0; color: #55524c; font-size: .9rem; line-height: 1.9; text-align: left; }

/* Index */
.index-item { transition: transform .25s ease; }
.index-item:hover { transform: translateY(-8px); }
.index-name { margin: 0 0 18px; color: #55524c; font-size: .84rem; line-height: 1.6; }
.index-mark { display: block; width: 54px; height: 54px; margin: 0 auto; }
.mark-supernova {
  background:
    conic-gradient(from 0deg at 50% 50%, transparent 0 25%, var(--px-accent) 25% 50%, transparent 50% 75%, var(--px-accent) 75%);
  background-size: 18px 18px;
  image-rendering: pixelated;
}
.mark-centient {
  background: var(--pc-accent);
  border-radius: 4px 18px 4px 18px;
  transform: rotate(-4deg);
  box-shadow: 4px 4px 0 rgba(11, 95, 92, .3);
}
.mark-film {
  background:
    repeating-linear-gradient(90deg, var(--fm-accent) 0 8px, transparent 8px 14px);
  border-block: 4px solid var(--fm-accent);
}
.mark-creverse { background: #ffb42e; border-radius: 50%; border: 3px solid #b36a00; }
.mark-odie {
  background: linear-gradient(160deg, var(--ad-accent) 0%, var(--ad-bg) 100%);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.mark-cat {
  position: relative;
  background: var(--cz-accent);
  border-radius: 50% 50% 46% 46%;
}
.mark-cat::before,
.mark-cat::after {
  content: "";
  position: absolute;
  top: -9px;
  width: 0; height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 14px solid var(--cz-accent);
}
.mark-cat::before { left: 5px; }
.mark-cat::after { right: 5px; }

/* ===========================================================================
   INTRO 2026 — Cover · Summary · Projects
   ========================================================================== */
.s-intro-cover,
.s-intro-summary,
.s-intro-index { background: #f0eee9; }

.intro-kicker,
.intro-section-no {
  color: #6f6c66;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .16em;
}

/* 01 · Cover */
.intro-cover {
  position: absolute;
  inset: 82px var(--gutter) 82px;
  display: flex;
  align-items: center;
}
.intro-cover-copy { width: min(100%, 880px); }
.intro-cover-copy h1 {
  margin: 22px 0 0;
  font-size: 6.8rem;
  line-height: .91;
  letter-spacing: -.065em;
}
.intro-cover-lead {
  margin: 34px 0 0;
  color: #4e4b46;
  font-size: 1.05rem;
  line-height: 1.75;
  font-weight: 650;
}
.intro-cover-meta {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-top: 48px;
  padding-top: 18px;
  width: 520px;
  border-top: 1px solid #c8c4bb;
}
.intro-cover-meta b { font-size: 1rem; }
.intro-cover-meta a { color: #6f6c66; font-size: .78rem; text-decoration: underline; text-underline-offset: 4px; }

/* 02 · Summary — 좌: 기본 정보 / 우: 경력 타임라인 */
.sum2 {
  position: absolute;
  inset: 145px var(--gutter) 65px;
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  column-gap: 60px;
  align-content: start;
}
.sum2-side { align-self: start; }
.sum2-block + .sum2-block { margin-top: 30px; }
.sum2-block h3 {
  margin: 0 0 10px;
  padding-bottom: 7px;
  border-bottom: 2px solid #2b7067;
  color: #2b7067;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.sum2-list { margin: 0; }
.sum2-list > div {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
}
.sum2-list > div + div { margin-top: 7px; }
.sum2-list dt { color: #8d8880; font-size: .7rem; line-height: 1.55; }
.sum2-list dd { margin: 0; color: #292724; font-size: .74rem; line-height: 1.55; }
.sum2-list a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }

.sum2-timeline {
  position: relative;
  margin: 0;
  padding: 0 0 0 30px;
  list-style: none;
}
.sum2-timeline::before {
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 4px;
  width: 1px;
  background: #cfcac0;
  content: "";
}
.sum2-timeline > li {
  position: relative;
  padding: 16px 24px 17px;
  border: 1px solid #dedad1;
  border-radius: 12px;
  background: #fbfaf7;
}
.sum2-timeline > li + li { margin-top: 12px; }
.sum2-timeline > li::before {
  position: absolute;
  top: 24px;
  left: -30px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2b7067;
  box-shadow: 0 0 0 4px #f0eee9;
  content: "";
}
.sum2-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e8e4db;
}
.sum2-head b { font-size: .95rem; font-weight: 800; line-height: 1.3; letter-spacing: -.01em; }
.sum2-head em { color: #66625c; font-size: .78rem; font-style: normal; line-height: 1.5; }
.sum2-head span { margin-left: auto; color: #8d8880; font-size: .7rem; letter-spacing: .01em; white-space: nowrap; }
.sum2-what ul { margin: 11px 0 0; padding: 0; list-style: none; }
.sum2-what li {
  position: relative;
  padding-left: 13px;
  color: #4a4640;
  font-size: .76rem;
  line-height: 1.6;
}
.sum2-what li + li { margin-top: 4px; }
.sum2-what li::before {
  position: absolute;
  top: .62em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #b6b0a5;
  content: "";
}

/* 03 · Projects — 3 x 2 카드 그리드 */
.pgrid {
  position: absolute;
  inset: 102px var(--gutter) 50px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  column-gap: 38px;
  row-gap: 8px;
}
.pcard {
  align-self: center;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #dedad1;
  border-radius: 13px;
  background: #fbfaf7;
  transform: scale(.9);
  transition: transform .2s ease, box-shadow .2s ease;
}
.pcard:hover { transform: translateY(-3px) scale(.9); box-shadow: 0 10px 24px rgba(60, 52, 40, .12); }
.pcard:nth-child(-n + 3) { align-self: end; }
.pcard:nth-child(n + 4) { align-self: start; }
.pcard-thumb {
  display: block;
  flex: 0 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e6e2da;
}
.pcard:nth-child(5) .pcard-thumb {
  display: grid;
  grid-template-rows: 28px minmax(0, 1fr);
  border-bottom: 1px solid #d8d3ca;
  background: #f7f7f5;
}
.pcard:nth-child(5) .pcard-thumb::before {
  grid-row: 1;
  border-bottom: 1px solid #e3dfd7;
  background:
    radial-gradient(circle at 17px 50%, #12b8b2 0 4px, transparent 4.5px),
    radial-gradient(circle at 34px 50%, #d6d6d2 0 4px, transparent 4.5px),
    radial-gradient(circle at 51px 50%, #d6d6d2 0 4px, transparent 4.5px),
    #f7f7f5;
  content: "";
}
.pcard:nth-child(5) .pcard-thumb img { grid-row: 2; min-height: 0; }
.pcard-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}
.pcard.is-mid .pcard-thumb img { object-position: center 46%; }
.pcard.is-face .pcard-thumb img { object-position: center 60%; }
.pcard.is-upper .pcard-thumb img { object-position: center 24%; }
.pcard-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 14px 15px 15px;
}
.pcard-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 9px;
  min-width: 0;
}
.pcard-head em {
  flex: 0 0 auto;
  color: #2b7067;
  font-size: .66rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .08em;
}
.pcard-head b { min-width: 0; overflow: hidden; font-size: .92rem; font-weight: 800; line-height: 1.3; letter-spacing: -.01em; text-overflow: ellipsis; white-space: nowrap; }
.pcard-period { color: #8d8880; font-size: .6rem; font-weight: 550; letter-spacing: .01em; white-space: nowrap; }
.pcard-desc { display: block; margin-top: 9px; color: #66625c; font-size: .76rem; line-height: 1.5; }
.pcard-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: auto 0 0;
  padding: 11px 0 0;
  list-style: none;
}
.pcard-tags li {
  padding: 3px 8px;
  border: 0;
  border-radius: 5px;
  background: #ebe7df;
  color: #5d5850;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .02em;
}

/* ===========================================================================
   프로젝트 커버 공통 (커버 겸 Overview)
   ========================================================================== */
.s-pj-cover { justify-content: center; }
.pj-cover-block { position: relative; z-index: 4; }
.pj-cover-sub { margin: 22px 0 0; font-size: 1rem; }

.cover-lead {
  max-width: 560px;
  margin: 20px 0 0;
  font-size: .95rem;
  line-height: 1.75;
  opacity: .82;
}
.cover-meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 40px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(127, 127, 127, .35);
  max-width: 820px;
}
.cover-meta-strip span {
  display: block;
  margin-bottom: 4px;
  font-size: .64rem;
  font-weight: 850;
  letter-spacing: .16em;
  opacity: .55;
}
.cover-meta-strip b { font-size: .84rem; font-weight: 700; }
.odie-meta-tech .tech-tags { max-width: 390px; }
.strip-center {
  margin-inline: auto;
  justify-content: center;
  text-align: center;
}

/* 커버 실물 스크린샷 */
.pj-cover-grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 64px;
  align-items: center;
}
.cover-media { text-align: center; }
.cover-shot {
  width: 100%;
  max-width: 500px;
  display: inline-block;
  border: 3px solid rgba(255, 255, 255, .85);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, .35);
  transform: rotate(1.2deg);
}
.cover-shot-caption {
  margin: 16px 0 0;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  opacity: .6;
}
.cover-shot-link {
  display: inline-block;
  letter-spacing: 0;
  font-weight: 650;
  font-size: .76rem;
  opacity: .65;
  transform: rotate(1.2deg);
  transition: opacity .2s ease, color .2s ease;
}
.cover-shot-link:hover { opacity: 1; color: var(--px-gold); text-decoration: underline; text-underline-offset: 4px; }

/* TECH 태그 */
.tech-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.tech-tags i {
  font-style: normal;
  padding: 4px 12px;
  border-radius: 7px;
  border: 0;
  background: rgba(255, 255, 255, .16);
  font-size: .74rem;
  font-weight: 650;
}

/* ==========================================================================
   T-PIXEL — Supernova (픽셀아트)
   ========================================================================== */
.t-pixel { background: var(--px-bg); color: #fff; }
.t-pixel .scanlines {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(0, 0, 0, .22) 0 2px, transparent 2px 5px);
  mix-blend-mode: multiply;
}
.pixel-title {
  margin: 0;
  font-family: "Galmuri11", "DungGeunMo", "Pretendard Variable", monospace;
  font-size: 4.6rem;
  line-height: 1.18;
  letter-spacing: .02em;
  font-weight: 700;
  color: var(--px-gold);
  text-shadow:
    4px 4px 0 var(--px-pink),
    -2px -2px 0 var(--px-accent),
    0 0 20px rgba(255, 215, 0, .3);
}
.pixel-sub {
  font-family: "Galmuri11", "DungGeunMo", monospace;
  color: var(--px-peri);
  font-size: .96rem;
  letter-spacing: .08em;
  animation: blink-caret 1.2s steps(1) infinite;
}
@keyframes blink-caret { 50% { opacity: .35; } }

/* 트윙클 별 */
.pixel-stars { position: absolute; inset: 0; z-index: 1; }
.pixel-stars i { position: absolute; width: 4px; height: 4px; background: #fff; }
.pixel-stars i:nth-child(1) { top: 12%; left: 16%; animation: twinkle 2s infinite; }
.pixel-stars i:nth-child(2) { top: 22%; right: 12%; background: var(--px-gold); animation: twinkle 3s infinite .5s; }
.pixel-stars i:nth-child(3) { bottom: 24%; left: 26%; background: var(--px-pink); animation: twinkle 2.5s infinite 1s; }
.pixel-stars i:nth-child(4) { top: 40%; left: 48%; animation: twinkle 4s infinite .3s; }
.pixel-stars i:nth-child(5) { bottom: 16%; right: 30%; background: var(--px-accent-2); animation: twinkle 2s infinite 1.5s; }
.pixel-stars i:nth-child(6) { top: 16%; left: 40%; background: var(--px-accent); animation: twinkle 3s infinite .8s; }
@keyframes twinkle { 0%, 100% { opacity: .3; } 50% { opacity: 1; } }

/* 핑크 마퀴 바 */
.cover-marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 8px 0;
  background: var(--px-pink);
  overflow: hidden;
}
.cover-marquee-inner {
  display: flex;
  white-space: nowrap;
  animation: marquee 14s linear infinite;
}
.cover-marquee-inner span {
  font-family: "Galmuri11", monospace;
  font-size: .74rem;
  font-weight: 700;
  color: #fff;
  padding: 0 18px;
  letter-spacing: .1em;
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* 아케이드 캐비닛 프레임 스크린샷 */
.shot-cabinet {
  background: var(--px-cab);
  border: 2px solid var(--px-line);
  border-radius: 10px;
  overflow: hidden;
  transform: rotate(1.2deg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .55);
}
.shot-cab-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 14px;
  background: var(--px-cab-top);
  border-bottom: 2px solid #4a4a6c;
}
.cab-screws { display: flex; gap: 6px; }
.cab-screws i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #888, #444);
  border: 1px solid #333;
}
.shot-cab-title {
  font-family: "Galmuri11", monospace;
  font-size: .68rem;
  font-weight: 700;
  color: var(--px-gold);
  letter-spacing: .18em;
  text-shadow: 0 0 8px rgba(255, 215, 0, .4);
}
.shot-cabinet img { display: block; width: 100%; }

/* Supernova 프로젝트 커버 — 두 게임 화면을 겹친 비정형 구성 */
#s07 .pj-cover-grid {
  grid-template-columns: .94fr 1.06fr;
  gap: 24px;
}
#s07 .pj-cover-block {
  align-self: start;
  margin-top: 99px;
}
.supernova-cover-media {
  position: relative;
  min-height: 610px;
}
.supernova-cover-collage {
  position: relative;
  width: 520px;
  height: 590px;
  margin: -20px auto -12px;
}
.sn-cover-device {
  position: absolute;
  width: 287px;
  height: 498px;
  margin: 0;
  padding: 8px;
  overflow: hidden;
  border: 2px solid #53536f;
  border-radius: 36px;
  background: #080812;
  box-shadow: 0 30px 55px rgba(0, 0, 0, .58);
}
.sn-cover-device::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 3;
  width: 62px;
  height: 6px;
  border-radius: 99px;
  background: #11111a;
  transform: translateX(-50%);
}
.sn-cover-device > img,
.sn-cover-device > video {
  width: 100%;
  height: 100%;
  border-radius: 28px;
}
.sn-cover-device > img,
.sn-cover-device > video {
  display: block;
  object-fit: contain;
  object-position: center top;
}
.sn-cover-device-run {
  left: 4px;
  top: 76px;
  z-index: 1;
  transform: rotate(-7deg);
}
.sn-cover-device-note {
  right: 4px;
  top: 0;
  z-index: 2;
  transform: rotate(5deg);
}

/* 픽셀 장식: box-shadow 도트 아트 */
.pixel-deco { position: absolute; inset: 0; z-index: 1; }
.px { position: absolute; background: transparent; }
.px-note {
  top: 18%;
  right: 16%;
  width: 10px;
  height: 10px;
  box-shadow:
    30px 0 0 var(--px-accent-2), 40px 0 0 var(--px-accent-2),
    30px 10px 0 var(--px-accent-2), 40px 10px 0 var(--px-accent-2),
    40px -10px 0 var(--px-accent-2), 40px -20px 0 var(--px-accent-2), 40px -30px 0 var(--px-accent-2),
    50px -30px 0 var(--px-accent-2), 60px -30px 0 var(--px-accent-2),
    0 0 0 var(--px-accent-2), 10px 0 0 var(--px-accent-2),
    0 10px 0 var(--px-accent-2), 10px 10px 0 var(--px-accent-2),
    10px -10px 0 var(--px-accent-2), 10px -20px 0 var(--px-accent-2), 10px -30px 0 var(--px-accent-2),
    20px -30px 0 var(--px-accent-2), 30px -30px 0 var(--px-accent-2);
  animation: px-bob 2.4s steps(2) infinite;
}
.px-ufo {
  top: auto;
  bottom: 150px;
  left: 46%;
  width: 12px;
  height: 12px;
  box-shadow:
    12px -12px 0 var(--px-accent), 24px -12px 0 var(--px-accent), 36px -12px 0 var(--px-accent),
    0 0 0 var(--px-accent), 12px 0 0 var(--px-accent), 24px 0 0 var(--px-accent), 36px 0 0 var(--px-accent), 48px 0 0 var(--px-accent),
    -12px 0 0 var(--px-accent), 60px 0 0 var(--px-accent),
    12px 12px 0 rgba(143, 123, 255, .45), 36px 12px 0 rgba(143, 123, 255, .45);
  animation: px-bob 3.2s steps(2) infinite reverse;
}
.px-runner {
  bottom: 20%;
  right: 24%;
  width: 10px;
  height: 10px;
  box-shadow:
    10px 0 0 #fff, 20px 0 0 #fff,
    10px -10px 0 #fff, 20px -10px 0 #fff,
    10px -20px 0 #fff,
    0 10px 0 #fff, 30px 10px 0 #fff,
    0 20px 0 #fff, 40px 15px 0 #fff;
  opacity: .8;
  animation: px-run .6s steps(2) infinite;
}
@keyframes px-bob { 50% { transform: translateY(-12px); } }
@keyframes px-run { 50% { transform: translateX(8px); } }

/* 픽셀 본문 페이지 — 런처와 동일한 아케이드 스크린 */
.t-pixel-light { background: var(--px-bg); color: #fff; }
.t-pixel-light::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent 0 2px, rgba(255, 255, 255, .018) 2px 4px);
}
.t-pixel-light .stack,
.t-pixel-light .duo { position: relative; z-index: 2; }
.pixel-h,
.pixel-h-sm {
  margin: 0;
  font-family: "Galmuri11", "DungGeunMo", monospace;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--px-gold);
}
.pixel-h { font-size: 2.2rem; text-shadow: 2px 2px 0 var(--px-pink), 0 0 12px rgba(255, 215, 0, .3); }
.pixel-h-sm { margin: 18px 0 12px; font-size: 1.1rem; color: #fff; }
.t-pixel-light .slide-badge { border-color: #fff; color: #fff; }
.t-pixel-light .pageno { color: rgba(255, 255, 255, .5); }
.t-pixel-light .note { color: rgba(139, 158, 240, .85); }
.t-pixel-light .trouble-label { color: var(--px-accent); }
.t-pixel-light .trouble-grid > div {
  background: var(--px-card);
  border: 2px solid var(--px-line);
  border-radius: 8px;
}
.t-pixel-light .trouble-grid span { color: var(--px-gold); }
.t-pixel-light .trouble-grid p { color: rgba(255, 255, 255, .85); }

.pixel-diagram { margin-top: 34px; }
.diagram {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
}
.dg-node {
  min-width: 220px;
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
}
.dg-node b { font-size: 1.02rem; }
.dg-node span { font-size: .8rem; opacity: .75; }
.dg-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .1em;
}
.pixel-diagram .dg-node {
  border: 2px solid var(--px-line);
  border-radius: 8px;
  background: var(--px-card);
  color: #fff;
  box-shadow: 0 6px 0 rgba(0, 0, 0, .3);
  font-family: "Galmuri11", "DungGeunMo", monospace;
}
.pixel-diagram .dg-node-accent { border-color: var(--px-gold); }
.pixel-diagram .dg-node-accent b { color: var(--px-gold); text-shadow: 0 0 8px rgba(255, 215, 0, .4); }
.pixel-diagram .dg-link i { font-style: normal; font-family: "Galmuri11", monospace; color: var(--px-pink); font-weight: 700; }
.pixel-chip {
  padding: 8px 16px;
  border: 2px solid var(--px-line);
  border-radius: 6px;
  background: var(--px-card);
  color: var(--px-accent-2);
  font-family: "Galmuri11", "DungGeunMo", monospace;
  font-size: .8rem;
  font-weight: 700;
}
/* 세션 타임라인 시퀀스 — 한 판의 흐름 (클린) */
.seq-intro {
  position: relative;
  top: -16px;
  margin: 0 0 12px;
  color: #fff;
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.25;
  text-align: center;
}
.seq-lead {
  position: relative;
  top: -16px;
  margin: 0 0 30px;
  color: #aeb5db;
  font-size: .86rem;
  line-height: 1.65;
  text-align: center;
}
#s10 .stack { top: -21px; }
.seq {
  position: relative;
  margin-top: 8px;
  text-align: left;
}
.phase-guide {
  position: absolute;
  top: 30px;
  bottom: 0;
  left: var(--x);
  width: 1px;
  background: rgba(255, 255, 255, .05);
}
.seq-phases {
  position: relative;
  height: 34px;
}
.seq-phases span {
  position: absolute;
  left: var(--x);
  transform: translateX(-50%);
  font-size: .84rem;
  font-weight: 750;
  color: #9aa2c4;
  white-space: nowrap;
}
.seq-lane {
  position: relative;
  z-index: 2;
  height: 70px;
  border-radius: 12px;
  background: #1a1d38;
  border: 0;
  display: flex;
  align-items: center;
  padding-left: 24px;
}
.seq-tag { display: flex; flex-direction: column; line-height: 1.35; }
.seq-tag b { font-size: 1.02rem; font-weight: 800; color: #fff; letter-spacing: .04em; }
.seq-tag span { font-size: .74rem; color: #8b93b8; }
.lane-node {
  position: absolute;
  left: var(--x);
  top: 50%;
  transform: translate(-50%, -50%);
  min-height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  background: #343958;
  border: 0;
}
.lane-node b { font-size: .8rem; font-weight: 700; color: #e6e9f5; white-space: nowrap; }

/* 랭킹 체인 — 단계 번호 + 레인 내부 처리 라인 */
.seq-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  margin-right: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-style: normal;
  font-size: .8rem;
  font-weight: 750;
  line-height: 1;
  flex: none;
}
.lane-node { display: inline-flex; align-items: center; }
.lane-node { justify-content: center; gap: 8px; line-height: 1; }
.lane-node .seq-step { color: #fff; background: transparent; }
.proc-line {
  position: absolute;
  left: var(--x1);
  width: calc(var(--x2) - var(--x1));
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, #7fb8d9, #e5c34d);
  z-index: 1;
}
.proc-line::before {
  content: "";
  position: absolute;
  left: -3px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7fb8d9;
}
.lane-node { z-index: 2; }

.seq-gap { position: relative; height: 230px; }
.seq-axis {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #383e60 6%, #383e60 94%, transparent);
}

/* 이벤트 발사 */
.ev {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: var(--x);
}
.ev-gold { color: #e5c34d; }
.ev-sky { color: #7fb8d9; }
.ev-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1px;
  width: 2px;
  background: currentColor;
  border-radius: 2px;
}
.ev-dashed .ev-line { background: repeating-linear-gradient(0deg, currentColor 0 5px, transparent 5px 10px); }
.ev-down::after,
.ev-up::before {
  position: absolute;
  left: -1px;
  transform: translateX(-45%);
  font-size: .82rem;
  color: currentColor;
}
.ev-down::after { content: "▼"; bottom: -7px; }
.ev-up::before { content: "▲"; top: -7px; }
.ev-chip {
  position: absolute;
  left: 12px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 7px;
  border: 0;
  font-size: .8rem;
  font-weight: 750;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1;
}
.ev em {
  position: absolute;
  left: 14px;
  font-style: normal;
  font-size: .74rem;
  color: #9aa2c4;
  white-space: nowrap;
}
.ev-down .ev-chip { top: 10%; }
.ev-down em { top: calc(10% + 44px); }
.ev-up .ev-chip { bottom: 26%; }
.ev-up em { bottom: calc(26% - 30px); }
.ev-flip .ev-chip { left: auto; right: 12px; }
.ev-flip em { left: auto; right: 14px; }

/* 플레이 구간 */
.ev-seg {
  position: absolute;
  top: 50%;
  left: var(--x1);
  width: calc(var(--x2) - var(--x1));
  height: 6px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, #454c73 0 12px, transparent 12px 22px);
}
.ev-seg span {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .76rem;
  font-weight: 750;
  color: #9aa2c4;
  letter-spacing: .1em;
}

/* 전체 구조도 — 좌 App · 우 Unity · 가운데 이벤트 레인 */
.duo-diagram {
  display: grid;
  grid-template-columns: 252px 1fr 252px;
  gap: 0;
  align-items: stretch;
  margin-top: 38px;
  text-align: left;
}
.pillar {
  position: relative;
  z-index: 2;
  padding: 24px 22px;
  background: #0f1120;
  border: 1px solid #2c3052;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.pillar h3 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 750;
  color: #fff;
  padding-bottom: 12px;
  border-bottom: 1px solid #262a48;
}
.pillar ul { margin: 0; padding: 0; list-style: none; }
.pillar li {
  margin: 9px 0;
  font-size: .8rem;
  color: #9aa2c4;
  line-height: 1.55;
}
.pillar-game { border-color: rgba(255, 215, 0, .5); box-shadow: 0 0 26px rgba(255, 215, 0, .1); }
.pillar-game h3 { color: var(--px-gold); border-bottom-color: rgba(255, 215, 0, .25); }
.lanes {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
  padding: 10px 0;
}
.lane { text-align: center; }
.lane-gold { color: var(--px-gold); }
.lane-sky { color: var(--px-accent-2); }
.lane-pink { color: var(--px-pink); }
.lane-title {
  margin: 0 0 2px;
  font-size: .76rem;
  font-weight: 750;
  color: #fff;
}
.lane-track {
  position: relative;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lane-track::before {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  top: 50%;
  height: 1.5px;
  background: currentColor;
  opacity: .5;
}
.lane-track::after,
.lane-track i {
  position: absolute;
  top: 50%;
  transform: translateY(-52%);
  font-size: .72rem;
  font-style: normal;
}
.lane-r::after { content: "▶"; right: -2px; }
.lane-l::after { content: "◀"; left: -2px; }
.lane-b::after { content: "▶"; right: -2px; }
.lane-b i { left: -2px; }
.lane-track span {
  position: relative;
  z-index: 2;
  padding: 4px 12px;
  border-radius: 5px;
  background: #0d0d1a;
  border: 1px solid currentColor;
  font-family: "Galmuri11", monospace;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .04em;
  white-space: nowrap;
}
.lane-sub {
  margin: 3px 0 0;
  font-size: .68rem;
  color: #8b93b8;
}

/* 수직 파이프라인 관계도 (Vercel 스타일) */
.pipe-scene {
  position: relative;
  width: 330px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 6px 0;
}
.pipe-scene::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1.5px;
  background: linear-gradient(transparent, #3d4266 10%, #3d4266 90%, transparent);
}
.pipe-card {
  position: relative;
  z-index: 2;
  padding: 14px 18px;
  background: #0f1120;
  border: 1px solid #2c3052;
  border-radius: 10px;
  text-align: left;
  transition: border-color .25s ease;
}
.pipe-card:hover { border-color: #4a5080; }
.pipe-card b { display: block; font-size: .94rem; font-weight: 750; color: #fff; }
.pipe-card > span { display: block; margin-top: 3px; font-size: .74rem; color: #8b93b8; line-height: 1.5; }
.pc-user {
  width: max-content;
  margin: 0 auto;
  padding: 8px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 9px;
  background: #171930;
}
.pc-user i { font-style: normal; font-size: 15px; }
.pc-user b { font-size: .84rem; }
.pc-user span { margin: 0; font-size: .7rem; }
.pc-unity {
  border-color: rgba(255, 215, 0, .55);
  box-shadow: 0 0 28px rgba(255, 215, 0, .12);
}
.pc-unity b { color: var(--px-gold); }
.pc-games { display: flex; gap: 8px; margin: 10px 0 4px; }
.pc-games img {
  width: 46px;
  height: 46px;
  border-radius: 6px;
  border: 1px solid #3a3f5c;
  image-rendering: pixelated;
}
.pipe-rail {
  position: absolute;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  width: 90px;
}
.pipe-rail i { font-style: normal; font-size: .68rem; }
.pipe-rail span {
  font-family: "Galmuri11", monospace;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-align: center;
  line-height: 1.6;
}
.pipe-rail::before { content: ""; width: 1.5px; height: 58px; background: currentColor; opacity: .45; }
.rail-down { right: -104px; top: 24%; color: var(--px-gold); }
.rail-down i { order: 3; margin-top: -4px; }
.rail-down span { order: 1; }
.rail-down::before { order: 2; }
.rail-up { left: -104px; top: 40%; color: var(--px-accent-2); }
.rail-up i { order: 1; margin-bottom: -4px; }
.rail-up::before { order: 2; }
.rail-up span { order: 3; }

/* 아이소메트릭 관계도 */
.iso-scene {
  position: relative;
  height: 480px;
}
.iso-wrap { position: absolute; }
.iso-wrap-app { top: 20px; right: 20px; }
.iso-wrap-game { bottom: 46px; left: -8px; }
.iso-plane {
  position: relative;
  width: 330px;
  padding: 26px 22px 40px;
  border-radius: 14px;
  background: rgba(38, 41, 80, .94);
  transform: rotateX(57deg) rotateZ(-45deg);
  transform-style: preserve-3d;
}
.iso-plane-app { border: 4px solid var(--px-pink); box-shadow: -14px 18px 0 rgba(232, 64, 112, .12); }
.iso-plane-game { border: 4px solid var(--px-gold); box-shadow: -14px 18px 0 rgba(255, 215, 0, .1); }
.iso-plane-label {
  position: absolute;
  right: 16px;
  bottom: 8px;
  font-family: "Galmuri11", monospace;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .08em;
}
.iso-plane-app .iso-plane-label { color: var(--px-pink); }
.iso-plane-game .iso-plane-label { color: var(--px-gold); }
.iso-tiles {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 4px 0 30px;
  transform-style: preserve-3d;
}
.cube {
  position: relative;
  width: 56px;
  height: 56px;
  transform-style: preserve-3d;
}
.cube-top {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: #f2f2f6;
  border: 1px solid #c9c9d8;
  transform: translateZ(20px);
  font-family: "Galmuri11", monospace;
  font-size: .9rem;
  font-weight: 700;
  color: #22243f;
}
.cube-top img { width: 46px; height: 46px; image-rendering: pixelated; }
.cube-a {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 20px;
  background: #b4b4c6;
  transform-origin: center top;
  transform: rotateX(90deg);
}
.cube-b {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  width: 20px;
  background: #9797ad;
  transform-origin: center left;
  transform: rotateY(-90deg);
}
.cube em {
  position: absolute;
  top: calc(100% + 24px);
  left: 50%;
  transform: translateX(-50%);
  font-style: normal;
  font-family: "Galmuri11", monospace;
  font-size: .62rem;
  font-weight: 700;
  color: #cfd4f2;
  white-space: nowrap;
}
.iso-actor {
  position: absolute;
  top: -8px;
  right: 240px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.iso-actor i { font-style: normal; font-size: 26px; }
.iso-actor span { font-family: "Galmuri11", monospace; font-size: .6rem; font-weight: 700; color: #fff; }
.iso-actor::after {
  content: "↘";
  color: var(--px-pink);
  font-size: 18px;
  font-weight: 700;
}
.iso-link {
  position: absolute;
  left: 40%;
  top: 47%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.iso-link i {
  width: 120px;
  border-top: 3px dashed var(--px-pink);
  transform: rotate(118deg);
  position: absolute;
  top: 26px;
  left: -22px;
}
.iso-link span {
  position: relative;
  z-index: 2;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--px-pink);
  color: #fff;
  font-family: "Galmuri11", monospace;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .08em;
}

/* 앱-게임 중첩 관계도 */
.nest-app {
  background: var(--px-cab);
  border: 2px solid var(--px-line);
  border-radius: 18px;
  padding: 18px;
  text-align: left;
}
.nest-label {
  margin: 0 0 12px;
  font-family: "Galmuri11", monospace;
  font-size: .66rem;
  font-weight: 700;
  color: var(--px-peri);
  letter-spacing: .12em;
}
.nest-webview {
  border: 2px dashed var(--px-accent);
  border-radius: 14px;
  padding: 16px;
}
.nest-game {
  background: var(--px-card);
  border: 2px solid var(--px-gold);
  border-radius: 10px;
  padding: 18px 16px;
  text-align: center;
  box-shadow: 0 0 22px rgba(255, 215, 0, .12);
}
.nest-game-title {
  margin: 0;
  font-family: "Galmuri11", monospace;
  font-size: .8rem;
  font-weight: 700;
  color: var(--px-gold);
  letter-spacing: .1em;
}
.nest-thumbs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 14px 0 10px;
}
.nest-thumbs img {
  width: 96px;
  height: 96px;
  image-rendering: pixelated;
  border: 2px solid #4a4a6c;
  border-radius: 4px;
}
.nest-game-sub { margin: 0; font-size: .72rem; color: #fff; }
.nest-caption { color: var(--px-peri); }

/* 이벤트 규칙 */
.nest-lead {
  margin: 16px 0 0;
  font-size: .92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .78);
}
.event-rules {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.event-rules li {
  display: grid;
  grid-template-columns: 82px 116px 1fr;
  gap: 12px;
  align-items: center;
  padding: 11px 14px;
  background: var(--px-card);
  border: 2px solid var(--px-line);
  border-radius: 8px;
  text-align: left;
}
.event-rules b {
  font-size: .8rem;
  font-weight: 750;
  color: #fff;
}
.dir {
  font-style: normal;
  font-family: "Galmuri11", monospace;
  font-size: .58rem;
  font-weight: 700;
  text-align: center;
  padding: 4px 4px;
  border-radius: 4px;
  letter-spacing: .04em;
}
.dir-in { color: var(--px-gold); background: rgba(255, 215, 0, .1); border: 1px solid rgba(255, 215, 0, .4); }
.dir-out { color: var(--px-accent-2); background: rgba(135, 206, 235, .1); border: 1px solid rgba(135, 206, 235, .4); }
.dir-both { color: var(--px-pink); background: rgba(232, 64, 112, .12); border: 1px solid rgba(232, 64, 112, .45); }
.event-rules span { font-size: .76rem; line-height: 1.5; color: #b9c1e8; }

/* 앱 표지 — Figma 260615 다크 브랜드 톤 */
.t-appcover { background: var(--app-bg); color: var(--app-text); }
.t-appcover::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 76% 26%, rgba(233, 255, 63, .10), transparent 47%),
    linear-gradient(115deg, transparent 0 62%, rgba(255, 255, 255, .018) 62% 63%, transparent 63%);
}
.appcover {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 72px;
  align-items: center;
}
.ev-gold .ev-chip { color: #fff; background: #6a5b25; }
.ev-sky .ev-chip { color: #fff; background: #31566d; }
.ev-chip .seq-step { color: #fff; background: transparent; }
.appcover-title {
  margin: 0;
  font-size: 3.2rem;
  font-weight: 850;
  letter-spacing: -.055em;
  line-height: 1.17;
}
.appcover-title em { font-style: normal; color: var(--app-lime); }
.appcover-sub {
  max-width: 500px;
  margin: 28px 0 0;
  font-size: 1.02rem;
  line-height: 1.78;
  color: rgba(255, 255, 255, .74);
}
.appcover-media {
  position: relative;
  width: 320px;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  padding: 8px;
  border-radius: 44px;
  border: 1px solid #55565c;
  background: #050506;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .65), 0 0 70px rgba(233, 255, 63, .06);
}
.appcover-media::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 13px;
  left: 50%;
  width: 54px;
  height: 5px;
  border-radius: 99px;
  background: rgba(0, 0, 0, .76);
  transform: translateX(-50%);
}
.appcover-media::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  border: 10px solid #050506;
  border-radius: 44px;
}
.appcover-media img {
  display: block;
  width: calc(100% + 10px);
  max-width: none;
  margin: -5px;
  border-radius: 36px;
}

/* 앱 기획서 톤 — 최신 앱 UI와 같은 charcoal + neon lime */
.t-appdoc {
  background:
    radial-gradient(circle at 84% 8%, rgba(233, 255, 63, .055), transparent 31%),
    var(--app-bg);
  color: var(--app-text);
}
.t-appdoc .oval {
  border-color: rgba(233, 255, 63, .72);
  color: var(--app-lime);
}
.t-appdoc .pageno { color: rgba(255, 255, 255, .42); }
.t-appdoc .stack { padding-top: 56px; }
.doc-head-bottom { margin-top: 36px; }
.doc-head {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
  text-align: left;
  max-width: 1120px;
  margin: 0 auto;
}
.doc-title {
  margin: 0;
  font-size: 2.05rem;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.28;
  color: var(--app-text);
}
.doc-title small {
  display: block;
  margin-top: 10px;
  font-size: .8rem;
  font-weight: 650;
  letter-spacing: .02em;
  color: var(--app-muted);
}
.doc-bullets { margin: 4px 0 0; padding: 0; list-style: none; }
.doc-bullets li {
  position: relative;
  padding-left: 17px;
  margin: 8px 0;
  font-size: .94rem;
  line-height: 1.72;
  color: #c9cacf;
}
.doc-bullets li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: .68em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--app-lime);
}
.doc-bullets b { color: var(--app-text); font-weight: 750; }
.doc-shots {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  margin-top: 32px;
}
.doc-shot { margin: 0; text-align: center; }
.doc-pill {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 22px;
  border-radius: 999px;
  background: rgba(233, 255, 63, .10);
  border: 1px solid rgba(233, 255, 63, .30);
  font-size: .82rem;
  font-weight: 750;
  color: var(--app-lime);
  white-space: nowrap;
}
.doc-shot img {
  display: block;
  height: 400px;
  width: auto;
  margin: 0 auto;
  border-radius: 18px;
  border: 1px solid var(--app-line);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .42);
}
.doc-shots-sm img { height: 355px; }
.doc-shot-crop img { width: 186px; height: 355px; object-fit: cover; object-position: center top; }
.doc-shots-two { gap: 90px; }
.doc-shots-two img { height: 420px; }
.doc-shot-link { transition: transform .2s ease; }
.doc-shot-link:hover { transform: translateY(-5px); }
.doc-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}
.doc-step {
  padding: 11px 20px;
  border-radius: 12px;
  border: 1px solid var(--app-line);
  background: var(--app-surface);
  text-align: center;
}
.doc-step b { display: block; font-size: .84rem; font-weight: 750; color: var(--app-text); }
.doc-step span { font-size: .68rem; color: var(--app-muted); }
.doc-step-arrow { font-style: normal; color: var(--app-lime); font-size: 1.1rem; font-weight: 700; }

/* 06 · 화면 전체에 핸드폰을 펼쳐 앱의 주요 화면을 설명한다. */
.app-showcase {
  position: relative;
  width: 100%;
  height: 650px;
  margin-top: 54px;
  text-align: left;
}
.app-showcase-copy {
  position: absolute;
  z-index: 3;
  left: 0;
  top: 30px;
  width: 430px;
}
.app-showcase-copy h2 {
  margin: 0;
  color: var(--app-text);
  font-size: 2.35rem;
  font-weight: 820;
  letter-spacing: -.045em;
  line-height: 1.24;
}
.app-showcase-copy h2 em {
  color: var(--app-lime);
  font-style: normal;
}
.app-showcase-copy p {
  margin: 20px 0 0;
  color: #b8bac0;
  font-size: .82rem;
  line-height: 1.75;
}
.app-showcase-visual {
  position: absolute;
  inset: 0;
}
.showcase-work-caption {
  position: relative;
  margin: 0 0 16px;
  padding-left: 18px;
}
.showcase-work-caption::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid var(--app-lime);
  background: var(--app-bg);
}
.showcase-work-caption::after {
  content: "";
  position: absolute;
  left: 6px;
  top: calc(.42em + 10px);
  width: 1px;
  height: 16px;
  background: rgba(233, 255, 63, .42);
}
.showcase-work-caption b {
  display: block;
  color: var(--app-text);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
}
.showcase-work-caption span {
  display: block;
  margin-top: 4px;
  color: #c5c7ce;
  font-size: .78rem;
  line-height: 1.45;
}
.showcase-work-caption small {
  display: block;
  margin-bottom: 5px;
  color: var(--app-lime);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .06em;
}
.showcase-phone-frame {
  position: relative;
  width: 100%;
  padding: 7px;
  overflow: hidden;
  border: 1px solid #494a50;
  border-radius: 27px;
  background: #050506;
  box-shadow: 0 20px 44px rgba(0, 0, 0, .46);
}
.showcase-phone-frame::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 11px;
  left: 50%;
  width: 44px;
  height: 4px;
  border-radius: 99px;
  background: rgba(0, 0, 0, .72);
  transform: translateX(-50%);
}
.showcase-phone-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 375 / 812;
  object-fit: cover;
  object-position: center top;
  border-radius: 21px;
}
.showcase-context {
  position: absolute;
  left: 0;
  top: 226px;
  width: 520px;
  display: flex;
  align-items: end;
  gap: 16px;
}
.showcase-context figure {
  width: 148px;
  margin: 0;
  text-align: left;
}
.showcase-context figcaption {
  margin-top: 10px;
  padding-left: 8px;
  color: #d8d9dd;
}
.showcase-context figcaption b,
.showcase-context figcaption span { display: block; }
.showcase-context figcaption b {
  font-size: .86rem;
  font-weight: 800;
}
.showcase-context figcaption span {
  margin-top: 3px;
  color: #c5c7ce;
  font-size: .69rem;
  line-height: 1.45;
}
.showcase-work-pair {
  position: absolute;
  left: 558px;
  top: 9px;
  width: 622px;
  height: 650px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}
.showcase-work-unit {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  width: 286px;
  height: 100%;
  margin: 0;
}
.showcase-work-unit > .showcase-work-caption {
  width: 240px;
  min-height: 72px;
  margin: 0 auto 12px;
  padding: 0 32px 0 20px;
}
.showcase-work-unit > .showcase-work-caption::before {
  top: 5px;
}
.showcase-work-unit > .showcase-work-caption::after {
  top: 17px;
  bottom: -25px;
  height: auto;
}
.showcase-unity-logo {
  position: absolute;
  top: 5px;
  right: 0;
  width: 28px;
  height: 31px;
  object-fit: contain;
}
.showcase-phone-frame-context {
  width: 148px;
  height: 321px;
  padding: 6px;
  border-radius: 24px;
}
.showcase-phone-frame-context::before {
  top: 9px;
  width: 34px;
  height: 3px;
}
.showcase-phone-frame-context img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
}
.showcase-phone-frame-work {
  width: 240px;
  align-self: center;
}
.showcase-call-frame img { object-position: center center; }
.showcase-call-control {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .16);
  backdrop-filter: blur(6px);
}
.showcase-call-control svg {
  width: 18px;
  height: 18px;
  overflow: visible;
  fill: #fff;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.showcase-call-status {
  position: absolute;
  z-index: 3;
  top: 12px;
  left: 18px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .35);
}
.showcase-call-status > b {
  font-size: .61rem;
  font-weight: 750;
  line-height: 1;
}
.showcase-call-status > span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.showcase-status-signal {
  display: flex;
  align-items: end;
  gap: 1.5px;
  width: 13px;
  height: 10px;
}
.showcase-status-signal i {
  width: 2px;
  border-radius: 1px;
  background: #fff;
}
.showcase-status-signal i:nth-child(1) { height: 3px; }
.showcase-status-signal i:nth-child(2) { height: 5px; }
.showcase-status-signal i:nth-child(3) { height: 7px; }
.showcase-status-signal i:nth-child(4) { height: 9px; }
.showcase-status-wifi {
  width: 14px;
  height: 12px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
}
.showcase-status-battery {
  position: relative;
  display: block;
  width: 19px;
  height: 9px;
  padding: 1px;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 2.5px;
}
.showcase-status-battery::after {
  content: "";
  position: absolute;
  top: 2px;
  right: -3px;
  width: 2px;
  height: 4px;
  border-radius: 0 1px 1px 0;
  background: rgba(255, 255, 255, .85);
}
.showcase-status-battery i {
  display: block;
  width: 82%;
  height: 100%;
  border-radius: 1px;
  background: #fff;
}
.showcase-call-back { top: 38px; left: 18px; }
.showcase-call-back svg { fill: none; }
.showcase-call-sound { top: 38px; right: 18px; }
.showcase-call-sound svg path:first-child { stroke: none; }
.showcase-call-sound svg path:last-child { fill: none; }
.showcase-call-end {
  left: 50%;
  bottom: 27px;
  width: 50px;
  height: 50px;
  background: #ef1717;
  transform: translateX(-50%);
}
.showcase-call-end svg { width: 27px; height: 27px; stroke: none; }

/* 공통 코어 카드 */
.core-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 880px;
  margin: 32px auto 0;
  text-align: left;
}
.core-card {
  padding: 20px 22px;
  background: var(--px-card);
  border: 2px solid var(--px-line);
  border-radius: 8px;
}
.core-card h3 { margin: 12px 0 8px; font-size: .96rem; font-weight: 750; color: #fff; }
.core-card p { margin: 0; font-size: .8rem; line-height: 1.7; color: #b9c1e8; }
.core-tag {
  display: inline-block;
  padding: 3px 11px;
  border-radius: 5px;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
  border: 1px solid currentColor;
}
.tag-reuse { color: #e5c34d; }
.tag-dev { color: #7fb8d9; }

/* WebGL 배포·진입 방식 */
.delivery-stack { position: relative; z-index: 2; }
.delivery-title {
  position: relative;
  top: -12px;
  color: #fff;
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.25;
  text-shadow: none;
}
.delivery-lead {
  position: relative;
  top: -12px;
  margin: 12px 0 0;
  color: #aeb5db;
  font-size: .86rem;
  line-height: 1.65;
}
.delivery-showcase {
  width: 1140px;
  margin: 39px auto 0;
  text-align: left;
}
.delivery-route-heads {
  display: grid;
  grid-template-columns: 955px 150px;
  gap: 35px;
}
.delivery-route-head {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 36px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(139, 144, 179, .38);
}
.delivery-route-head span {
  padding: 4px 9px;
  border: 0;
  border-radius: 4px;
  background: #4a4f69;
  color: #fff;
  font-family: "Galmuri11", monospace;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .08em;
}
.delivery-route-head b { color: #fff; font-size: .88rem; }
.delivery-route-head-app b { font-size: .76rem; white-space: nowrap; }
.delivery-hub-figure { position: relative; }
.delivery-screen-grid {
  display: grid;
  grid-template-columns: 460px 460px 150px;
  gap: 35px;
  margin-top: 18px;
}
.delivery-figure { margin: 0; }
.delivery-screen-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 310px;
}
.delivery-pc-frame {
  position: relative;
  padding: 7px;
  border: 2px solid #555875;
  border-radius: 8px;
  background: #090910;
  box-shadow: 0 16px 32px rgba(0, 0, 0, .36);
}
.delivery-pc-frame-hub,
.delivery-pc-frame-game { width: 460px; height: 260px; }
.delivery-pc-frame::before,
.delivery-pc-frame::after {
  content: "";
  position: absolute;
  left: 50%;
  background: #555875;
  transform: translateX(-50%);
}
.delivery-pc-frame::before { bottom: -15px; width: 4px; height: 14px; }
.delivery-pc-frame::after { bottom: -18px; width: 72px; height: 4px; border-radius: 4px; }
.delivery-pc-frame img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  object-fit: cover;
}
.delivery-phone {
  position: relative;
  width: 126px;
  height: 260px;
  margin: 0 auto;
  padding: 6px;
  overflow: hidden;
  border: 2px solid #555875;
  border-radius: 22px;
  background: #090910;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .35);
}
.delivery-phone img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
  object-position: center top;
}
.delivery-figure figcaption {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  margin-top: 11px;
  text-align: center;
}
.delivery-figure figcaption b {
  color: var(--px-gold);
  font-size: .8rem;
  white-space: nowrap;
}
.delivery-figure figcaption em {
  color: #fff;
  font-size: .72rem;
  font-style: normal;
  font-weight: 750;
}
.delivery-figure figcaption span {
  color: #aeb5db;
  font-size: .75rem;
  line-height: 1.45;
}
/* 리더보드 파이프라인 */
.flow-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.flow-step {
  min-width: 150px;
  padding: 12px 14px;
  background: var(--px-card);
  border: 2px solid var(--px-line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
}
.flow-step b {
  font-family: "Galmuri11", monospace;
  font-size: .72rem;
  font-weight: 700;
  color: var(--px-gold);
  letter-spacing: .04em;
}
.flow-step span { font-size: .7rem; color: var(--px-peri); }
.flow-arrow {
  align-self: center;
  font-style: normal;
  font-family: "Galmuri11", monospace;
  color: var(--px-pink);
  font-weight: 700;
}

.pixel-media {
  aspect-ratio: 16 / 9;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .03) 0 2px, transparent 2px 6px),
    var(--px-card);
  border: 2px solid var(--px-line);
  border-radius: 8px;
  color: rgba(255, 255, 255, .55);
}
.game-panel { text-align: left; }
.game-shot-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 18px 0;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .025) 0 2px, transparent 2px 6px),
    var(--px-card);
  border: 2px solid var(--px-line);
  border-radius: 10px;
  transition: border-color .2s ease;
}
.game-panel:hover .game-shot-wrap { border-color: var(--px-accent); }
.play-pill {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 3px 10px;
  border-radius: 4px;
  background: #3edc81;
  color: #06371c;
  font-family: "Galmuri11", monospace;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .08em;
}
.game-shot {
  width: 280px;
  height: 280px;
  image-rendering: pixelated;
  border: 2px solid #4a4a6c;
  border-radius: 4px;
}
.game-cast {
  margin-left: 10px;
  padding: 3px 10px 4px;
  border-radius: 4px;
  font-size: .66rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .04em;
  vertical-align: middle;
}
.cast-miho { background: var(--px-pink); }
.cast-sohee { background: #4a90e2; }
.game-panel h3 { font-family: "Galmuri11", "DungGeunMo", monospace; }
.game-panel ul { margin: 0; padding: 0; list-style: none; color: #b9c1e8; font-size: .9rem; }
.game-panel li { margin: 6px 0; padding-left: 18px; position: relative; }
.game-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .52em;
  width: 8px;
  height: 8px;
  background: var(--px-gold);
}
.shared-core-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 920px;
  margin: 24px auto 0;
  padding: 13px 18px;
  border: 2px solid var(--px-line);
  border-radius: 8px;
  background: #1b1d38;
}
.shared-core-bar > span {
  color: var(--px-gold);
  font-family: "Galmuri11", monospace;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .08em;
}
.shared-core-bar p {
  margin: 0 10px 0 0;
  color: #b9c1e8;
  font-size: .76rem;
}
.shared-core-bar b {
  color: #fff;
  font-size: .72rem;
}
.shared-core-bar i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--px-pink);
}

/* Supernova Games — 세로 플레이 화면 중심 구성 */
#s08 .game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  width: 900px;
  margin: 0 auto;
  gap: 42px;
}
#s08 .game-shot-wrap {
  display: block;
  width: 242px;
  height: 430px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  border: 6px solid #111217;
  border-radius: 34px;
  background: #050506;
  box-shadow:
    0 0 0 1px #555875,
    0 22px 42px rgba(0, 0, 0, .46),
    inset 0 0 0 1px rgba(255, 255, 255, .08);
}
#s08 .game-shot-wrap::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 8px;
  left: 50%;
  width: 54px;
  height: 5px;
  border-radius: 99px;
  background: rgba(7, 7, 9, .88);
  transform: translateX(-50%);
}
#s08 .game-shot-wrap::after {
  content: "";
  position: absolute;
  z-index: 3;
  bottom: 8px;
  left: 50%;
  width: 72px;
  height: 4px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .45);
  transform: translateX(-50%);
}
#s08 .game-shot {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 27px;
  object-fit: cover;
  pointer-events: none;
}
#s08 .game-panel h3,
#s08 .game-panel .game-summary,
#s08 .game-panel ul {
  width: 242px;
  margin-inline: auto;
}
#s08 .game-panel h3 {
  margin-top: 14px;
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .015em;
}
#s08 .game-summary {
  min-height: 45px;
  margin-top: 8px;
  margin-bottom: 8px;
  color: #e0e4f7;
  font-size: .76rem;
  line-height: 1.5;
  word-break: keep-all;
}
#s08 .game-panel ul {
  margin-top: 0;
  font-size: .74rem;
  line-height: 1.45;
}
#s08 .game-panel li { margin: 4px 0; }

/* ==========================================================================
   T-PAPERCRAFT — Centient (페이퍼 크래프트)
   ========================================================================== */
.t-papercraft { background: var(--pc-bg); }
.paper-hills { position: absolute; inset: auto 0 0; height: 372px; z-index: 1; }
.paper-hills i {
  position: absolute;
  bottom: 0;
  border-radius: 50% 50% 0 0;
  box-shadow: 0 -6px 0 rgba(255, 255, 255, .5), 0 -18px 30px rgba(11, 95, 92, .12);
}
.paper-hills i:nth-child(1) { left: -10%; width: 55%; height: 70%; background: #cfe6d2; }
.paper-hills i:nth-child(2) { right: -12%; width: 60%; height: 88%; background: #a9d4bb; }
.paper-hills i:nth-child(3) { left: 24%; width: 62%; height: 46%; background: #7cbfa0; }

.paper-sticker {
  display: inline-block;
  padding: 34px 44px;
  background: #fff;
  border-radius: 18px;
  transform: rotate(-2deg);
  box-shadow:
    0 2px 0 rgba(0, 0, 0, .05),
    10px 12px 0 rgba(11, 95, 92, .18);
}
.paper-sticker h2 {
  margin: 0;
  font-size: 3.6rem;
  line-height: 1.2;
  letter-spacing: -.03em;
  font-weight: 800;
  color: var(--pc-deep);
}
.paper-sub { color: #5c5344; font-weight: 650; }

.paper-cast { position: absolute; right: 8%; bottom: 12%; z-index: 3; }
.paper-card {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 14px 20px 40px;
  background: #fff;
  border-radius: 10px;
  font-size: .78rem;
  font-weight: 800;
  color: var(--pc-deep);
  box-shadow: 6px 8px 0 rgba(11, 95, 92, .22);
}
.paper-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  width: 26px;
  height: 18px;
  border-radius: 50% 50% 45% 45%;
  background: var(--pc-accent);
  opacity: .25;
}
.pc-a { transform: translate(-240px, -30px) rotate(-7deg); }
.pc-b { transform: translate(-160px, 6px) rotate(3deg); }
.pc-c { transform: translate(-80px, -18px) rotate(-3deg); }
.pc-d { transform: translate(0, 10px) rotate(6deg); }

.t-papercraft-light { background: var(--pc-light); }
.paper-h {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--pc-deep);
}
/* Call — 상태별 캐릭터 */
.call-lead { max-width: 640px; margin: 14px auto 0; color: #5c5344; font-size: .95rem; }
.call-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 880px;
  margin: 26px auto 0;
}
.call-grid figure { margin: 0; }
.call-grid img {
  display: block;
  width: 100%;
  border-radius: 14px;
  box-shadow: 6px 8px 0 rgba(11, 95, 92, .14);
}
.call-grid figcaption { margin-top: 10px; }
.call-grid figcaption b {
  display: block;
  font-size: .82rem;
  font-weight: 800;
  color: var(--pc-deep);
  letter-spacing: .04em;
}
.call-grid figcaption span { font-size: .72rem; color: var(--muted); }
.call-others {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.call-others span { font-size: .8rem; color: #5c5344; margin-right: 8px; }
.call-others img {
  width: 56px;
  border-radius: 8px;
  box-shadow: 3px 4px 0 rgba(11, 95, 92, .14);
}

.paper-diagram { margin-top: 34px; }
.paper-diagram .dg-node {
  background: #fff;
  border-radius: 16px;
  transform: rotate(-1.2deg);
  box-shadow: 7px 8px 0 rgba(11, 95, 92, .16);
}
.paper-diagram .dg-node-accent {
  background: var(--pc-accent);
  color: #fff;
  transform: rotate(1.4deg);
}
.paper-diagram .dg-node-accent span { opacity: .9; }
.dg-link-two i { font-style: normal; }
.paper-diagram .dg-link i { color: var(--pc-deep); }
.paper-chip {
  padding: 10px 20px 12px;
  background: #fff;
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 800;
  color: var(--pc-deep);
  box-shadow: 4px 5px 0 rgba(11, 95, 92, .16);
}
.paper-chip:nth-child(odd) { transform: rotate(-2deg); }
.paper-chip:nth-child(even) { transform: rotate(2deg); }

.paper-layers {
  position: relative;
  height: 300px;
}
.paper-layers i {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 72%;
  height: 62%;
  border-radius: 14px;
  background: #fff;
  display: flex;
  align-items: flex-end;
  padding: 14px 18px;
  font-style: normal;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .14em;
  color: var(--pc-deep);
  box-shadow: 6px 7px 0 rgba(11, 95, 92, .14);
}
.paper-layers i:nth-child(1) { transform: translate(-36px, 30px) rotate(-4deg); background: #d9efe2; }
.paper-layers i:nth-child(2) { transform: translate(-12px, 10px) rotate(-1deg); background: #eef8f0; }
.paper-layers i:nth-child(3) { transform: translate(12px, -10px) rotate(2deg); }
.paper-layers i:nth-child(4) { transform: translate(38px, -30px) rotate(5deg); background: #fdf1dd; }
.visual-caption { margin: 18px 0 0; text-align: center; color: var(--muted); font-size: .82rem; }

/* ==========================================================================
   T-RUNTIME — 3D Character Runtime
   앱 챕터의 charcoal 톤과 실제 영상통화 화면의 blue를 연결한다.
   ========================================================================== */
.t-runtime {
  --rt-blue: #6377f2;
  --rt-blue-soft: #9ba8ff;
  --rt-surface: #1b1b20;
  --rt-surface-2: #24252c;
  --rt-muted: #aeb0ba;
  background:
    radial-gradient(circle at 84% 18%, rgba(99, 119, 242, .16), transparent 33%),
    radial-gradient(circle at 18% 88%, rgba(233, 255, 63, .035), transparent 30%),
    #0f0f10;
  color: #f5f5f7;
}
.t-runtime .oval {
  border-color: rgba(255, 255, 255, .72);
  color: #fff;
}
.t-runtime .pageno { color: rgba(255, 255, 255, .44); }
.runtime-stack { padding-top: 0; }
#s12 .runtime-stack { position: relative; top: 32px; }
#s13 .runtime-stack { position: relative; top: -11px; }
.runtime-title {
  position: relative;
  top: -16px;
  margin: 0;
  color: #fff;
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.25;
}
.runtime-lead {
  position: relative;
  top: -16px;
  margin: 12px 0 0;
  color: var(--rt-muted);
  font-size: .86rem;
  line-height: 1.65;
}
.runtime-life-lead {
  position: relative;
  top: -16px;
  margin: 12px 0 0;
  color: var(--rt-muted);
  font-size: .86rem;
  line-height: 1.65;
  text-align: center;
}

/* 11 · 프로젝트 표지 */
.runtime-cover {
  position: relative;
  z-index: 2;
  width: 1180px;
  height: 680px;
  margin: 62px auto 0;
}
.runtime-cover-copy {
  position: absolute;
  left: 0;
  top: 103px;
  width: 544px;
  text-align: left;
}
.runtime-cover-copy h2 {
  margin: 0;
  color: #fff;
  font-size: 4.6rem;
  font-weight: 820;
  letter-spacing: -.055em;
  line-height: 1.18;
}
.runtime-cover-copy h2 em {
  color: var(--rt-blue-soft);
  font-style: normal;
}
.runtime-cover-lead {
  max-width: 544px;
  margin: 20px 0 0;
  color: #c4c6ce;
  font-size: .95rem;
  line-height: 1.75;
}
.runtime-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 54px;
  width: 544px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}
.runtime-meta > div {
  min-width: 0;
}
.runtime-meta .runtime-meta-tech { flex-basis: 100%; }
.runtime-meta span,
.runtime-meta b { display: block; }
.runtime-meta span {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, .5);
  font-size: .62rem;
  font-weight: 820;
  letter-spacing: .15em;
}
.runtime-meta b {
  color: #fff;
  font-size: .8rem;
  font-weight: 720;
  line-height: 1.45;
}
.runtime-meta .tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.runtime-meta .tech-tags i {
  padding: 5px 12px;
  background: rgba(255, 255, 255, .16);
  font-size: .7rem;
}
.runtime-cover-media {
  position: absolute;
  top: -60px;
  right: 35px;
  width: 520px;
  height: 650px;
  overflow: hidden;
}
.runtime-cover-phone {
  position: absolute;
  width: 238px;
  margin: 0;
  padding: 6px;
  border-color: #454754;
  background: #08090c;
  box-shadow: 0 28px 58px rgba(0, 0, 0, .54), 0 0 44px rgba(99, 119, 242, .1);
  transition: none;
}
.runtime-cover-phone[data-position="current"] {
  left: 141px;
  top: 72px;
  z-index: 4;
  transform: rotate(0);
  filter: brightness(1);
  opacity: 1;
}
.runtime-cover-phone[data-position="left"] {
  left: 12px;
  top: 88px;
  z-index: 2;
  transform: rotate(-5deg);
  filter: brightness(.7);
  opacity: 1;
}
.runtime-cover-phone[data-position="right"] {
  left: 270px;
  top: 88px;
  z-index: 2;
  transform: rotate(5deg);
  filter: brightness(.7);
  opacity: 1;
}
.runtime-cover-phone::after {
  content: "";
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 8px;
  width: 66px;
  height: 3px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .9);
  transform: translateX(-50%);
}
.runtime-cover-phone .showcase-call-status { padding: 8px 11px 0; }
.runtime-cover-phone .showcase-call-control {
  width: 38px;
  height: 38px;
}
.runtime-cover-phone .showcase-call-back { left: 12px; top: 34px; }
.runtime-cover-phone .showcase-call-sound { right: 12px; top: 34px; }
.runtime-cover-phone .showcase-call-end {
  bottom: 27px;
  width: 50px;
  height: 50px;
}
/* 12 · 통화 상태 */
.runtime-state-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  width: 1010px;
  margin: 34px auto 0;
}
.runtime-state-grid figure { margin: 0; }
.runtime-state-frame {
  width: 212px;
  margin: 0 auto;
  padding: 6px;
  border-color: #3e404a;
  border-radius: 30px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, .44);
}
.runtime-state-frame img { border-radius: 23px; }
.runtime-state-frame::after {
  content: "";
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 9px;
  width: 60px;
  height: 3px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .86);
  transform: translateX(-50%);
}
.runtime-state-grid figcaption { margin-top: 12px; }
.runtime-state-grid figcaption b,
.runtime-state-grid figcaption span { display: block; }
.runtime-state-grid figcaption b {
  color: #fff;
  font-size: .88rem;
  font-weight: 760;
  letter-spacing: .015em;
}
.runtime-state-grid figcaption span {
  margin-top: 4px;
  color: var(--rt-muted);
  font-size: .72rem;
}

/* 13 · prewarm과 렌더 생명주기 */
.runtime-life-stack { padding-top: 0; }
.runtime-phase-flow {
  display: grid;
  grid-template-columns: 380px 40px 380px 40px 270px;
  align-items: center;
  justify-content: center;
  width: 1110px;
  margin: 48px auto 0;
}
.runtime-phase {
  position: relative;
  min-height: 246px;
  padding: 24px 26px 58px;
  border-radius: 14px;
  text-align: left;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .28);
}
.runtime-phase-idle { background: #202126; }
.runtime-phase-active {
  min-height: 270px;
  background: #596ce0;
  box-shadow: 0 22px 46px rgba(78, 95, 205, .3);
  transform: translateY(-8px);
}
.runtime-phase-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}
.runtime-phase-copy small {
  display: block;
  color: #a9acb7;
  font-size: .64rem;
  font-weight: 820;
  letter-spacing: .08em;
}
.runtime-phase-active .runtime-phase-copy small { color: #e8eaff; }
.runtime-phase h3 {
  margin: 9px 0 0;
  color: #fff;
  font-size: 1.22rem;
  font-weight: 780;
}
.runtime-unity-state {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 72px;
  height: 48px;
  border-radius: 11px;
  background: #32343c;
}
.runtime-unity-state img {
  display: block;
  width: 27px;
  height: 30px;
  object-fit: contain;
  opacity: .62;
}
.runtime-unity-state > i {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #4b4d56;
}
.runtime-unity-paused > i::before,
.runtime-unity-paused > i::after {
  content: "";
  position: absolute;
  top: 5px;
  width: 3px;
  height: 8px;
  border-radius: 1px;
  background: #c6c8d0;
}
.runtime-unity-paused > i::before { left: 5px; }
.runtime-unity-paused > i::after { right: 5px; }
.runtime-unity-running {
  width: 78px;
  height: 52px;
  background: rgba(13, 18, 67, .28);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .14), 0 10px 24px rgba(21, 28, 105, .22);
}
.runtime-unity-running img {
  width: 31px;
  height: 34px;
  opacity: 1;
}
.runtime-unity-running > i { background: #fff; }
.runtime-unity-running > i::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 7px;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #4052c8;
}
.runtime-phase-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin-top: 24px;
}
.runtime-phase-steps span {
  padding: 6px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .08);
  color: #e4e5ea;
  font-size: .62rem;
  font-weight: 680;
  line-height: 1.35;
}
.runtime-phase-active .runtime-phase-steps span {
  background: rgba(9, 14, 52, .2);
  color: #fff;
}
.runtime-phase-steps i {
  color: #878a95;
  font-size: .66rem;
  font-style: normal;
}
.runtime-phase-active .runtime-phase-steps i { color: #e7eaff; }
.runtime-phase p {
  margin: 18px 0 0;
  color: #aeb0ba;
  font-size: .7rem;
  line-height: 1.55;
}
.runtime-phase-active p { color: #eef0ff; }
.runtime-render-state {
  position: absolute;
  right: 22px;
  bottom: 20px;
  padding: 7px 12px;
  border-radius: 6px;
  background: #3b3d45;
  color: #d7d9e0;
  font-size: .66rem;
  font-weight: 760;
}
.runtime-phase-active .runtime-render-state {
  background: #fff;
  color: #303b9a;
}
.runtime-phase-arrow {
  display: grid;
  place-items: center;
  color: #777a86;
  font-size: 1.4rem;
  font-style: normal;
}
.runtime-life-notes {
  display: grid;
  grid-template-columns: 1fr 270px;
  gap: 16px;
  width: 930px;
  margin: 26px auto 0;
}
.runtime-fix-flow {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  align-items: stretch;
  border-radius: 12px;
  overflow: hidden;
  background: #202126;
}
.runtime-fix-flow > div,
.runtime-performance-note {
  min-height: 92px;
  padding: 18px 22px;
  text-align: left;
}
.runtime-fix-flow > i {
  display: grid;
  place-items: center;
  color: var(--rt-blue-soft);
  font-size: 1.05rem;
  font-style: normal;
}
.runtime-fix-flow small,
.runtime-fix-flow b,
.runtime-performance-note small,
.runtime-performance-note b { display: block; }
.runtime-fix-flow small,
.runtime-performance-note small {
  color: var(--rt-blue-soft);
  font-size: .62rem;
  font-weight: 820;
  letter-spacing: .08em;
}
.runtime-fix-flow b,
.runtime-performance-note b {
  margin-top: 8px;
  color: #fff;
  font-size: .8rem;
  font-weight: 680;
  line-height: 1.55;
}
.runtime-performance-note {
  border-radius: 12px;
  background: #2d2f38;
}

/* 13 · 앱 구조와 Unity 실행 흐름 통합 */
.runtime-swimlane {
  position: relative;
  left: 50%;
  width: 1104px;
  margin: 64px 0 0;
  transform: translateX(-50%);
}
.runtime-lane-row,
.runtime-connector-row {
  display: grid;
  grid-template-columns: 170px 1fr;
  align-items: center;
  gap: 18px;
}
.runtime-lane-label {
  display: flex;
  min-height: 0;
  height: 116px;
  padding: 10px 12px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.runtime-lane-label small {
  color: #c0c2cb;
  font-size: .7rem;
  font-weight: 820;
  letter-spacing: .12em;
}
.runtime-lane-label b {
  margin-top: 4px;
  color: #fff;
  font-size: .95rem;
  font-weight: 740;
}
.runtime-lane-label em {
  margin-top: 4px;
  color: #dce0ff;
  font-size: .61rem;
  font-style: normal;
  line-height: 1.3;
}
.runtime-logo-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 34px;
  border-radius: 9px;
  background: transparent;
}
.runtime-logo-slot > img {
  display: block;
  width: 31px;
  height: 31px;
  object-fit: contain;
}
.runtime-lane-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
}
.runtime-lane-copy small { margin-top: 6px; }
.runtime-lane-copy small,
.runtime-lane-copy b { white-space: nowrap; }
.runtime-platform-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.runtime-platform-logos > img { width: 27px; height: 27px; }
.runtime-app-track,
.runtime-bridge-track,
.runtime-connector-track,
.runtime-unity-track {
  display: grid;
  grid-template-columns: 280px 48px 280px 48px 260px;
  align-items: center;
  justify-content: start;
}
.runtime-app-event {
  display: flex;
  min-height: 0;
  height: 116px;
  padding: 12px 18px;
  align-items: center;
  gap: 14px;
  border-radius: 10px;
  background: #292b33;
  text-align: left;
}
.runtime-app-event b { display: block; }
.runtime-app-event > i {
  color: var(--rt-blue-soft);
  font-size: .68rem;
  font-style: normal;
  font-weight: 780;
  letter-spacing: .05em;
}
.runtime-app-event b {
  color: #fff;
  font-size: 1rem;
  font-weight: 760;
}
.runtime-app-track > i,
.runtime-bridge-track > i,
.runtime-stage-arrow {
  display: grid;
  place-items: center;
  color: #777a86;
  font-size: 1.05rem;
  font-style: normal;
}
.runtime-connector-row { min-height: 36px; }
.runtime-connector-row > span { display: block; }
.runtime-connector-track > i {
  position: relative;
  display: block;
  height: 36px;
  color: var(--rt-blue-soft);
  font-size: 0;
  font-style: normal;
}
.runtime-connector-track > i::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 27px;
  background: rgba(155, 168, 255, .5);
}
.runtime-connector-track > i::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid var(--rt-blue-soft);
  border-bottom: 1.5px solid var(--rt-blue-soft);
  transform: translateX(-50%) rotate(45deg);
}
.runtime-connector-track > em { display: block; }
.runtime-bridge-label { background: transparent; }
.runtime-bridge-label .runtime-logo-slot { background: transparent; }
.runtime-bridge-label .runtime-lane-copy small { color: #aeb8ff; }
.runtime-bridge-track { align-items: center; }
.runtime-bridge-event {
  display: flex;
  min-height: 0;
  height: 116px;
  padding: 12px 18px;
  flex-direction: column;
  justify-content: center;
  border-radius: 10px;
  background: #343d70;
  text-align: left;
}
.runtime-bridge-event b,
.runtime-bridge-event span { display: block; }
.runtime-bridge-event b {
  color: #fff;
  font-size: .92rem;
  font-weight: 760;
}
.runtime-bridge-event span {
  margin-top: 5px;
  color: #e0e4ff;
  font-size: .68rem;
}
.runtime-unity-label {
  min-height: 0;
  height: 116px;
  background: transparent;
}
.runtime-unity-label .runtime-logo-slot { background: transparent; }
.runtime-unity-label b { margin-top: 6px; font-size: .9rem; }
.runtime-unity-stage {
  min-height: 0;
  height: 116px;
  padding: 8px 10px;
  border-radius: 12px;
  background: #202126;
  text-align: left;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .24);
}
.runtime-unity-stage > small {
  color: #b9bbc5;
  font-size: .68rem;
  font-weight: 820;
  letter-spacing: .1em;
}
.runtime-unity-render {
  background: #596ce0;
  box-shadow: 0 18px 38px rgba(78, 95, 205, .28);
}
.runtime-unity-render > small { color: #eef0ff; }
.runtime-operation-flow {
  display: grid;
  gap: 2px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}
.runtime-operation-flow > li {
  display: grid;
  grid-template-columns: 22px 76px minmax(0, 1fr);
  min-height: 20px;
  padding: 2px 6px;
  align-items: center;
  border-radius: 7px;
  background: rgba(255, 255, 255, .08);
  text-align: left;
}
.runtime-operation-flow b,
.runtime-operation-flow em { display: block; }
.runtime-operation-flow > li > i {
  color: var(--rt-blue-soft);
  font-size: .65rem;
  font-style: normal;
  font-weight: 760;
}
.runtime-operation-flow b {
  overflow: hidden;
  color: #fff;
  font-size: .75rem;
  font-weight: 740;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.runtime-operation-flow em {
  color: #c0c2ca;
  font-size: .63rem;
  font-style: normal;
  line-height: 1.35;
}
.runtime-operation-flow em small {
  margin-left: 5px;
  color: var(--rt-blue-soft);
  font-size: .52rem;
  font-style: normal;
  white-space: nowrap;
}
.runtime-unity-render .runtime-operation-flow > li { background: rgba(11, 16, 61, .22); }
.runtime-unity-render .runtime-operation-flow em { color: #eef0ff; }

/* 14 · RN / Native / Unity 구조 */
.runtime-structure-stack { padding-top: 42px; }
.runtime-architecture {
  display: grid;
  grid-template-columns: 290px 92px 330px 92px 290px;
  align-items: stretch;
  justify-content: center;
  width: 1120px;
  margin: 68px auto 0;
}
.runtime-arch-card {
  min-height: 300px;
  padding: 30px 26px;
  border-radius: 14px;
  background: var(--rt-surface-2);
  text-align: left;
  box-shadow: 0 20px 42px rgba(0, 0, 0, .28);
}
.runtime-arch-card > small {
  color: var(--rt-blue-soft);
  font-size: .6rem;
  font-weight: 820;
  letter-spacing: .12em;
}
.runtime-arch-card h3 {
  margin: 14px 0 0;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 780;
}
.runtime-arch-native { background: #596ce0; }
.runtime-arch-native > small { color: #e7eaff; }
.runtime-arch-unity { background: #272833; }
.runtime-arch-tags {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 34px;
}
.runtime-arch-tags span {
  padding: 10px 12px;
  border-radius: 7px;
  background: rgba(255, 255, 255, .08);
  color: #dfe1e8;
  font-size: .7rem;
  line-height: 1.25;
}
.runtime-platforms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 34px;
}
.runtime-platforms > div {
  min-height: 122px;
  padding: 15px 12px;
  border-radius: 8px;
  background: rgba(10, 13, 35, .24);
}
.runtime-platforms b,
.runtime-platforms span { display: block; }
.runtime-platforms b { color: #fff; font-size: .76rem; }
.runtime-platforms span {
  margin-top: 10px;
  color: #eef0ff;
  font-size: .62rem;
  line-height: 1.55;
}
.runtime-arch-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 0 7px;
  text-align: center;
}
.runtime-arch-link b,
.runtime-arch-link span {
  color: var(--rt-blue-soft);
  font-size: .62rem;
  font-weight: 720;
  line-height: 1.45;
}
.runtime-arch-link span { color: #c3c5ce; }
.runtime-structure-note {
  display: inline-flex;
  margin: 28px auto 0;
  padding: 10px 18px;
  border-radius: 6px;
  background: #363947;
  color: #fff;
  font-size: .72rem;
  font-weight: 720;
}

/* ==========================================================================
   T-FILM — Film-inspired Games
   ========================================================================== */
.t-film {
  background:
    radial-gradient(circle at 83% 22%, rgba(255, 255, 255, .72), transparent 31%),
    linear-gradient(135deg, #e8ece9 0%, var(--fm-bg) 58%, #d9e0dc 100%);
  color: var(--fm-ink);
}
.t-film .oval {
  border-color: rgba(24, 33, 29, .7);
  color: var(--fm-ink);
}
.t-film .pageno { color: rgba(24, 33, 29, .46); }
.t-film .slide-badge { z-index: 10; }
.film-cover-grid {
  position: relative;
  z-index: 2;
  width: 1180px;
  height: 680px;
  margin: 62px auto 0;
}
.film-cover-copy {
  position: absolute;
  left: 0;
  top: 103px;
  width: 544px;
  text-align: left;
}
.film-title {
  margin: 0;
  color: var(--fm-ink);
  font-size: 4.6rem;
  line-height: 1.18;
  letter-spacing: -.055em;
  font-weight: 820;
}
.film-cover-lead {
  max-width: 544px;
  margin: 20px 0 0;
  color: #59645f;
  font-size: .95rem;
  line-height: 1.75;
}
.film-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 54px;
  width: 544px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(24, 33, 29, .18);
}
.film-meta > div { min-width: 0; }
.film-meta > div:last-child { flex-basis: 100%; }
.film-meta span,
.film-meta b { display: block; }
.film-meta span {
  margin-bottom: 7px;
  color: rgba(24, 33, 29, .48);
  font-size: .62rem;
  font-weight: 820;
  letter-spacing: .15em;
}
.film-meta b {
  color: var(--fm-ink);
  font-size: .8rem;
  font-weight: 720;
  line-height: 1.45;
}
.film-meta .tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.film-meta .tech-tags i {
  padding: 5px 12px;
  border-radius: 6px;
  background: rgba(24, 33, 29, .11);
  color: var(--fm-ink);
  font-size: .7rem;
}
.film-cover-media {
  position: absolute;
  right: -18px;
  top: 22px;
  transform: translateY(-46px) scale(.94);
  transform-origin: center center;
  width: 640px;
  height: 620px;
}
.film-phone {
  overflow: hidden;
  margin: 0;
  padding: 7px;
  border: 1.5px solid #46504b;
  border-radius: 31px;
  background: #070908;
  box-shadow: 0 24px 48px rgba(38, 49, 44, .22);
}
.film-phone img,
.film-phone video {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
}
.film-cover-phone {
  position: absolute;
  width: 258px;
  height: 458px;
}
.film-cover-phone-left {
  left: 0;
  top: 104px;
  transform: rotate(-6deg);
  opacity: .86;
}
.film-cover-phone-main {
  left: 178px;
  top: 12px;
  z-index: 3;
  width: 294px;
  height: 523px;
}
.film-cover-phone-right {
  right: -4px;
  top: 112px;
  transform: rotate(6deg);
  opacity: .9;
}
.film-play-lead {
  position: absolute;
  left: 160px;
  top: 120px;
  width: 1120px;
  margin: 0;
  color: var(--fm-ink);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.025em;
  text-align: center;
}
.film-play-copy {
  position: absolute;
  left: 160px;
  top: 166px;
  width: 1120px;
  margin: 0;
  color: var(--fm-muted);
  font-size: .86rem;
  line-height: 1.65;
  text-align: center;
}
.film-play-grid {
  position: absolute;
  left: 160px;
  top: 234px;
  width: 1120px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 38px;
}
.film-play-item { margin: 0; }
.film-play-phone {
  width: 226px;
  height: 402px;
  margin: 0 auto;
  border-radius: 27px;
}
.film-play-phone img { border-radius: 21px; }
.film-play-phone video { border-radius: 21px; }
.film-play-video {
  object-fit: cover;
}
.film-play-item figcaption {
  width: 236px;
  margin: 18px auto 0;
  text-align: left;
}
.film-play-item b,
.film-play-item span { display: block; }
.film-play-item b { font-size: 1.03rem; }
.film-play-item span {
  margin-top: 6px;
  color: var(--fm-muted);
  font-size: .77rem;
  line-height: 1.45;
}
.film-play-note {
  position: absolute;
  left: 160px;
  top: 713px;
  width: 1120px;
  display: flex;
  gap: 24px;
  align-items: center;
  margin: 0;
  padding-top: 15px;
  border-top: 1px solid rgba(24, 33, 29, .2);
}
.film-play-note b {
  flex: 0 0 auto;
  color: var(--fm-ink);
  font-size: .82rem;
}
.film-play-note span {
  color: var(--fm-muted);
  font-size: .75rem;
  line-height: 1.4;
}

/* 프로젝트 WebGL 실행 링크 — 페이지마다 같은 위치와 크기 사용 */
.webgl-cta {
  position: absolute;
  top: 48px;
  right: var(--gutter);
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 46px;
  border-radius: 50%;
  font-size: .69rem;
  font-weight: 820;
  letter-spacing: .055em;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.webgl-cta:hover { transform: translateY(-2px); }
.webgl-cta-dark {
  background: #fff;
  color: #11131f;
}
.webgl-cta-dark:hover {
  background: var(--px-gold);
  color: #11131f;
}
.webgl-cta-light {
  background: var(--fm-ink);
  color: #fff;
}
.webgl-cta-light:hover { background: #52635b; }

/* 공통 휴대폰 셸 — 화면 비율과 배치만 페이지별로 유지 */
#s05 .appcover-media {
  width: 320px;
}
#s05 .appcover-media > img {
  width: calc(100% + 10px);
  max-width: none;
  margin: -5px;
  aspect-ratio: auto;
  border-radius: 36px;
}
#s07 .sn-cover-device,
#s14 .film-phone,
#s15 .film-phone {
  padding: 7px;
  border: 1px solid #494a50;
  border-radius: 27px;
  background: #050506;
  box-shadow: 0 20px 44px rgba(0, 0, 0, .46);
}
#s07 .sn-cover-device {
  position: absolute;
  width: 287px;
  height: 498px;
}
#s07 .sn-cover-device::before,
#s14 .film-phone::before,
#s15 .film-phone::before {
  top: 11px;
  width: 44px;
  height: 4px;
  background: rgba(0, 0, 0, .72);
}
#s07 .sn-cover-device > img,
#s07 .sn-cover-device > video,
#s14 .film-phone > img,
#s15 .film-phone > img,
#s15 .film-phone > video {
  border-radius: 21px;
}
.t-film-light { background: var(--fm-light); }
.film-h {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -.03em;
}

/* ==========================================================================
   T-WEB — Creverse
   ========================================================================== */
.t-web { background: var(--wb-bg); }
.t-web .slide-badge { border-color: var(--wb-ink); color: var(--wb-ink); }
.t-web .pageno,
.t-web-light .pageno { color: #a5a5a5; }

.t-web-light { background: var(--wb-light); }
.t-web-light .slide-badge { border-color: var(--wb-ink); color: var(--wb-ink); }


.creverse-cover {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 544px 1fr;
  align-items: center;
  gap: 40px;
  width: 1240px;
  height: 680px;
  margin: 62px auto 0;
}
.creverse-cover-copy {
  align-self: start;
  margin-top: 103px;
  color: var(--wb-ink);
}
.creverse-title-row {
  display: block;
}
.creverse-cover-copy h2 {
  margin: 0;
  font-size: 4.6rem;
  line-height: 1.18;
  letter-spacing: -.06em;
  font-weight: 830;
}
.creverse-cover-copy h2 > span { display: block; }
.creverse-name-line {
  display: flex !important;
  align-items: center;
  gap: 15px;
}
.creverse-cover-lead {
  margin: 20px 0 0;
  color: var(--wb-ink);
  font-size: .95rem;
  line-height: 1.75;
  font-weight: 680;
}
.creverse-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 48px;
  width: 430px;
  margin-top: 38px;
  padding-top: 21px;
  border-top: 1px solid var(--wb-line);
}
.creverse-meta > div:last-child { flex-basis: 100%; }
.creverse-meta span,
.creverse-meta b { display: block; }
.creverse-meta span {
  margin-bottom: 7px;
  color: var(--wb-muted);
  font-size: .62rem;
  font-weight: 830;
  letter-spacing: .15em;
}
.creverse-meta b {
  color: var(--wb-ink);
  font-size: .8rem;
  font-weight: 730;
  line-height: 1.4;
}
.creverse-tech { display: flex !important; flex-wrap: wrap; gap: 7px; }
.creverse-tech i {
  padding: 5px 12px;
  font-style: normal;
  border: 0;
  border-radius: 3px;
  background: var(--wb-accent);
  color: var(--wb-ink);
  font-size: .69rem;
}
.creverse-cover-media {
  width: 656px;
  transform: translate(-28px, -65px) scale(.95);
  transform-origin: center center;
}
.creverse-window {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--wb-line);
  border-radius: 4px;
  background: #fff;
}
.creverse-window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 31px;
  padding: 0 13px;
  border-bottom: 1px solid var(--wb-line);
  background: #fafafa;
}
.creverse-window-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dcdcdc;
}
.creverse-window-bar i:first-child { background: var(--wb-accent); }
.creverse-window-bar span {
  overflow: hidden;
  margin-left: 7px;
  color: #9a9a9a;
  font-size: .59rem;
  font-weight: 680;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.creverse-window img {
  display: block;
  width: 100%;
  height: calc(100% - 31px);
  object-fit: cover;
}
.creverse-cover-window {
  width: 738px;
  height: 435px;
  transform: rotate(-1.4deg);
  box-shadow: none;
}
.creverse-cover-window img { object-position: center top; }

.creverse-play {
  position: absolute;
  z-index: 2;
  top: 120px;
  left: var(--gutter);
  right: var(--gutter);
}
.creverse-play > h2 {
  margin: 0;
  color: var(--wb-ink);
  font-size: 1.65rem;
  line-height: 1.25;
  letter-spacing: -.025em;
  font-weight: 700;
  text-align: center;
}
.cvp-lead {
  margin: 12px 0 0;
  color: var(--wb-muted);
  font-size: .86rem;
  line-height: 1.65;
  text-align: center;
}
.creverse-triptych {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 50px;
  border-top: 1px solid var(--wb-line);
  border-bottom: 1px solid var(--wb-line);
}
.creverse-game {
  min-width: 0;
  padding: 24px 22px 25px;
  border-left: 1px solid var(--wb-line);
}
.creverse-game:first-child { border-left: 0; }
#s23 .cvp-spec dt { color: var(--wb-accent); }
.creverse-game .creverse-window {
  width: 100%;
  height: 342px;
  border-radius: 10px;
  box-shadow: 0 13px 28px #f2f2f2;
}
.creverse-triptych-story .creverse-game:nth-child(1) img { object-position: center top; }
.creverse-triptych-story .creverse-game:nth-child(2) img { object-position: 62% top; }
.creverse-triptych-story .creverse-game:nth-child(3) img { object-position: left top; }
.creverse-triptych-puzzle .creverse-game:nth-child(1) img { object-position: center center; }
.creverse-triptych-puzzle .creverse-game:nth-child(2) img { object-position: center center; }
.creverse-triptych-puzzle .creverse-game:nth-child(3) img { object-position: center center; }
.creverse-game-copy {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: baseline;
  margin-top: 18px;
}
.creverse-game-copy em {
  grid-row: 1 / span 2;
  color: var(--wb-accent);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: .68rem;
  font-style: normal;
  font-weight: 760;
  letter-spacing: .06em;
}
.creverse-game-copy h3 {
  margin: 0;
  color: var(--wb-ink);
  font-size: 1.08rem;
  line-height: 1.25;
  letter-spacing: -.02em;
  font-weight: 800;
}
.creverse-game-copy p {
  margin: 9px 0 0;
  color: var(--wb-muted);
  font-size: .8rem;
  line-height: 1.62;
  word-break: keep-all;
}

#s24 .webgl-cta {
  border-color: var(--wb-accent);
  background: var(--wb-accent);
  color: #fff;
}
#s24 .webgl-cta:hover { border-color: var(--wb-ink); background: var(--wb-ink); }
.creverse-hub {
  position: relative;
  z-index: 2;
  width: 1240px;
  margin: 92px auto 0;
}
.creverse-hub-lead {
  margin: 15px 0 0;
  color: rgba(60, 42, 5, .66);
  font-size: .87rem;
  line-height: 1.65;
}
.creverse-hub-layout {
  display: grid;
  grid-template-columns: 920px 1fr;
  align-items: stretch;
  gap: 40px;
  margin-top: 34px;
}
.creverse-hub-window {
  width: 920px;
  height: 322px;
  box-shadow: 0 20px 44px #f2f2f2;
}
.creverse-hub-window img {
  object-fit: cover;
  object-position: center top;
  background: #fff;
}
.creverse-hub-flow {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--wb-line);
}
.creverse-hub-flow > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-content: center;
  flex: 1;
  border-bottom: 1px solid var(--wb-line);
}
.creverse-hub-flow em {
  grid-row: 1 / span 2;
  color: var(--wb-accent);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: .72rem;
  font-style: normal;
  font-weight: 800;
}
.creverse-hub-flow b {
  color: var(--wb-ink);
  font-size: .93rem;
  font-weight: 800;
  letter-spacing: -.015em;
}
.creverse-hub-flow span {
  margin-top: 8px;
  color: rgba(60, 42, 5, .67);
  font-size: .75rem;
  line-height: 1.5;
}
.creverse-hub-flow code {
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  color: var(--wb-ink);
  font-size: .7rem;
}

/* ==========================================================================
   T-ADVENTURE — Odie Odyssey
   ========================================================================== */
.t-adventure { background: linear-gradient(180deg, #081a33 0%, var(--ad-bg) 55%, #123a66 100%); color: #fff; }
.adventure-scape { position: absolute; inset: 0; z-index: 1; }
.mt {
  position: absolute;
  bottom: 0;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: #0a2242;
}
.mt-a { left: -6%; width: 44%; height: 340px; opacity: .9; }
.mt-b { left: 30%; width: 54%; height: 454px; background: #0c2a50; }
.mt-c { right: -8%; width: 40%; height: 275px; background: #0a2242; }
.train {
  position: absolute;
  bottom: 96px;
  left: 8%;
  width: 190px;
  height: 26px;
  border-radius: 6px;
  background: var(--ad-accent);
  box-shadow:
    -46px 0 0 -4px rgba(77, 157, 255, .75),
    -88px 0 0 -8px rgba(77, 157, 255, .5),
    0 34px 0 -14px rgba(0, 0, 0, .35);
  animation: train-move 7s linear infinite;
}
.train::before {
  content: "";
  position: absolute;
  top: -12px;
  right: 10px;
  width: 34px;
  height: 12px;
  border-radius: 4px 4px 0 0;
  background: var(--ad-accent);
}
@keyframes train-move {
  0% { transform: translateX(-140px); }
  100% { transform: translateX(900px); }
}
.adventure-title {
  margin: 0;
  font-size: 5.4rem;
  letter-spacing: -.03em;
  font-weight: 800;
  text-shadow: 0 12px 40px rgba(0, 0, 0, .45);
}
.adventure-sub { color: rgba(255, 255, 255, .75); }

.t-adventure-light { background: var(--ad-light); }
.adventure-h {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: #0e2a4e;
}
.module-map {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
}
.module-core {
  padding: 20px 40px;
  background: var(--ad-bg);
  color: #fff;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 16px 36px rgba(14, 42, 78, .25);
}
.module-core b { font-size: 1.1rem; }
.module-core span { font-size: .82rem; opacity: .85; }
.module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 12px;
  width: 680px;
  max-width: 100%;
}
.module-grid span {
  padding: 12px 10px;
  background: #fff;
  border: 1px solid #d7e3f2;
  border-radius: 12px;
  font-size: .86rem;
  font-weight: 750;
  color: #1d3f6b;
}
.adventure-chip {
  padding: 9px 18px;
  background: #fff;
  border: 1px solid #d7e3f2;
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 750;
  color: #1d3f6b;
}
.adventure-media {
  aspect-ratio: 21 / 9;
  max-width: 760px;
  margin: 8px auto 0;
  border-radius: 14px;
  background: #fff;
  border-color: rgba(14, 42, 78, .35);
}

/* Odie Odyssey — 16–20 -------------------------------------------------- */
.t-odie-cover {
  background:
    linear-gradient(rgba(255, 255, 255, .15), rgba(255, 255, 255, .15)),
    url("assets/odie/cover-train-012.jpg") center / cover no-repeat;
  color: #132c35;
}
.t-odie-cover .slide-badge {
  border-color: rgba(19, 44, 53, .72);
  color: #132c35;
}
.t-odie-cover .pageno { color: rgba(19, 44, 53, .52); }
.t-odie-light {
  --odie-ink: #16343b;
  --odie-muted: #587271;
  --odie-deep: #173f47;
  --odie-mid: #477b72;
  --odie-soft: #d9ebe4;
  --odie-card: #fbfdf9;
  --odie-line: #bed8cf;
  --odie-accent: #bd4036;
  background: #ccffea;
  color: var(--odie-ink);
}
.t-odie-light .slide-badge { border-color: var(--odie-deep); color: var(--odie-deep); }
.t-odie-light .pageno { color: rgba(22, 52, 59, .48); }

.odie-cover-copy {
  position: absolute;
  z-index: 5;
  left: 130px;
  top: 198px;
  width: 544px;
  text-align: left;
}
.odie-cover-copy h2 {
  margin: 0;
  color: #132c35;
  font-size: 4.6rem;
  line-height: 1.18;
  font-weight: 820;
  letter-spacing: -.055em;
}
.odie-cover-sub {
  margin: 24px 0 0;
  color: #176755;
  font-size: 1.22rem;
  line-height: 1.48;
  font-weight: 800;
  letter-spacing: -.025em;
}
.odie-cover-lead {
  margin: 20px 0 0;
  color: #3f5c5e;
  font-size: .95rem;
  line-height: 1.75;
}
.odie-cover-world {
  position: absolute;
  z-index: 3;
  top: 58px;
  right: 185px;
  width: 440px;
  aspect-ratio: 4961 / 7016;
  overflow: visible;
  background: transparent;
  transform: rotate(1.35deg);
}
.odie-cover-poster {
  display: block;
  width: 100%;
  height: 100%;
  border: 5px solid #fff;
  object-fit: contain;
  background: #fff;
  box-shadow: 11px 13px 15px rgba(10, 29, 35, .56);
}
.odie-meta {
  width: 544px;
  max-width: 544px;
  margin-top: 38px;
  border-color: rgba(19, 44, 53, .28);
}
.odie-meta .odie-meta-tech { flex-basis: 100%; }
.odie-meta span { color: rgba(19, 44, 53, .58); opacity: 1; }
.odie-meta b { color: #132c35; }
.odie-meta .tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.odie-meta .tech-tags i {
  padding: 5px 12px;
  border-radius: 6px;
  background: #173f47;
  color: #fff;
  font-size: .7rem;
}

.odie-structure,
.odie-play,
.odie-level,
.odie-player-system,
.odie-world-flow {
  position: absolute;
  left: var(--gutter);
  top: 142px;
  width: 1180px;
}
.odie-structure h2,
.odie-play h2,
.odie-level h2,
.odie-player-system h2,
.odie-world-flow h2 {
  margin: 0;
  color: #15243a;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 820;
  letter-spacing: -.035em;
}
.odie-structure-lead,
.odie-play-lead,
.odie-level-lead,
.odie-player-lead,
.odie-world-lead {
  margin: 14px 0 0;
  color: #627186;
  font-size: .96rem;
  line-height: 1.6;
}
.odie-flow {
  display: grid;
  grid-template-columns: 132px 238px 32px 330px 32px 280px;
  align-items: stretch;
  gap: 12px;
  margin-top: 40px;
}
.odie-flow-world { margin-top: 26px; }
.odie-flow-label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  padding-left: 18px;
  border-left: 5px solid #d5473c;
}
.odie-flow-label b { color: #d5473c; font-size: .76rem; letter-spacing: .12em; }
.odie-flow-label span { font-size: .92rem; font-weight: 800; }
.odie-flow-step {
  min-height: 126px;
  padding: 24px 24px 20px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(38, 59, 84, .1);
}
.odie-flow-player .odie-flow-step-wide { background: #273d54; color: #fff; }
.odie-flow-world .odie-flow-step-wide { background: #3d6972; color: #fff; }
.odie-flow-step i {
  display: block;
  margin-bottom: 10px;
  color: #d5473c;
  font-size: .74rem;
  font-style: normal;
  font-weight: 850;
}
.odie-flow-step b { display: block; font-size: 1.02rem; letter-spacing: -.02em; }
.odie-flow-step span {
  display: block;
  margin-top: 9px;
  color: #6a788a;
  font-size: .78rem;
  line-height: 1.5;
}
.odie-flow-step-wide span { color: rgba(255, 255, 255, .72); }
.odie-flow > em {
  align-self: center;
  color: #8794a3;
  font-size: 1.35rem;
  font-style: normal;
  text-align: center;
}
.odie-flow-divider {
  width: calc(100% - 144px);
  height: 1px;
  margin: 28px 0 0 144px;
  background: #cad5df;
}
.odie-structure-note {
  margin: 34px 0 0 144px;
  color: #40546b;
  font-size: .9rem;
  font-weight: 700;
}

.odie-level { top: 112px; }
.odie-level-maps {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: end;
  gap: 34px;
  margin-top: 30px;
}
.odie-level-map { margin: 0; min-width: 0; }
.odie-level-canvas {
  position: relative;
  height: 390px;
  overflow: clip;
  border-radius: 20px;
  background: #0a1320;
  box-shadow: 0 18px 42px rgba(35, 55, 78, .16);
}
.odie-level-canvas::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: inherit;
  pointer-events: none;
}
.odie-level-canvas img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: .86;
  filter: sepia(.2) hue-rotate(125deg) saturate(.7) brightness(1.18);
}
.odie-level-map-t1 .odie-level-canvas img { transform: scale(.94); }
.odie-level-map figcaption {
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: baseline;
  gap: 16px;
  margin-top: 16px;
}
.odie-level-map figcaption b {
  color: #d5473c;
  font-size: 1rem;
  letter-spacing: -.02em;
}
.odie-level-map figcaption span {
  color: #607084;
  font-size: .82rem;
  line-height: 1.45;
}
.odie-map-callout {
  position: absolute;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(224, 73, 61, .92);
  color: #fff;
  font-size: .7rem;
  line-height: 1;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .22);
}
.odie-map-callout-vertical { left: 19%; top: 23%; }
.odie-map-callout-branch { right: 14%; bottom: 24%; }
.odie-map-callout-route { left: 33%; top: 20%; }
.odie-map-callout-connect { left: 54%; bottom: 22%; }

.odie-level-gate {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 58px;
  margin-top: 20px;
  padding-top: 17px;
  border-top: 1px solid #c9d4dc;
  color: #32485f;
}
.odie-level-gate > b {
  margin-right: 7px;
  color: #d5473c;
  font-size: .8rem;
  letter-spacing: .04em;
}
.odie-level-gate > span { font-size: .83rem; font-weight: 800; }
.odie-level-gate > i { color: #8a98a7; font-style: normal; }
.odie-level-gate > p {
  margin: 0 0 0 auto;
  color: #667487;
  font-size: .76rem;
}

.odie-player-system { top: 118px; }
.odie-player-architecture {
  display: grid;
  grid-template-columns: 220px 34px 270px 34px 1fr;
  align-items: stretch;
  margin-top: 31px;
}
.odie-player-node,
.odie-player-modules {
  min-height: 146px;
  padding: 24px 25px;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 15px 34px rgba(38, 59, 84, .1);
}
.odie-player-core { background: #273d54; color: #fff; }
.odie-player-node em,
.odie-player-modules > em,
.odie-data-title em,
.odie-world-flow section > em {
  display: block;
  margin-bottom: 10px;
  color: #d5473c;
  font-size: .69rem;
  line-height: 1;
  font-style: normal;
  font-weight: 850;
  letter-spacing: .12em;
}
.odie-player-core em { color: #9ddfd1; }
.odie-player-node b { display: block; font-size: 1.05rem; letter-spacing: -.02em; }
.odie-player-node span {
  display: block;
  margin-top: 12px;
  color: #6b7889;
  font-size: .75rem;
  line-height: 1.5;
}
.odie-player-core span { color: rgba(255, 255, 255, .72); }
.odie-architecture-arrow {
  align-self: center;
  color: #8291a1;
  font-size: 1.35rem;
  font-style: normal;
  text-align: center;
}
.odie-player-modules { background: #e4ecef; box-shadow: none; }
.odie-player-modules > div {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.odie-player-modules span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  padding: 9px 5px;
  border-radius: 11px;
  background: #fff;
  color: #2f455c;
  font-size: .72rem;
  font-weight: 820;
  box-shadow: 0 8px 18px rgba(38, 59, 84, .08);
}
.odie-state-priority {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  min-height: 104px;
  margin-top: 22px;
  padding: 21px 24px 42px;
  border-left: 5px solid #d5473c;
  background: rgba(255, 255, 255, .66);
}
.odie-state-priority > b { width: 116px; color: #d5473c; font-size: .82rem; }
.odie-state-priority > span {
  min-width: 76px;
  color: #263c53;
  font-size: .8rem;
  font-weight: 820;
  text-align: center;
}
.odie-state-priority > i { color: #8794a3; font-size: .8rem; font-style: normal; }
.odie-state-priority > p {
  position: absolute;
  left: 160px;
  bottom: 13px;
  margin: 0;
  color: #657386;
  font-size: .72rem;
}
.odie-player-data {
  display: grid;
  grid-template-columns: 235px 34px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  margin-top: 22px;
  padding: 19px 24px 17px;
  border-radius: 15px;
  background: #273d54;
  color: #fff;
}
.odie-data-title em { margin-bottom: 7px; color: #9ddfd1; }
.odie-data-title b { display: block; font-size: .94rem; }
.odie-data-title span { display: block; margin-top: 4px; color: rgba(255,255,255,.64); font-size: .68rem; }
.odie-player-data > i { color: rgba(255,255,255,.5); font-style: normal; text-align: center; }
.odie-data-profiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.odie-data-profiles span {
  padding: 11px 7px;
  border-radius: 9px;
  background: rgba(255,255,255,.1);
  font-size: .68rem;
  font-weight: 750;
  text-align: center;
}
.odie-player-data > p {
  grid-column: 3;
  margin: 9px 0 0;
  color: rgba(255,255,255,.68);
  font-size: .68rem;
}

.odie-world-flow { top: 118px; }
.odie-world-pipeline {
  display: grid;
  grid-template-columns: 1fr 30px 1.08fr 30px 1fr 30px 1fr;
  align-items: stretch;
  margin-top: 31px;
}
.odie-world-pipeline > div {
  min-height: 138px;
  padding: 23px 24px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(38, 59, 84, .1);
}
.odie-world-pipeline > div.is-accent { background: #273d54; color: #fff; }
.odie-world-pipeline > div em { display: block; color: #d5473c; font-size: .72rem; font-style: normal; font-weight: 850; }
.odie-world-pipeline > div.is-accent em { color: #9ddfd1; }
.odie-world-pipeline > div b { display: block; margin-top: 13px; font-size: .98rem; letter-spacing: -.02em; }
.odie-world-pipeline > div span { display: block; margin-top: 10px; color: #687689; font-size: .72rem; line-height: 1.5; }
.odie-world-pipeline > div.is-accent span { color: rgba(255,255,255,.7); }
.odie-world-pipeline > i { align-self: center; color: #8593a2; font-size: 1.25rem; font-style: normal; text-align: center; }
.odie-world-details {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 24px;
  margin-top: 24px;
}
.odie-world-flow section {
  min-height: 158px;
  padding: 22px 25px;
  border-radius: 16px;
  background: rgba(255,255,255,.66);
}
.odie-world-flow section > em { margin-bottom: 8px; }
.odie-world-flow section h3 { margin: 0; color: #263c53; font-size: .96rem; }
.odie-world-policy > div {
  display: grid;
  grid-template-columns: 1fr 130px;
  margin-top: 10px;
  padding-top: 9px;
  border-top: 1px solid #d4dde3;
  font-size: .75rem;
}
.odie-world-policy > div span { color: #587083; font-weight: 750; text-align: right; }
.odie-world-save p { margin: 24px 0 0; color: #55677b; font-size: .8rem; line-height: 1.6; }
.odie-runtime-foundation {
  display: grid;
  grid-template-columns: 150px 1fr 1fr;
  align-items: center;
  gap: 22px;
  min-height: 68px;
  margin-top: 21px;
  padding: 0 25px;
  border-top: 1px solid #becbd4;
  border-bottom: 1px solid #becbd4;
}
.odie-runtime-foundation b { color: #d5473c; font-size: .8rem; }
.odie-runtime-foundation span { color: #4f6276; font-size: .75rem; font-weight: 700; }

.odie-play { top: 108px; }
.odie-play-layout {
  display: grid;
  grid-template-columns: 1.46fr 1fr;
  gap: 32px;
  margin-top: 30px;
}
.odie-play article { min-width: 0; }
.odie-play article h3 {
  margin: 17px 0 0;
  color: #182c45;
  font-size: 1.02rem;
  letter-spacing: -.02em;
}
.odie-play article p {
  margin: 8px 0 0;
  color: #647286;
  font-size: .78rem;
  line-height: 1.58;
}
.odie-scene {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #14243a;
  box-shadow: 0 18px 38px rgba(38, 59, 84, .16);
}
.odie-play-main .odie-scene { height: 410px; }
.odie-scene-field { background: linear-gradient(#91ced6 0 58%, #314858 58%); }
.odie-scene-bg {
  position: absolute;
  left: -18%;
  bottom: 0;
  width: 145%;
  height: 100%;
  object-fit: cover;
  object-position: 76% 100%;
  opacity: .9;
}
.odie-scene-player,
.odie-scene-monster {
  position: absolute;
  bottom: 44px;
  image-rendering: pixelated;
  filter: drop-shadow(0 9px 8px rgba(0, 0, 0, .45));
}
.odie-scene-player { left: 29%; width: 138px; }
.odie-scene-monster { right: 23%; width: 104px; }
.odie-scene-alert {
  position: absolute;
  top: 188px;
  right: 29%;
  color: #f4d239;
  font-size: 2.4rem;
  font-weight: 900;
  text-shadow: 0 3px 0 #493a15;
}
.odie-play-side { display: grid; grid-template-rows: 1fr 1fr; gap: 24px; }
.odie-play-side .odie-scene { height: 166px; }
.odie-scene-dialogue { background: #342d3a; }
.odie-scene-dialogue > img:first-child {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: pixelated;
  opacity: .72;
}
.odie-dialogue-player {
  position: absolute;
  left: 34px;
  bottom: 15px;
  width: 108px;
  image-rendering: pixelated;
}
.odie-dialogue-box {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 250px;
  padding: 13px 16px;
  border-radius: 9px;
  background: rgba(245, 240, 232, .94);
  color: #25354a;
  font-size: .72rem;
  line-height: 1.5;
  font-weight: 750;
}
.odie-scene-minigame { background: #321f22; }
.odie-scene-minigame img {
  position: absolute;
  right: -6px;
  bottom: -22px;
  width: 245px;
  height: 210px;
  object-fit: cover;
  image-rendering: pixelated;
  opacity: .92;
}
.odie-scene-minigame span,
.odie-scene-minigame b {
  position: absolute;
  left: 26px;
  z-index: 2;
}
.odie-scene-minigame span { top: 42px; color: #e7bd55; font-size: .72rem; font-weight: 850; letter-spacing: .13em; }
.odie-scene-minigame b { top: 68px; color: #fff; font-size: 1.38rem; letter-spacing: -.02em; }

/* Odie 본문 팔레트 — 표지의 민트·청록·레드 색감을 추상화 */
.t-odie-light .odie-structure h2,
.t-odie-light .odie-play h2,
.t-odie-light .odie-level h2,
.t-odie-light .odie-player-system h2,
.t-odie-light .odie-world-flow h2,
.t-odie-light .odie-play article h3,
.t-odie-light .odie-world-flow section h3 { color: var(--odie-ink); }
.t-odie-light .odie-structure-lead,
.t-odie-light .odie-play-lead,
.t-odie-light .odie-level-lead,
.t-odie-light .odie-player-lead,
.t-odie-light .odie-world-lead,
.t-odie-light .odie-play article p,
.t-odie-light .odie-player-node span,
.t-odie-light .odie-world-pipeline > div span,
.t-odie-light .odie-level-map figcaption span,
.t-odie-light .odie-level-gate > p { color: var(--odie-muted); }

.t-odie-light .odie-player-node:not(.odie-player-core),
.t-odie-light .odie-world-pipeline > div:not(.is-accent),
.t-odie-light .odie-world-flow section,
.t-odie-light .odie-flow-step {
  background: var(--odie-card);
  box-shadow: 0 14px 34px rgba(28, 73, 68, .09);
}
.t-odie-light .odie-player-core,
.t-odie-light .odie-player-data,
.t-odie-light .odie-world-pipeline > div.is-accent,
.t-odie-light .odie-flow-player .odie-flow-step-wide { background: var(--odie-deep); }
.t-odie-light .odie-flow-world .odie-flow-step-wide { background: var(--odie-mid); }
.t-odie-light .odie-player-modules { background: var(--odie-soft); }
.t-odie-light .odie-player-modules span {
  background: var(--odie-card);
  color: #2c514d;
  box-shadow: 0 8px 18px rgba(28, 73, 68, .07);
}
.t-odie-light .odie-state-priority {
  border-left-color: var(--odie-accent);
  background: rgba(251, 253, 249, .72);
}
.t-odie-light .odie-level-canvas {
  background: #102a31;
  box-shadow: 0 18px 42px rgba(28, 73, 68, .15);
}

.t-odie-light .odie-flow-label { border-left-color: var(--odie-accent); }
.t-odie-light .odie-flow-label b,
.t-odie-light .odie-flow-step i,
.t-odie-light .odie-level-map figcaption b,
.t-odie-light .odie-level-gate > b,
.t-odie-light .odie-player-node em,
.t-odie-light .odie-player-modules > em,
.t-odie-light .odie-data-title em,
.t-odie-light .odie-world-flow section > em,
.t-odie-light .odie-state-priority > b,
.t-odie-light .odie-world-pipeline > div em,
.t-odie-light .odie-runtime-foundation b { color: var(--odie-accent); }
.t-odie-light .odie-player-core em,
.t-odie-light .odie-data-title em,
.t-odie-light .odie-world-pipeline > div.is-accent em { color: #a8ead8; }
.t-odie-light .odie-map-callout { background: rgba(189, 64, 54, .94); }

.t-odie-light .odie-flow-divider,
.t-odie-light .odie-level-gate,
.t-odie-light .odie-runtime-foundation,
.t-odie-light .odie-world-policy > div { border-color: var(--odie-line); }
.t-odie-light .odie-flow-divider { background: var(--odie-line); }
.t-odie-light .odie-architecture-arrow,
.t-odie-light .odie-world-pipeline > i,
.t-odie-light .odie-level-gate > i,
.t-odie-light .odie-state-priority > i { color: #78958f; }
.t-odie-light .odie-state-priority > span,
.t-odie-light .odie-world-policy > div span,
.t-odie-light .odie-world-save p,
.t-odie-light .odie-runtime-foundation span,
.t-odie-light .odie-structure-note { color: #456661; }

/* Odie Odyssey · expanded technical chapter */
.odie-tech-slide {
  position: absolute;
  top: 104px;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 44px;
}
.odie-tech-slide h2 {
  margin: 0;
  color: var(--odie-ink);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -.035em;
}
.odie-tech-lead {
  margin: 12px 0 0;
  color: var(--odie-muted);
  font-size: .88rem;
  line-height: 1.55;
  font-weight: 600;
}
.odie-tech-slide figure { margin: 0; }
.odie-tech-slide img { display: block; max-width: 100%; }
.odie-tech-slide em { font-style: normal; }

.odie-play-expanded {
  display: grid;
  grid-template-columns: 1.58fr .72fr;
  grid-template-rows: auto auto 1fr;
  column-gap: 24px;
}
.odie-play-expanded > h2,
.odie-play-expanded > .odie-tech-lead { grid-column: 1 / -1; }
.odie-play-hero { margin-top: 24px !important; }
.odie-play-hero img,
.odie-play-support img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: transparent;
}
.odie-play-support {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
  align-content: center;
}
.odie-play-expanded figcaption {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-top: 10px;
}
.odie-play-expanded figcaption b { color: var(--odie-ink); font-size: .95rem; }
.odie-play-expanded figcaption span { color: var(--odie-muted); font-size: .72rem; }

/* 17 · Play — 탐색부터 미니게임까지 한 장에서 읽히는 플레이 콜라주 */
#s17 .odie-play-expanded {
  top: 121px;
  display: block;
}
#s17 .odie-play-expanded h2 {
  font-size: 1.65rem;
  line-height: 1.25;
}
#s17 .odie-tech-lead {
  margin-top: 7px;
}
#s17 .odie-play-collage {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
  align-items: start;
}
#s17 .odie-play-tile {
  position: relative;
  min-width: 0;
  min-height: 0;
  align-self: start;
  overflow: hidden;
  background: transparent;
}
#s17 .odie-play-tile:nth-child(-n+3) { grid-column: span 4; }
#s17 .odie-play-tile:nth-child(4) { grid-column: span 5; align-self: end; }
#s17 .odie-play-tile:nth-child(5) { grid-column: span 2; align-self: end; }
#s17 .odie-play-tile:nth-child(6) { grid-column: span 5; }
#s17 .odie-play-tile img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: transparent;
}
#s17 .odie-play-expanded .odie-play-tile figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 9px 11px;
  background: linear-gradient(180deg, transparent, rgba(5,31,38,.86));
  color: #fff;
}
#s17 .odie-play-expanded .odie-play-tile figcaption b {
  color: #fff;
  font-size: .78rem;
  white-space: nowrap;
}
#s17 .odie-play-expanded .odie-play-tile figcaption span {
  overflow: hidden;
  color: rgba(255,255,255,.72);
  font-size: .61rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.odie-ai-visual {
  margin-top: 24px !important;
  height: 278px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #223d55;
  overflow: hidden;
}
.odie-ai-visual img { width: 100%; height: 100%; object-fit: contain; }
.odie-ai-legend {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.odie-ai-legend article {
  min-width: 0;
  padding: 16px 16px 14px;
  background: var(--odie-card);
  border-top: 4px solid var(--odie-deep);
}
.odie-ai-legend em { color: var(--odie-accent); font-size: .72rem; font-weight: 900; }
.odie-ai-legend b { display: inline; margin-left: 8px; color: var(--odie-ink); font-size: .9rem; }
.odie-ai-legend code { display: block; margin-top: 8px; color: var(--odie-mid); font-size: .66rem; font-weight: 800; }
.odie-ai-legend span { display: block; margin-top: 5px; color: var(--odie-muted); font-size: .68rem; line-height: 1.45; }
.odie-ai-flow,
.odie-dialogue-flow,
.odie-minigame-flow,
.odie-map-pipeline,
.odie-combat-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  color: var(--odie-ink);
}
.odie-ai-flow span,
.odie-dialogue-flow span,
.odie-minigame-flow span,
.odie-map-pipeline span,
.odie-combat-flow span {
  padding: 9px 18px;
  background: var(--odie-deep);
  color: #fff;
  font-size: .75rem;
  font-weight: 850;
}
.odie-ai-flow i { color: var(--odie-muted); font-size: .64rem; font-style: normal; font-weight: 750; }

.odie-combat-layout {
  display: grid;
  grid-template-columns: .82fr 1.45fr;
  gap: 34px;
  align-items: center;
  margin-top: 28px;
}
.odie-combat-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 348px;
  background: #223d55;
}
.odie-combat-visual img { width: 100%; height: 100%; object-fit: contain; image-rendering: pixelated; }
.odie-combat-rules { display: grid; gap: 14px; }
.odie-combat-rules article {
  display: grid;
  grid-template-columns: 78px 185px 1fr;
  align-items: center;
  min-height: 82px;
  padding: 0 20px;
  background: var(--odie-card);
  border-left: 5px solid var(--odie-mid);
}
.odie-combat-rules em { color: var(--odie-accent); font-size: .68rem; font-weight: 900; letter-spacing: .09em; }
.odie-combat-rules b { color: var(--odie-ink); font-size: .9rem; }
.odie-combat-rules span { color: var(--odie-muted); font-size: .72rem; line-height: 1.45; }
.odie-combat-flow { margin-top: 22px; }
.odie-combat-flow i,
.odie-dialogue-flow i,
.odie-minigame-flow i,
.odie-map-pipeline i { color: #78958f; font-style: normal; }
.odie-combat-note {
  margin: 13px auto 0;
  color: var(--odie-muted);
  font-size: .72rem;
  text-align: center;
}

.odie-combat-ai-grid {
  display: grid;
  grid-template-columns: 1.62fr .78fr;
  gap: 24px;
  margin-top: 22px;
}
.odie-combat-ai-enemy,
.odie-combat-ai-hit {
  min-width: 0;
}
.odie-combat-ai-sensors,
.odie-combat-ai-hitbox {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 208px;
  background: #223d55;
  overflow: hidden;
}
.odie-combat-ai-sensors img,
.odie-combat-ai-hitbox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.odie-combat-ai-hitbox img { image-rendering: pixelated; }
.odie-combat-ai-sensor-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}
.odie-combat-ai-sensor-list article,
.odie-combat-ai-hit-list article {
  min-width: 0;
  background: var(--odie-card);
}
.odie-combat-ai-sensor-list article {
  display: grid;
  grid-template-columns: 28px 88px 1fr;
  align-items: center;
  min-height: 50px;
  padding: 0 12px;
  border-top: 3px solid var(--odie-deep);
}
.odie-combat-ai-sensor-list em,
.odie-combat-ai-hit-list em {
  color: var(--odie-accent);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .05em;
}
.odie-combat-ai-sensor-list b,
.odie-combat-ai-hit-list b {
  color: var(--odie-ink);
  font-size: .78rem;
}
.odie-combat-ai-sensor-list code {
  color: var(--odie-mid);
  font-size: .61rem;
  font-weight: 800;
}
.odie-combat-ai-hit-list {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}
.odie-combat-ai-hit-list article {
  display: grid;
  grid-template-columns: 52px 116px 1fr;
  align-items: center;
  min-height: 31px;
  padding: 0 12px;
  border-left: 4px solid var(--odie-mid);
}
.odie-combat-ai-hit-list span {
  color: var(--odie-muted);
  font-size: .65rem;
  line-height: 1.35;
}
.odie-combat-ai-flow {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
}
.odie-combat-ai-flow span {
  padding: 10px 18px;
  background: var(--odie-deep);
  color: #fff;
  font-size: .74rem;
  font-weight: 850;
  text-align: center;
}
.odie-combat-ai-flow i {
  position: relative;
  color: var(--odie-muted);
  font-size: .58rem;
  font-style: normal;
  font-weight: 750;
  text-align: center;
}
.odie-combat-ai-flow i::after {
  content: "→";
  display: block;
  margin-top: 2px;
  color: var(--odie-mid);
  font-size: .76rem;
}
.odie-combat-ai-note {
  margin: 10px 0 0;
  color: var(--odie-muted);
  font-size: .7rem;
  line-height: 1.45;
  text-align: center;
}

.odie-combat-diagram {
  position: relative;
  height: 352px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.34), rgba(255,255,255,.12)),
    linear-gradient(90deg, rgba(45,105,99,.08) 0 67%, rgba(38,74,84,.08) 67% 100%);
}
.odie-combat-diagram::after {
  content: "";
  position: absolute;
  left: 50px;
  right: 50px;
  bottom: 60px;
  height: 2px;
  background: rgba(49,89,84,.2);
}
.odie-sensor-field,
.odie-hurt-area,
.odie-hit-area,
.odie-probe {
  position: absolute;
  box-sizing: border-box;
}
.odie-sensor-field {
  border-radius: 18px;
}
.odie-sensor-chase {
  left: 74px;
  top: 94px;
  width: 588px;
  height: 138px;
  border: 2px solid rgba(48,123,111,.72);
  background: rgba(75,155,142,.08);
}
.odie-sensor-detect {
  left: 222px;
  top: 119px;
  width: 304px;
  height: 92px;
  border: 3px solid rgba(218,83,96,.8);
  background: rgba(218,83,96,.08);
}
.odie-probe {
  height: 3px;
  border-radius: 999px;
  transform-origin: left center;
}
.odie-attack-probe {
  left: 450px;
  top: 165px;
  width: 310px;
  background: #3ca77e;
}
.odie-attack-probe::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -5px;
  width: 10px;
  height: 10px;
  border-top: 3px solid #3ca77e;
  border-right: 3px solid #3ca77e;
  transform: rotate(45deg);
}
.odie-ground-probe {
  left: 431px;
  top: 212px;
  width: 116px;
  background: #d95360;
  transform: rotate(27deg);
}
.odie-combat-character {
  position: absolute;
  z-index: 4;
  object-fit: contain;
  image-rendering: pixelated;
}
.odie-combat-toad {
  left: 335px;
  top: 111px;
  width: 136px;
  height: 136px;
}
.odie-combat-odie {
  right: 238px;
  top: 88px;
  width: 168px;
  height: 168px;
}
.odie-hurt-area {
  z-index: 2;
  right: 273px;
  top: 105px;
  width: 98px;
  height: 132px;
  border: 3px solid rgba(58,115,181,.85);
  border-radius: 26px;
  background: rgba(58,115,181,.07);
}
.odie-hit-area {
  z-index: 3;
  right: 361px;
  top: 153px;
  width: 116px;
  height: 58px;
  border: 3px solid rgba(218,83,96,.9);
  border-radius: 16px;
  background: rgba(218,83,96,.08);
}
/* Combat AI — 실제 Collider/Sensor 배치 기준 */
.odie-combat-diagram {
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.26), rgba(255,255,255,.1)),
    linear-gradient(90deg, rgba(45,105,99,.045) 0 64%, rgba(38,74,84,.045) 64% 100%);
}
.odie-combat-diagram::after { display: none; }
.odie-sensor-field,
.odie-hurt-area,
.odie-hit-area {
  border-radius: 0;
  background: transparent;
}
.odie-sensor-chase,
.odie-sensor-detect,
.odie-hurt-area,
.odie-hit-area {
  box-shadow: none;
}
.odie-sensor-chase {
  left: 22px;
  top: 54px;
  width: 650px;
  height: 180px;
  border: 1.6px solid #5c7f79;
}
.odie-sensor-detect {
  z-index: 5;
  left: 360px;
  top: 72px;
  width: 250px;
  height: 145px;
  border: 1.6px solid #bd4036;
}
.odie-combat-toad {
  left: 315px;
  top: 75px;
  width: 155px;
  height: 155px;
}
.odie-probe {
  border-radius: 0;
  transform: none;
}
.odie-attack-probe {
  left: 470px;
  top: 144px;
  width: 126px;
  height: 2px;
  background: #266a85;
}
.odie-attack-probe::after { display: none; }
.odie-ground-probe {
  z-index: 5;
  left: 486px;
  top: 205px;
  width: 2px;
  height: 82px;
  background: #266a85;
}
.odie-ground-probe::before {
  content: "";
  position: absolute;
  left: -5px;
  top: -5px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #266a85;
}
.odie-combat-odie {
  right: 160px;
  top: 58px;
  width: 180px;
  height: 180px;
}
.odie-hurt-area {
  z-index: 5;
  right: 207px;
  top: 82px;
  width: 92px;
  height: 148px;
  border: 1.6px solid #1f7a5a;
}
.odie-hit-area {
  z-index: 5;
  right: 55px;
  top: 89px;
  width: 125px;
  height: 142px;
  border: 1.6px dashed #1f7a5a;
}
.odie-dialogue-gallery,
.odie-minigame-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px;
}
.odie-dialogue-gallery figure,
.odie-minigame-gallery figure { min-width: 0; }
.odie-dialogue-gallery img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: transparent;
}
.odie-minigame-gallery {
  grid-template-columns: .78fr 1.22fr;
  align-items: end;
}
.odie-minigame-gallery figure {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.odie-minigame-gallery img {
  width: 100%;
  height: 342px;
  object-fit: contain;
  background: transparent;
}
.odie-dialogue-gallery figcaption,
.odie-minigame-gallery figcaption {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 11px 3px 0;
}
.odie-dialogue-gallery figcaption b,
.odie-minigame-gallery figcaption b { color: var(--odie-ink); font-size: .94rem; }
.odie-dialogue-gallery figcaption span,
.odie-minigame-gallery figcaption span { color: var(--odie-muted); font-size: .72rem; }
.odie-dialogue-flow,
.odie-minigame-flow { margin-top: 22px; }

.odie-map-build {
  display: grid;
  grid-template-columns: .84fr 1.36fr;
  grid-template-rows: auto auto 1fr auto;
  column-gap: 28px;
}
.odie-map-build > h2,
.odie-map-build > .odie-tech-lead { grid-column: 1 / -1; }
.odie-tiled-visual { margin-top: 22px !important; min-width: 0; }
.odie-tiled-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: transparent;
}
.odie-tiled-visual figcaption,
.odie-map-runtime figcaption {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-top: 9px;
  color: var(--odie-muted);
  font-size: .69rem;
}
.odie-tiled-visual figcaption b { color: var(--odie-ink); font-size: .88rem; }
.odie-map-runtime {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-self: center;
  margin-top: 22px;
}
.odie-map-runtime img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: transparent;
}
.odie-map-pipeline { grid-column: 1 / -1; margin-top: 12px; }

.odie-scene-pipeline,
.odie-audio-pipeline,
.odie-address-flow,
.odie-pool-cycle {
  display: grid;
  grid-template-columns: 1fr 32px 1fr 32px 1fr 32px 1fr;
  align-items: stretch;
  gap: 8px;
  margin-top: 34px;
}
.odie-scene-pipeline > i,
.odie-audio-pipeline > i,
.odie-address-flow > i,
.odie-pool-cycle > i {
  align-self: center;
  color: #78958f;
  font-size: 1.1rem;
  font-style: normal;
  text-align: center;
}
.odie-scene-pipeline article,
.odie-audio-pipeline article,
.odie-address-flow article,
.odie-pool-cycle article {
  min-height: 182px;
  padding: 24px 20px;
  background: var(--odie-card);
  border-top: 5px solid var(--odie-mid);
}
.odie-scene-pipeline article.is-accent,
.odie-audio-pipeline article.is-accent,
.odie-address-flow article.is-accent,
.odie-pool-cycle article.is-accent { background: var(--odie-deep); color: #fff; border-color: var(--odie-accent); }
.odie-scene-pipeline em,
.odie-audio-pipeline em,
.odie-address-flow em,
.odie-pool-cycle em { display: block; color: var(--odie-accent); font-size: .69rem; font-weight: 900; letter-spacing: .08em; }
.odie-scene-pipeline article.is-accent em,
.odie-audio-pipeline article.is-accent em,
.odie-address-flow article.is-accent em,
.odie-pool-cycle article.is-accent em { color: #a8ead8; }
.odie-scene-pipeline b,
.odie-audio-pipeline b,
.odie-address-flow b,
.odie-pool-cycle b { display: block; margin-top: 13px; font-size: .96rem; }
.odie-scene-pipeline span,
.odie-audio-pipeline span,
.odie-address-flow span,
.odie-pool-cycle span { display: block; margin-top: 10px; color: var(--odie-muted); font-size: .7rem; line-height: 1.55; }
.odie-scene-pipeline article.is-accent span,
.odie-audio-pipeline article.is-accent span,
.odie-address-flow article.is-accent span,
.odie-pool-cycle article.is-accent span { color: rgba(255,255,255,.72); }
.odie-scene-branches,
.odie-audio-cases,
.odie-address-examples,
.odie-pool-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.odie-scene-branches section,
.odie-audio-cases section,
.odie-address-examples section,
.odie-pool-details section {
  min-height: 174px;
  padding: 24px 22px;
  background: var(--odie-soft);
}

/* Odie 본문 타이틀 체계 — 09 Web & App 기준 */
.odie-tech-slide,
.odie-player-system,
.odie-level {
  top: 120px;
}
.odie-tech-slide h2,
.odie-player-system h2,
.odie-level h2 {
  font-size: 1.65rem;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -.025em;
  text-align: center;
}
.odie-tech-lead,
.odie-player-lead,
.odie-level-lead {
  margin-top: 12px;
  font-size: .86rem;
  line-height: 1.65;
  font-weight: 400;
  text-align: center;
}
.odie-play-hero,
.odie-combat-diagram,
.odie-dialogue-gallery,
.odie-minigame-gallery,
.odie-player-architecture,
.odie-level-maps,
.odie-tiled-visual,
.odie-map-runtime,
.odie-scene-pipeline,
.odie-save-core,
.odie-audio-pipeline,
.odie-address-flow,
.odie-pool-cycle {
  margin-top: 55px !important;
}
.odie-map-build {
  grid-template-columns: .72fr 1.48fr;
}
.odie-scene-branches em,
.odie-audio-cases em,
.odie-address-examples em,
.odie-pool-details em { color: var(--odie-accent); font-size: .66rem; font-weight: 900; letter-spacing: .1em; }
.odie-scene-branches b,
.odie-audio-cases b,
.odie-address-examples b,
.odie-pool-details b { display: block; margin-top: 10px; color: var(--odie-ink); font-size: .9rem; }
.odie-scene-branches span,
.odie-audio-cases span,
.odie-address-examples span,
.odie-pool-details span { display: block; margin-top: 9px; color: var(--odie-muted); font-size: .7rem; line-height: 1.5; }

.odie-save-core {
  display: grid;
  grid-template-columns: 100px 1.1fr .8fr 32px 1fr 32px 1.15fr;
  align-items: center;
  margin-top: 34px;
  padding: 28px 26px;
  background: var(--odie-deep);
  color: #fff;
}
.odie-save-core em { color: #a8ead8; font-size: .66rem; font-weight: 900; letter-spacing: .08em; }
.odie-save-core b { font-size: .9rem; }
.odie-save-core strong { font-size: 1.08rem; text-align: center; }
.odie-save-core span { color: rgba(255,255,255,.76); font-size: .76rem; text-align: center; }
.odie-save-core i { color: rgba(255,255,255,.5); font-style: normal; text-align: center; }

/* 17 · Play — 원본 비율을 유지하는 두 개의 이미지 행 */
#s17 .odie-play-collage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 846px;
  margin: 30px auto 0;
}
#s17 .odie-play-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 20px;
  min-width: 0;
}
#s17 .odie-play-row-primary {
  height: auto;
  margin: 0;
}
#s17 .odie-play-row-secondary {
  height: auto;
  margin: 0;
}
#s17 .odie-play-row .odie-play-tile {
  grid-column: auto;
  height: auto;
  align-self: stretch;
  display: grid;
  grid-template-rows: auto auto;
  overflow: visible;
}
#s17 .odie-play-row .odie-play-tile img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: initial;
  background: transparent;
  border-radius: 12px;
  border: 1px solid var(--odie-line);
  box-shadow: 0 10px 26px rgba(22, 52, 59, .11);
}
#s17 .odie-play-expanded .odie-play-tile figcaption {
  position: static;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 2px 0;
  background: transparent;
  color: var(--odie-ink);
  white-space: nowrap;
}
#s17 .odie-play-expanded .odie-play-tile figcaption b {
  display: inline;
  color: var(--odie-ink);
  font-size: .88rem;
  font-weight: 760;
}
#s17 .odie-play-expanded .odie-play-tile figcaption span {
  display: inline;
  margin-top: 0;
  color: var(--odie-muted);
  font-size: .72rem;
  line-height: 1.4;
}

/* 18 · Combat AI — 기즈모 다이어그램 + 10p 시퀀스 톤의 콜라이더 레인 */
#s19 .odie-combat-diagram {
  height: 296px;
  margin-top: 17px !important;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}
/* 캐릭터 발이 닿는 지면선 — GroundAheadProbe가 지면을 넘어 뻗는 게 읽히도록 */
#s19 .odie-combat-diagram::after {
  display: block;
  left: 0;
  right: 0;
  top: 230px;
  bottom: auto;
  height: 1px;
  background: rgba(35,80,72,.16);
}

#s19 .odie-combat-captions {
  display: grid;
  grid-template-columns: 747fr 393fr;
  gap: 40px;
  margin-top: 20px;
}
#s19 .collider-lane {
  padding: 30px 26px;
  border-radius: 12px;
  background: rgba(23,63,71,.05);
}
#s19 .lane-tag { line-height: 1.4; }
#s19 .lane-tag b {
  display: block;
  color: var(--odie-ink);
  font-size: .9rem;
  font-weight: 800;
}
#s19 .lane-tag span {
  display: block;
  margin-top: 3px;
  color: var(--odie-muted);
  font-size: .68rem;
}
#s19 .lane-chips {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
  margin-top: 16px;
}
#s19 .collider-lane:last-child .lane-chips { grid-template-columns: repeat(2, minmax(0,1fr)); }
#s19 .cchip span {
  display: flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 7px;
  background: rgba(23,63,71,.12);
  color: var(--odie-ink);
  font-size: .74rem;
  font-weight: 750;
  white-space: nowrap;
}
#s19 .cchip em {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding-left: 2px;
  color: var(--odie-muted);
  font-size: .68rem;
  font-style: normal;
  line-height: 1.35;
}
/* 칩 안의 기호 — 다이어그램 도형을 그대로 축소해 대응시킨다 */
#s19 .gz {
  width: 14px;
  flex: none;
}
#s19 .gz-box {
  height: 10px;
  border: 1.5px solid var(--c);
}
#s19 .gz-box.gz-dash { border-style: dashed; }
#s19 .gz-ray {
  height: 2px;
  background: var(--c);
}
#s19 .gz-ray.gz-ray-v {
  height: 12px;
  background: linear-gradient(var(--c), var(--c)) no-repeat center / 2px 100%;
}

/* 23 · Resource Lifecycle — Addressables와 Pool의 단일 생명주기 */
.odie-resource-map {
  position: relative;
  height: 372px;
  margin-top: 55px;
}
.odie-resource-stage {
  position: absolute;
  top: 0;
  width: 220px;
  min-height: 112px;
  padding: 20px 22px;
  background: var(--odie-card);
  box-shadow: 0 12px 28px rgba(28,73,68,.08);
}
.odie-resource-stage:nth-of-type(1) { left: 82px; }
.odie-resource-stage:nth-of-type(2) { left: 380px; }
.odie-resource-stage:nth-of-type(3) { left: 678px; width: 268px; }
.odie-resource-stage em {
  display: block;
  color: var(--odie-accent);
  font-size: .65rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .09em;
}
.odie-resource-stage b { display: block; margin-top: 12px; color: var(--odie-ink); font-size: .94rem; }
.odie-resource-stage span { display: block; margin-top: 8px; color: var(--odie-muted); font-size: .68rem; line-height: 1.45; }
.odie-resource-stage.is-cache { background: var(--odie-deep); }
.odie-resource-stage.is-cache em { color: #a8ead8; }
.odie-resource-stage.is-cache b { color: #fff; }
.odie-resource-stage.is-cache span { color: rgba(255,255,255,.68); }
.odie-resource-arrow {
  position: absolute;
  top: 55px;
  color: #78958f;
  font-size: 1.1rem;
  font-style: normal;
}
.odie-resource-arrow:nth-of-type(1) { left: 332px; }
.odie-resource-arrow:nth-of-type(2) { left: 630px; }
.odie-resource-fork {
  position: absolute;
  left: 306px;
  right: 171px;
  top: 154px;
  height: 37px;
  border-top: 1px solid #78958f;
}
.odie-resource-fork::before,
.odie-resource-fork::after {
  position: absolute;
  top: -1px;
  width: 1px;
  height: 38px;
  content: "";
  background: #78958f;
}
.odie-resource-fork::before { left: 0; }
.odie-resource-fork::after { right: 0; }
.odie-resource-fork > i {
  position: absolute;
  left: 72%;
  bottom: 100%;
  width: 1px;
  height: 22px;
  background: #78958f;
}
.odie-resource-branch {
  position: absolute;
  top: 190px;
  min-height: 128px;
  padding: 18px 20px;
  background: var(--odie-soft);
}
.branch-release { left: 80px; width: 460px; }
.branch-pool { right: 80px; width: 550px; background: rgba(251,253,249,.76); }
.odie-resource-branch small {
  display: block;
  margin-bottom: 14px;
  color: var(--odie-accent);
  font-size: .63rem;
  font-weight: 900;
  letter-spacing: .09em;
}
.odie-resource-branch > div { display: inline-flex; width: 176px; flex-direction: column; }
.branch-pool > div { width: 128px; }
.odie-resource-branch > div b { color: var(--odie-ink); font-size: .8rem; }
.odie-resource-branch > div span { margin-top: 5px; color: var(--odie-muted); font-size: .65rem; }
.odie-resource-branch > div.is-end b { color: var(--odie-accent); }
.odie-resource-branch > i {
  display: inline-block;
  width: 34px;
  color: #78958f;
  font-size: .85rem;
  font-style: normal;
  text-align: center;
}
.odie-pool-return { color: var(--odie-accent) !important; font-size: 1.05rem !important; }
.odie-resource-targets {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 8px 0 0;
  color: var(--odie-muted);
  font-size: .7rem;
}
.odie-resource-targets b { color: var(--odie-ink); }
.odie-save-groups {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 26px;
}
.odie-save-groups article { min-height: 224px; padding: 25px 22px; background: var(--odie-card); border-top: 5px solid var(--odie-mid); }
.odie-save-groups em { color: var(--odie-accent); font-size: .68rem; font-weight: 900; letter-spacing: .1em; }
.odie-save-groups b { display: block; margin-top: 16px; color: var(--odie-ink); font-size: .94rem; }
.odie-save-groups span { display: block; margin-top: 12px; color: var(--odie-muted); font-size: .73rem; line-height: 1.6; }
.odie-save-note,
.odie-audio-note {
  margin: 25px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--odie-line);
  color: var(--odie-muted);
  font-size: .78rem;
  font-weight: 700;
}
.odie-audio-cases section.is-accent { background: var(--odie-mid); }
.odie-audio-cases section.is-accent em { color: #e7fff6; }
.odie-audio-cases section.is-accent b { color: #fff; }
.odie-audio-cases section.is-accent span { color: rgba(255,255,255,.78); }

/* 20–22 · Odie 시스템 페이지 공통 위계 */
#s20 .odie-map-runtime figcaption {
  font-size: .73rem;
}
#s20 .odie-map-pipeline {
  position: relative;
  top: -14px;
  gap: 13px;
  margin-top: 18px;
}
#s20 .odie-map-pipeline span {
  padding: 0;
  background: transparent;
  color: var(--odie-ink);
  font-size: .72rem;
  font-weight: 800;
}
#s20 .odie-map-pipeline i {
  color: var(--odie-accent);
  font-size: 1.05rem;
  font-weight: 900;
}

#s21 .odie-scene-pipeline,
#s21 .odie-audio-pipeline {
  grid-template-columns: 1fr 28px 1fr 28px 1fr 28px 1fr;
  margin-top: 54px !important;
}
#s21 .odie-scene-pipeline > i,
#s21 .odie-audio-pipeline > i {
  color: var(--odie-accent);
  font-size: 1.28rem;
  font-weight: 900;
}
#s21 .odie-scene-pipeline article,
#s21 .odie-audio-pipeline article {
  min-height: 162px;
  padding: 21px 20px;
  border-top: 0;
  box-shadow: 0 10px 24px rgba(28,73,68,.06);
}
#s21 .odie-scene-pipeline article.is-accent,
#s21 .odie-audio-pipeline article.is-accent {
  border-color: transparent;
}
#s21 .odie-scene-pipeline article:not(.is-accent) em,
#s21 .odie-audio-pipeline article:not(.is-accent) em {
  color: var(--odie-ink);
  opacity: .64;
}
#s21 .odie-scene-branches,
#s21 .odie-audio-cases {
  gap: 0;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(25,65,62,.18);
}
#s21 .odie-scene-branches section,
#s21 .odie-audio-cases section,
#s21 .odie-audio-cases section.is-accent {
  min-height: 0;
  padding: 6px 20px 10px;
  background: transparent;
  border-left: 1px solid rgba(25,65,62,.18);
}
#s21 .odie-scene-branches section:first-child,
#s21 .odie-audio-cases section:first-child {
  padding-left: 0;
  border-left: 0;
}
#s21 .odie-scene-branches em,
#s21 .odie-audio-cases em,
#s21 .odie-audio-cases section.is-accent em {
  color: var(--odie-ink);
  opacity: .62;
}
#s21 .odie-audio-cases section.is-accent b {
  color: var(--odie-ink);
}
#s21 .odie-audio-cases section.is-accent span {
  color: var(--odie-muted);
}
#s21 .odie-scene-branches b,
#s21 .odie-audio-cases b {
  margin-top: 8px;
}
#s21 .odie-scene-branches span,
#s21 .odie-audio-cases span {
  margin-top: 7px;
}

/* 22 · Audio — 입력과 판정 결과가 갈라지는 중앙 제어형 구조 */
#s21 .odie-audio-logic {
  display: grid;
  grid-template-columns: .9fr 36px 1.04fr 36px 1.08fr;
  gap: 14px;
  align-items: stretch;
  margin-top: 55px;
}
#s21 .odie-audio-sources,
#s21 .odie-audio-results,
#s21 .odie-audio-arrows {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 12px;
}
#s21 .odie-audio-sources article,
#s21 .odie-audio-results section {
  min-height: 76px;
  padding: 13px 17px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 8px 20px rgba(28,73,68,.05);
}
#s21 .odie-audio-sources em,
#s21 .odie-audio-results em,
#s21 .odie-audio-control em {
  display: block;
  color: var(--odie-ink);
  font-size: .61rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .08em;
  opacity: .64;
}
#s21 .odie-audio-sources b,
#s21 .odie-audio-results b,
#s21 .odie-audio-control b {
  display: block;
  margin-top: 7px;
  color: var(--odie-ink);
  font-size: .84rem;
}
#s21 .odie-audio-sources span,
#s21 .odie-audio-results span,
#s21 .odie-audio-control span {
  display: block;
  margin-top: 5px;
  color: var(--odie-muted);
  font-size: .65rem;
  line-height: 1.4;
}
#s21 .odie-audio-arrows i {
  align-self: center;
  color: var(--odie-accent);
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 900;
  text-align: center;
}
#s21 .odie-audio-control {
  align-self: center;
  min-height: 176px;
  padding: 34px 24px;
  background: var(--odie-deep);
  box-shadow: 0 14px 30px rgba(28,73,68,.12);
}
#s21 .odie-audio-control em { color: #a8ead8; opacity: 1; }
#s21 .odie-audio-control b { color: #fff; font-size: 1rem; }
#s21 .odie-audio-control span { margin-top: 10px; color: rgba(255,255,255,.7); }

/* 23 · Resource — 캐시 이후 두 생명주기의 분기 */
#s22 .odie-resource-stage:not(.is-cache) em,
#s22 .odie-resource-branch small {
  color: var(--odie-ink);
  opacity: .64;
}
#s22 .odie-resource-arrow {
  color: var(--odie-accent);
  font-size: 1.25rem;
  font-weight: 900;
}
#s22 .odie-resource-fork {
  border-color: rgba(25,65,62,.55);
  border-top-width: 2px;
}
#s22 .odie-resource-fork::before,
#s22 .odie-resource-fork::after,
#s22 .odie-resource-fork > i {
  width: 2px;
  background: rgba(25,65,62,.55);
}
#s22 .odie-resource-branch,
#s22 .branch-pool {
  background: rgba(255,255,255,.88);
  box-shadow: 0 10px 24px rgba(28,73,68,.06);
}
#s22 .odie-resource-branch > div.is-end b {
  color: var(--odie-ink);
}
#s22 .odie-resource-branch > i {
  color: var(--odie-accent);
  font-size: 1rem;
  font-weight: 900;
}

/* ==========================================================================
   T-COZY — 우리집 행복한 고양이
   ========================================================================== */
.t-cozy { background: var(--cz-bg); }
.cozy-title {
  margin: 0;
  font-size: 5rem;
  line-height: 1.16;
  letter-spacing: -.04em;
  font-weight: 800;
  color: var(--cz-deep);
}
.cozy-sub { color: #47694f; font-weight: 650; }
.cozy-cat { position: absolute; right: 12%; bottom: 14%; width: 180px; height: 150px; z-index: 2; }
.cozy-cat i { position: absolute; background: var(--cz-deep); }
.cat-face {
  inset: auto 0 0;
  height: 110px;
  border-radius: 52px 52px 46px 46px;
}
.cat-ear-l, .cat-ear-r {
  top: 12px;
  width: 0; height: 0;
  background: transparent;
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-bottom: 36px solid var(--cz-deep);
}
.cat-ear-l { left: 16px; }
.cat-ear-r { right: 16px; }
.cat-tail {
  right: -34px;
  bottom: 8px;
  width: 54px;
  height: 16px;
  border-radius: 999px;
  transform-origin: left center;
  animation: tail-wag 2.6s ease-in-out infinite;
}
@keyframes tail-wag { 50% { transform: rotate(-24deg); } }
.cozy-cat::after {
  content: "";
  position: absolute;
  inset: auto 0 34px;
  margin: auto;
  width: 74px;
  height: 30px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 40%, #fff 4px, transparent 5px),
              radial-gradient(circle at 70% 40%, #fff 4px, transparent 5px);
}

.t-cozy-light { background: var(--cz-light); }
.cozy-h {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--cz-deep);
}
.launch-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.step {
  position: relative;
  padding: 24px 16px 20px;
  background: #fff;
  border: 1px solid #d9e6d6;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.step i {
  font-style: normal;
  width: 30px;
  height: 30px;
  margin: 0 auto 6px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cz-bg);
  color: var(--cz-deep);
  font-size: .8rem;
  font-weight: 850;
}
.step b { font-size: .98rem; color: var(--cz-deep); }
.step span { color: var(--muted); font-size: .78rem; line-height: 1.55; }
.step-accent { background: var(--cz-deep); border-color: var(--cz-deep); }
.step-accent i { background: rgba(255, 255, 255, .16); color: #fff; }
.step-accent b { color: #fff; }
.step-accent span { color: rgba(255, 255, 255, .75); }

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   19 · Architecture — 18p 박스 규칙(틴트 면 · 라운드 12 · 칩 7)을 그대로 사용
   ========================================================================== */
#s18 .odie-arch19 {
  position: absolute;
  top: 120px;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 44px;
}
#s18 .odie-arch19 h2 {
  margin: 0;
  color: var(--odie-ink);
  font-size: 1.65rem;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -.025em;
  text-align: center;
}
#s18 .odie-arch19-lead {
  margin: 12px 0 0;
  color: var(--odie-muted);
  font-size: .86rem;
  line-height: 1.65;
  text-align: center;
}
#s18 .arch19-map { margin-top: 27px; }

/* 레인은 공통 컬럼 기준을 써서 두 주체의 세 단계가 세로로 맞물린다 */
#s18 .arch19-lane {
  display: grid;
  grid-template-columns: 104px 236px 44px 252px 44px minmax(0, 1fr);
  align-items: center;
  min-height: 142px;
}
#s18 .arch19-lane + .arch19-lane { margin-top: 14px; }

/* 스프라이트는 18p의 박스 비율(180 : 155)을 유지하고 바닥선을 맞춘다 */
#s18 .arch19-actor { text-align: center; }
#s18 .arch19-actor img {
  display: block;
  width: 76px;
  height: 76px;
  margin: 0 auto;
  object-fit: contain;
  object-position: bottom;
  image-rendering: pixelated;
}
#s18 .arch19-actor img.is-monster { width: 65px; }
#s18 .arch19-actor b {
  display: block;
  margin-top: 10px;
  color: var(--odie-ink);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .1em;
  opacity: .6;
}

/* 면 — 18p .collider-lane과 같은 틴트·라운드. 흰색과 그림자를 쓰지 않는다 */
#s18 .arch19-node,
#s18 .arch19-mods,
#s18 .arch19-data > div {
  min-height: 116px;
  padding: 20px 22px;
  border-radius: 12px;
  background: var(--odie-surface);
}
#s18 .arch19-node.is-core { background: var(--odie-deep); }

#s18 .arch19-node small,
#s18 .arch19-mods > small,
#s18 .arch19-data small {
  display: block;
  color: var(--odie-ink);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .1em;
  opacity: .55;
}
#s18 .arch19-node.is-core small { color: #a8ead8; opacity: .95; }
#s18 .arch19-node b,
#s18 .arch19-data b {
  display: block;
  margin-top: 11px;
  color: var(--odie-ink);
  font-size: .9rem;
  font-weight: 800;
}
#s18 .arch19-node.is-core b { color: #fff; }
#s18 .arch19-node span,
#s18 .arch19-data span {
  display: block;
  margin-top: 8px;
  color: var(--odie-muted);
  font-size: .68rem;
  line-height: 1.45;
}
#s18 .arch19-node.is-core span { color: rgba(255, 255, 255, .7); }

#s18 .arch19-arrow {
  color: var(--odie-accent);
  font-size: 1.24rem;
  font-style: normal;
  font-weight: 800;
  text-align: center;
}

/* 칩 — 18p .cchip과 같은 진하기·라운드 */
#s18 .arch19-mods > div {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}
#s18 .arch19-mods.is-fsm > div { grid-template-columns: repeat(4, minmax(0, 1fr)); }
#s18 .arch19-mods span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 8px;
  border-radius: 7px;
  background: var(--odie-chip);
  color: var(--odie-ink);
  font-size: .74rem;
  font-weight: 750;
}

/* 데이터 계층은 제어 흐름과 다른 축이므로 구분선으로 관계를 먼저 밝힌다 */
#s18 .arch19-bridge {
  position: relative;
  margin-top: 32px;
  text-align: center;
}
#s18 .arch19-bridge::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  content: "";
  background: rgba(23, 63, 71, .16);
}
#s18 .arch19-bridge span {
  position: relative;
  padding: 0 16px;
  background: var(--odie-bg);
  color: var(--odie-ink);
  font-size: .68rem;
  font-weight: 800;
  opacity: .7;
}
#s18 .arch19-data {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}
#s18 .arch19-data > div { min-height: 0; }
#s18 .arch19-data small { color: var(--odie-accent); opacity: 1; }

/* ==========================================================================
   Odie 챕터 박스 규칙 (18~23p 공통) — 18·19p에서 정한 체계를 챕터 전체에 적용
   면 = --odie-surface · 칩 = --odie-chip · 강조 = --odie-deep
   라운드 12(면) / 7(칩) · 그림자 없음 · 흰색과 900 굵기 사용 안 함
   ========================================================================== */
.t-odie-light {
  --odie-bg: #bdf0dc;
  --odie-surface: #e9faf2;
  --odie-chip: #d2eee2;
  background: var(--odie-bg);
}

/* 18 */
#s19 .collider-lane { background: var(--odie-surface); }
#s19 .cchip span { background: var(--odie-chip); color: var(--odie-ink); }

/* 21 */
#s21 .odie-scene-pipeline article {
  background: var(--odie-surface);
  border-radius: 12px;
  box-shadow: none;
}
#s21 .odie-scene-pipeline article.is-accent { background: var(--odie-deep); }
#s21 .odie-scene-pipeline article em,
#s21 .odie-scene-branches em { font-weight: 800; }


/* 화살표 글리프도 챕터 굵기 상한(800)에 맞춘다 */
#s21 .odie-scene-pipeline > i,
#s21 .odie-scene-pipeline > i { font-weight: 800; }

/* ==========================================================================
   20 · Map Build — 맵 → 씬 → 씬 연결, 세 단계를 같은 위계로 정렬한다
   ========================================================================== */
#s20 .odie-map20 {
  position: absolute;
  top: 120px;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 44px;
}
#s20 .odie-map20 h2 {
  margin: 0;
  color: var(--odie-ink);
  font-size: 1.65rem;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -.025em;
  text-align: center;
}
#s20 .odie-map20-lead {
  margin: 12px 0 0;
  color: var(--odie-muted);
  font-size: .86rem;
  line-height: 1.65;
  text-align: center;
}
/* 설명문이 없는 페이지라 타이틀과의 간격을 따로 보정한다 */
#s20 .map20-grid {
  display: grid;
  grid-template-columns: 470px 56px 375px 56px minmax(0, 1fr);
  align-items: start;
  margin-top: 24px;
}

/* 세 컬럼이 같은 머리를 갖는다 */
#s20 .m20col { min-width: 0; }
#s20 .m20col > header { display: flex; align-items: baseline; gap: 9px; }
#s20 .m20col > header em {
  color: var(--odie-accent);
  font-size: .8rem;
  font-style: normal;
  font-weight: 800;
}
#s20 .m20col > header b {
  color: var(--odie-ink);
  font-size: .86rem;
  font-weight: 800;
}
#s20 .m20-body { margin-top: 18px; }
#s20 .map20-arrow {
  margin-top: 40px;
  align-self: center;
  color: var(--odie-accent);
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 800;
  text-align: center;
}

/* 01 맵 */
#s20 .map20-stage img {
  display: block;
  width: 470px;
  height: 470px;
  object-fit: contain;
  border-radius: 12px;
}
#s20 .map20-legend {
  display: flex;
  gap: 20px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  color: var(--odie-muted);
  font-size: .68rem;
}
#s20 .map20-legend li { display: flex; align-items: center; gap: 8px; }
#s20 .map20-legend .mk-sw {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, .9);
}

/* 02 씬 — 두 장의 합계 높이를 맵과 맞춘다 */
#s20 .m20col:nth-of-type(2) .m20-body { display: grid; gap: 18px; }
#s20 .m20col figure { margin: 0; }
#s20 .m20col figure img {
  display: block;
  width: 375px;
  height: 211px;
  object-fit: cover;
  border-radius: 12px;
}
#s20 figcaption {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-top: 9px;
}
#s20 figcaption b { color: var(--odie-ink); font-size: .78rem; font-weight: 800; }
#s20 figcaption span { color: var(--odie-muted); font-size: .68rem; }

/* 03 씬 연결 */
#s20 .m20-flow-body { display: flex; flex-direction: column; }
#s20 .m20-flow {
  position: relative;
  height: 471px;
  margin: 0;
  padding: 0 0 0 24px;
  list-style: none;
}
/* 선은 마지막 노드에서 끊는다 */
#s20 .m20-flow::before {
  position: absolute;
  left: 4px;
  top: 7px;
  bottom: 34px;
  width: 1px;
  content: "";
  background: rgba(23, 63, 71, .22);
}
#s20 .m20-flow { display: flex; flex-direction: column; justify-content: space-between; }
#s20 .m20-flow li { position: relative; }
#s20 .m20-flow li::before {
  position: absolute;
  left: -24px;
  top: 5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  content: "";
  background: var(--odie-accent);
  box-shadow: 0 0 0 4px var(--odie-bg);
}
#s20 .m20-flow b { display: block; color: var(--odie-ink); font-size: .82rem; font-weight: 800; }
#s20 .m20-flow span { display: block; margin-top: 6px; color: var(--odie-muted); font-size: .68rem; line-height: 1.45; }
#s20 .m20-tail {
  margin-top: 12px !important;
  padding: 2px 0 2px 12px;
  border-left: 2px solid rgba(189, 64, 54, .45);
  color: var(--odie-ink);
  opacity: .72;
}
#s20 .map20-note { margin: 16px 0 0; color: var(--odie-muted); font-size: .68rem; line-height: 1.55; }

/* ==========================================================================
   22 · Runtime — 음악(FMOD)과 리소스(Addressables·Pool)를 한 장에서 나란히
   ========================================================================== */
#s21 .odie-rt {
  position: absolute;
  top: 120px;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 44px;
}
#s21 .odie-rt h2 {
  margin: 0;
  color: var(--odie-ink);
  font-size: 1.65rem;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -.025em;
  text-align: center;
}
#s21 .odie-rt-lead {
  margin: 12px 0 0;
  color: var(--odie-muted);
  font-size: .86rem;
  line-height: 1.65;
  text-align: center;
}
#s21 .rt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 46px;
}
#s21 .rt-col > header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(23, 63, 71, .16);
}
#s21 .rt-col > header small {
  color: var(--odie-accent);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .1em;
}
#s21 .rt-col > header b {
  color: var(--odie-ink);
  font-size: .9rem;
  font-weight: 800;
}
#s21 .rt-figure { margin: 18px 0 0; }
#s21 .rt-shot {
  height: 236px;
  border-radius: 12px;
  background: var(--odie-surface);
  overflow: hidden;
}
#s21 .rt-shot img { display: block; width: 100%; height: 100%; object-fit: cover; }
#s21 .rt-shot-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(23, 63, 71, .3);
  background: transparent;
}
#s21 .rt-shot-empty span {
  color: var(--odie-muted);
  font-size: .78rem;
  font-weight: 800;
}
#s21 .rt-figure figcaption {
  padding-top: 10px;
  color: var(--odie-muted);
  font-size: .68rem;
}
#s21 .rt-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
#s21 .rt-list li {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  align-items: baseline;
  gap: 14px;
  padding: 13px 18px;
  border-radius: 12px;
  background: var(--odie-surface);
}
#s21 .rt-list li + li { margin-top: 10px; }
#s21 .rt-list b { color: var(--odie-ink); font-size: .78rem; font-weight: 800; }
#s21 .rt-list span { color: var(--odie-muted); font-size: .7rem; line-height: 1.45; }

/* 맵 위 배치 마커 — 포털 · 몬스터 스폰 · 보상 */
.map20-stage { position: relative; }
.map20-stage .mk {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .92), 0 2px 6px rgba(0, 0, 0, .35);
}
.mk-portal { background: #e2851f; }
.mk-spawn { background: #bd4036; }
.mk-reward { background: #e8bd18; }
#s20 .map20-legend {
  display: flex;
  gap: 22px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  color: var(--odie-muted);
  font-size: .68rem;
}
#s20 .map20-legend li { display: flex; align-items: center; gap: 8px; }
#s20 .map20-legend .mk-sw {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, .9);
}

/* ==========================================================================
   23 · Creverse 표지 — 7페이지처럼 미디어를 크게 두고 무게중심을 맞춘다
   ========================================================================== */
.cv-cover-stack { position: relative; height: 548px; }
.cv-cover-stack .cv-win { position: absolute; }
.cv-win-back {
  left: 0;
  top: 66px;
  width: 282px;
  height: 300px;
  z-index: 1;
  transform: rotate(-3.4deg);
  box-shadow: 0 18px 40px var(--wb-line);
}
.cv-win-back img { object-position: center top; }
.cv-win-mid {
  right: 0;
  top: 0;
  width: 420px;
  height: 266px;
  z-index: 2;
  transform: rotate(2.4deg);
  box-shadow: 0 20px 44px var(--wb-line);
}
.cv-win-front {
  left: 152px;
  bottom: 0;
  width: 500px;
  height: 311px;
  z-index: 3;
  transform: rotate(-1.2deg);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .1);
}

/* 24 · Play — 카드 카피는 번호 없는 세로 스택 */
#s23 .creverse-game .creverse-window { height: 268px; }
#s23 .creverse-game-copy { display: block; margin-top: 20px; }
#s23 .creverse-game-copy em {
  display: block;
  margin-bottom: 10px;
  font-family: inherit;
  font-size: .66rem;
  font-weight: 830;
  letter-spacing: .1em;
}
#s23 .creverse-game-copy p { margin-top: 8px; }
#s23 .creverse-game-copy ul { margin: 13px 0 0; padding: 0; list-style: none; }
#s23 .creverse-game-copy li {
  position: relative;
  padding-left: 13px;
  color: var(--wb-muted);
  font-size: .72rem;
  line-height: 1.75;
}
#s23 .creverse-game-copy li::before {
  position: absolute;
  left: 0;
  content: "\00b7";
  color: var(--wb-accent);
  font-weight: 900;
}

/* ==========================================================================
   25 · Creverse Hub — 허브 전체를 보여주되 직접 만든 세 개를 표시한다
   ========================================================================== */
.creverse-build {
  position: absolute;
  z-index: 2;
  top: 120px;
  left: var(--gutter);
  right: var(--gutter);
}
.creverse-build > h2 {
  margin: 0;
  color: var(--wb-ink);
  font-size: 1.65rem;
  line-height: 1.25;
  letter-spacing: -.025em;
  font-weight: 700;
  text-align: center;
}
.cvb-lead {
  margin: 12px 0 0;
  color: var(--wb-muted);
  font-size: .86rem;
  line-height: 1.65;
  text-align: center;
}
.cvh-figure { margin: 31px 0 0; }
.cvh-window {
  width: 1180px;
  margin: 0 auto;
  border-radius: 11px;
  box-shadow: 0 18px 40px var(--wb-line);
}
.cvh-shot { position: relative; }
.cvh-shot img { display: block; width: 100%; height: auto; }
.cvh-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 26px minmax(0, 1fr) 26px minmax(0, 1fr);
  align-items: stretch;
  gap: 14px;
  width: 900px;
  max-width: 100%;
  margin: 22px auto 0;
}
.cvh-flow > i {
  align-self: center;
  color: #c9c9c9;
  font-style: normal;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}
.cvh-flow > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(0, 179, 184, .08);
}
.cvh-flow b {
  color: var(--wb-ink);
  font-size: .82rem;
  font-weight: 800;
}
.cvh-flow code {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}
.cvh-flow span {
  margin-top: 8px;
  color: var(--wb-muted);
  font-size: .72rem;
  line-height: 1.45;
}

/* 24 · Play — 규칙(플레이어)과 구현(개발) 두 줄 */
#s23 .cvp-spec { margin: 14px 0 0; }
#s23 .cvp-spec > div {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
}
#s23 .cvp-spec > div + div { margin-top: 9px; }
#s23 .cvp-spec dt {
  color: var(--wb-accent);
  font-size: .66rem;
  font-weight: 830;
}
#s23 .cvp-spec dd {
  margin: 0;
  color: var(--wb-ink);
  font-size: .72rem;
  line-height: 1.62;
}

/* 23 · 표지 브랜드 심볼 */
.cv-brand {
  display: block;
  width: 48px;
  height: 52px;
  margin: 4px 0 0;
}


/* ==========================================================================
   Project 6 · 우리집 행복한 고양이 (25~28)
   ========================================================================== */
.t-cozy-light {
  --cz-ink: #43301c;
  --cz-muted: #8a7157;
  --cz-surface: rgba(125, 86, 38, .085);
  --cz-line: rgba(125, 86, 38, .2);
}
.cat-shot { margin: 0; }
.cat-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.cat-shot figcaption {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-top: 10px;
}
.cat-shot figcaption b { color: var(--cz-ink, var(--cz-deep)); font-size: .8rem; font-weight: 800; }
.cat-shot figcaption span { color: var(--cz-muted, #8a7157); font-size: .68rem; }
#s26 .cat-shot figcaption span,
#s27 .cat-shot figcaption span,
#s27 .cat-solo-ship span { font-size: .74rem; }

/* ===========================================================================
   공통 왼쪽 라벨 — 프로젝트별 강조색으로 채운 타원
   ========================================================================== */
.slide-badge,
#s29 .oval {
  border: 0;
  background: #2b7067;
  color: #fff;
}

/* 비프로젝트 페이지 — 화이트 · 그레이 */
#s01,
#s02,
#s04,
#s29 { background: #fafafa; }

#s02 .slide-badge,
#s04 .slide-badge,
#s29 .oval { background: #505357; }

#s01 .intro-kicker { color: #686b6e; }
#s01 .intro-cover-lead { color: #45484b; }
#s01 .intro-cover-meta { border-color: #c9cbcd; }
#s01 .intro-cover-meta a { color: #686b6e; }

#s02 .sum2-block h3 {
  border-color: #5a5d60;
  color: #5a5d60;
}
#s02 .sum2-timeline::before { background: #d1d3d5; }
#s02 .sum2-timeline > li {
  border-color: #dedfe0;
  background: #fff;
}
#s02 .sum2-timeline > li::before {
  background: #5a5d60;
  box-shadow: 0 0 0 4px #fafafa;
}
#s02 .sum2-head { border-color: #e5e6e7; }

#s04 .pcard {
  border-color: #dedfe0;
  background: #fff;
}
#s04 .pcard-head em { color: #5a5d60; }
#s04 .pcard-tags li {
  background: #eceeef;
  color: #55585b;
}
#s04 .pcard:nth-child(5) .pcard-thumb::before {
  background:
    radial-gradient(circle at 17px 50%, #686b6e 0 4px, transparent 4.5px),
    radial-gradient(circle at 34px 50%, #d6d7d8 0 4px, transparent 4.5px),
    radial-gradient(circle at 51px 50%, #d6d7d8 0 4px, transparent 4.5px),
    #f7f7f7;
}

#s01 .pageno,
#s02 .pageno,
#s04 .pageno,
#s29 .pageno { color: #777a7d; }

#s16 .pageno {
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .32);
}

.t-odie-cover .slide-badge,
.t-odie-light .slide-badge {
  background: var(--odie-deep, #173f47);
  color: #fff;
}

.t-appcover .slide-badge,
.t-appdoc .slide-badge {
  background: var(--app-lime);
  color: var(--app-bg);
}

.t-pixel .slide-badge,
.t-pixel-light .slide-badge {
  background: var(--px-accent);
  color: var(--px-bg);
}

.t-runtime .slide-badge {
  background: var(--rt-blue);
  color: #0f0f10;
}

.t-film .slide-badge,
.t-film-light .slide-badge {
  background: rgba(24, 33, 29, .11);
  color: var(--fm-ink);
}

.t-web .slide-badge,
.t-web-light .slide-badge {
  background: var(--wb-accent);
  color: var(--wb-ink);
}

.t-cozy .slide-badge,
.t-cozy-light .slide-badge {
  background: var(--cz-accent);
  color: #0f0f10;
}

/* 25 · 표지 */
#s25 .cat-cover {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 544px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  width: 1180px;
  height: 680px;
  margin: 62px auto 0;
}
#s25 .cat-cover-copy {
  align-self: start;
  margin-top: 103px;
}
#s25 .cozy-title { font-size: 4.6rem; line-height: 1.18; }
#s25 .cat-cover-lead {
  margin: 20px 0 0;
  color: #6b512f;
  font-size: .95rem;
  line-height: 1.75;
}
#s25 .cat-meta {
  display: grid;
  grid-template-columns: 120px 105px minmax(0, 1fr);
  column-gap: 18px;
  row-gap: 12px;
  margin-top: 38px;
  padding-top: 22px;
  max-width: none;
}
#s25 .cat-meta-tech { grid-column: 1 / -1; }
#s25 .cat-meta .tech-tags i { background: rgba(125, 86, 38, .16); color: var(--cz-deep); }
#s25 .cat-cover-media {
  position: relative;
  transform: translate(22px, -67px) scale(1.18);
  transform-origin: center center;
}
#s25 .cat-cover-shot img { border-radius: 14px; box-shadow: 0 18px 44px rgba(125, 86, 38, .26); }

/* 프로젝트 표지 하단 정보 공통 기준 */
#s07 .cover-meta-strip,
#s11 .runtime-meta,
#s14 .film-meta,
#s16 .odie-meta,
#s22 .creverse-meta,
#s25 .cat-meta {
  display: grid;
  grid-template-columns: 150px 124px minmax(0, 1fr);
  column-gap: 10px;
  row-gap: 14px;
  width: 544px;
  max-width: 544px;
  margin-top: 38px;
  padding-top: 22px;
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
}
#s07 .cover-meta-strip > div:nth-child(4),
#s11 .runtime-meta > div:nth-child(4),
#s14 .film-meta > div:nth-child(4),
#s16 .odie-meta > div:nth-child(4),
#s22 .creverse-meta > div:nth-child(4),
#s25 .cat-meta > div:nth-child(4) {
  grid-column: 1 / -1;
  min-width: 0;
}
#s07 .cover-meta-strip span,
#s11 .runtime-meta span,
#s14 .film-meta span,
#s16 .odie-meta span,
#s22 .creverse-meta span,
#s25 .cat-meta span {
  display: block;
  margin-bottom: 4px;
  font-size: .64rem;
  font-weight: 850;
  line-height: 1.45;
  letter-spacing: .16em;
}
#s07 .cover-meta-strip b,
#s11 .runtime-meta b,
#s14 .film-meta b,
#s16 .odie-meta b,
#s22 .creverse-meta b,
#s25 .cat-meta b {
  display: block;
  font-size: .84rem;
  font-weight: 700;
  line-height: 1.45;
}
#s07 .cover-meta-strip b.tech-tags,
#s11 .runtime-meta b.tech-tags,
#s14 .film-meta b.tech-tags,
#s16 .odie-meta b.tech-tags,
#s22 .creverse-meta b.creverse-tech,
#s25 .cat-meta b.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
#s25 .cat-meta b.tech-tags {
  flex-direction: column;
  align-items: flex-start;
}
#s25 .cat-tech-row {
  display: flex;
  gap: 7px;
  font-style: normal;
}
#s07 .tech-tags i,
#s11 .tech-tags i,
#s14 .tech-tags i,
#s16 .tech-tags i,
#s22 .creverse-tech i,
#s25 .tech-tags i {
  display: block;
  flex: 0 0 auto;
  padding: 4px 12px;
  border-radius: 7px;
  font-family: inherit;
  font-size: .74rem;
  font-style: normal;
  font-weight: 650;
  line-height: 1.5;
  white-space: nowrap;
}
/* 26~28 공통 본문 */
.cat-body {
  position: absolute;
  top: 120px;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 44px;
}
.cat-body > h2 {
  margin: 0;
  color: var(--cz-deep);
  font-size: 1.65rem;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -.025em;
  text-align: center;
}
.cat-lead {
  margin: 12px 0 0;
  color: var(--cz-muted);
  font-size: .86rem;
  line-height: 1.65;
  text-align: center;
}

/* 26 · Play */
#s26 .cat-play-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 56px;
}
#s26 .cat-loop {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) 26px minmax(0, .92fr) 26px minmax(0, 1.4fr) 26px minmax(0, 1.28fr);
  align-items: center;
  gap: 14px;
  width: 960px;
  max-width: 100%;
  margin: 44px auto 0;
  padding: 0;
  list-style: none;
}
#s26 .cat-loop li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 88px;
  padding: 18px 20px;
  border-radius: 12px;
  background: var(--cz-surface);
  color: var(--cz-ink);
  font-size: .8rem;
  line-height: 1.45;
}
#s26 .cat-loop em {
  display: block;
  margin-bottom: 8px;
  color: var(--cz-accent);
  font-size: .72rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .08em;
}
#s26 .cat-loop > i { color: var(--cz-accent); font-size: 1.2rem; font-style: normal; font-weight: 800; text-align: center; }

/* 27 · Solo */
#s27 .cat-solo-grid {
  display: grid;
  grid-template-columns: 440px minmax(0, 1fr);
  gap: 60px;
  align-items: stretch;
  margin-top: 50px;
}
#s27 .cat-solo-make,
#s27 .cat-solo-ship {
  display: flex;
  flex-direction: column;
}
#s27 .cat-solo-ship { padding-bottom: 34px; }
#s27 header { margin-bottom: 16px; }
#s27 header em {
  display: block;
  color: var(--cz-accent);
  font-size: .64rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .1em;
}
#s27 header b { display: block; margin-top: 0; color: var(--cz-ink); font-size: .88rem; font-weight: 800; }
#s27 .cat-solo-make figure + figure { margin-top: 18px; }
#s27 .cat-solo-ship ul {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 14px;
  flex: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}
#s27 .cat-solo-ship li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 24px;
  border-radius: 12px;
  background: var(--cz-surface);
}
#s27 .cat-solo-ship li + li { margin-top: 0; }
#s27 .cat-solo-ship b { display: block; color: var(--cz-ink); font-size: .9rem; font-weight: 800; }
#s27 .cat-solo-ship span { display: block; margin-top: 8px; color: var(--cz-muted); font-size: .76rem; line-height: 1.5; }
/* 28 · Optimize */
#s28 .cat-opt-grid {
  display: grid;
  grid-template-columns: 500px minmax(0, 1fr);
  gap: 56px;
  margin-top: 42px;
  align-items: stretch;
}
#s28 .cat-code {
  display: flex;
  flex-direction: column;
}
#s28 .cat-code figcaption {
  padding: 0 0 12px;
}
#s28 .cat-code img {
  height: 390px;
  border-radius: 12px;
  object-fit: cover;
  object-position: left top;
}
#s28 .cat-opt-flow {
  display: flex;
  flex-direction: column;
  padding-top: 31px;
}
#s28 .cat-opt-pairs {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 14px;
  flex: 1;
}
#s28 .cat-opt-pair {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 20px;
  border-radius: 12px;
  background: var(--cz-surface);
}
#s28 .cat-opt-pair header {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 18px;
}
#s28 .cat-opt-pair header em {
  color: var(--cz-accent);
  font-size: .68rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .08em;
}
#s28 .cat-opt-pair header b {
  color: var(--cz-ink);
  font-size: .88rem;
  font-weight: 800;
}
#s28 .cat-opt-route {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 26px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}
#s28 .cat-opt-route section { min-width: 0; }
#s28 .cat-opt-route small {
  display: block;
  margin-bottom: 7px;
  color: var(--cz-accent);
  font-size: .68rem;
  font-weight: 800;
}
#s28 .cat-opt-route b {
  display: block;
  color: var(--cz-ink);
  font-size: .84rem;
  font-weight: 800;
  line-height: 1.35;
}
#s28 .cat-opt-route span {
  display: block;
  margin-top: 7px;
  color: var(--cz-muted);
  font-size: .76rem;
  line-height: 1.45;
}
#s28 .cat-opt-route > i {
  color: var(--cz-accent);
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 800;
  text-align: center;
}
