/* ============================================================
   ICLO — 나이트 쇼룸 디자인 시스템
   토큰 SSOT: 닥터어레인지 랜딩 :root 계승, 나이트 계열을 기본값으로 승격
   규율: 순흑(#000) 금지 · 의료 파랑 금지 · 1px 구분선 최소화 ·
         워터마크 1회 · 카운트업 1곳 · 대형 스크롤텔링 1곳
   ============================================================ */

:root {
  /* cream (기본 무대 — 산뜻한 낮) */
  --ground: #FAFAF7;
  --ground-muted: #F2F1EC;
  --surface: #FFFFFF;
  --surface-muted: #F7F6F1;
  --line: #E6E4DC;
  --line-strong: #D2CFC5;
  --ink: #2D2C28;
  --ink-body: #3E3D38;
  --ink-soft: #6E6C64;
  --ink-dim: #8A887E;
  /* 액센트: 클레이 = Dr. 패밀리 / 세이지 = HomeDen 패밀리 */
  --clay: #B15A3C;
  --clay-strong: #92472E;
  --clay-deep: #92472E;
  --clay-soft: rgba(177, 90, 60, .09);
  --clay-on: #FFF7F2;
  --sage: #4F7D75;
  --sage-deep: #3F645E;
  --sage-bright: #5E9D93;
  --sage-soft: rgba(94, 157, 147, .12);
  --shadow: 0 1px 2px rgba(45, 44, 40, .06), 0 14px 36px -14px rgba(45, 44, 40, .24);
  --r: 16px;
  --r-s: 12px;

  /* Global role tokens are the SSOT; legacy names remain compatibility aliases. */
  --font-sans: "Pretendard ICLO", "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: var(--font-sans);
  --mono: var(--font-sans);
  --type-display-lg: var(--type-display-size);
  --type-display: var(--type-heading-size);
  --type-title-1: var(--type-heading-size);
  --type-title-2: var(--type-title-size);
  --type-title-3: var(--type-title-size);
  --type-headline: var(--type-body-lg-size);
  --type-body: var(--type-body-size);
  --type-callout: var(--type-body-size);
  --type-subheadline: var(--type-body-sm-size);
  --type-footnote: var(--type-caption-size);
  --type-caption: var(--type-caption-size);
  --type-caption-2: var(--type-micro-size);
  --weight-regular: var(--type-weight-regular);
  --weight-medium: var(--type-weight-medium);
  --weight-semibold: var(--type-weight-semibold);
  --weight-bold: var(--type-weight-bold);
  --tracking-display: var(--type-tracking-display);
  --tracking-title: var(--type-tracking-title);
}

/* 나이트 씬 — 신뢰(금고) 섹션·푸터 단 두 곳에만 어둠을 남긴다 */
.scene-night {
  --ground: #0B0D12;
  --ground-muted: #0F131B;
  --surface: #12151D;
  --surface-muted: #161B26;
  --line: #232833;
  --line-strong: #303748;
  --ink: #F1F5F9;
  --ink-body: #AEB8C6;
  --ink-soft: #97A1B0;
  --ink-dim: #5F6B7C;
  --clay: #E0A184;
  --clay-strong: #ECB89F;
  --clay-deep: #B15A3C;
  --clay-soft: rgba(224, 161, 132, .10);
  --clay-on: #1C120C;
  --sage: #7FB8AD;
  --sage-deep: #4F7D75;
  --sage-bright: #7FB8AD;
  --sage-soft: rgba(127, 184, 173, .10);
  --shadow: 0 1px 2px rgba(0, 0, 0, .35), 0 24px 48px -18px rgba(0, 0, 0, .55);
}
.scene-night { background: var(--ground); color: var(--ink-body); }

/* 세이지 밴드 — B2G 섹션 구분 */
.tint-sage { background: #EEF5F3; }

/* ---------- reset & base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--ground);
  color: var(--ink-body);
  font-family: var(--font-sans);
  font-size: var(--type-body);
  line-height: var(--type-body-line);
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--clay-deep); color: #FFF7F2; }
:focus-visible { outline: 2px solid var(--clay); outline-offset: 3px; border-radius: 4px; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
.wrap.narrow { max-width: 880px; }

.skip {
  position: absolute; left: -9999px; top: 10px; z-index: 100;
  background: var(--clay); color: var(--clay-on);
  padding: 10px 20px; border-radius: 999px; font-weight: var(--type-weight-semibold); font-size: var(--type-label-size);
}
.skip:focus-visible { left: 10px; }

/* ---------- typography ---------- */
h1, h2, h3 { color: var(--ink); font-family: var(--font-display); text-wrap: balance; }
.h-hero {
  font-size: var(--type-display-lg);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-display);
  line-height: var(--type-display-line);
}
.h-sec {
  font-size: var(--type-display);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-display);
  line-height: var(--type-heading-line);
  margin-bottom: 20px;
}
.h-sub {
  font-size: var(--type-title-2);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-title);
  line-height: var(--type-title-line);
  margin-bottom: 16px;
}
.lede { font-size: var(--type-headline); color: var(--ink-body); max-width: 56ch; line-height: var(--type-body-lg-line); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: var(--type-label-size); line-height: var(--type-label-line); font-weight: var(--weight-semibold); letter-spacing: .12em;
  text-transform: uppercase; color: var(--clay); margin-bottom: 18px;
}
.eyebrow.sage { color: var(--sage); }
.eyebrow::before { content: ""; width: 22px; height: 1.5px; background: currentColor; opacity: .7; }
.fine { font-size: var(--type-caption-size); color: var(--ink-soft); line-height: var(--type-caption-line); }
.num, .tnum { font-variant-numeric: tabular-nums; }
.kw { color: var(--clay); font-weight: var(--type-weight-semibold); font-style: normal; }
.kw-sage { color: var(--sage); font-weight: var(--type-weight-semibold); font-style: normal; }

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  transition: background .5s ease, border-color .5s ease;
  background: rgba(250, 250, 247, .84);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(230, 228, 220, .8);
}
body[data-mode="night"] .nav {
  background: rgba(11, 13, 18, .78);
  border-bottom-color: rgba(35, 40, 51, .7);
}
.nav-in { max-width: 1120px; margin: 0 auto; padding: 0 28px; height: 64px; display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: baseline; gap: 8px; }
.brand .mark {
  font-family: var(--font-display); font-size: 20px; font-weight: var(--weight-bold); letter-spacing: var(--tracking-title); color: #2D2C28;
  transition: color .5s ease;
}
body[data-mode="night"] .brand .mark { color: #F1F5F9; }
.brand .mark i { font-style: normal; color: var(--clay); }
.nav-links { display: flex; gap: 4px; margin-left: auto; align-items: center; }
.nav-links a {
  font-size: var(--type-label-size); line-height: var(--type-label-line); font-weight: var(--weight-semibold); color: #6E6C64;
  padding: 7px 13px; border-radius: 999px; transition: color .25s, background .25s;
}
.nav-links a:hover { color: #2D2C28; background: rgba(45, 44, 40, .05); }
body[data-mode="night"] .nav-links a { color: #97A1B0; }
body[data-mode="night"] .nav-links a:hover { color: #F1F5F9; background: rgba(255, 255, 255, .05); }
.nav-company { position: relative; display: flex; align-items: center; }
.nav-company-menu {
  position: absolute; top: calc(100% + 12px); right: 0; min-width: 150px; padding: 8px;
  border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.96);
  box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-5px);
  transition: opacity .2s, visibility .2s, transform .2s;
}
.nav-company-menu::before { content: ""; position: absolute; inset: -13px 0 auto; height: 13px; }
.nav-company:hover .nav-company-menu, .nav-company:focus-within .nav-company-menu { opacity: 1; visibility: visible; transform: none; }
.nav-links .nav-company-menu a { display: block; padding: 9px 11px; border-radius: 8px; white-space: nowrap; }
body[data-mode="night"] .nav-company-menu { border-color: #303748; background: rgba(18,21,29,.97); }
.nav-cta, .nav-links a.nav-cta {
  margin-left: 10px; font-size: var(--type-label-size); line-height: var(--type-label-line); font-weight: var(--weight-semibold);
  background: #B15A3C; color: #FFF7F2;
  padding: 9px 20px; border-radius: 999px;
  transition: background .25s, opacity .4s, transform .4s;
}
.nav-cta:hover, .nav-links a.nav-cta:hover { background: #92472E; color: #FFF7F2; }
body[data-mode="night"] .nav-cta, body[data-mode="night"] .nav-links a.nav-cta { background: #E0A184; color: #1C120C; }
body[data-mode="night"] .nav-links a.nav-cta:hover { background: #ECB89F; color: #1C120C; }
.nav.cta-hidden .nav-links .nav-cta { opacity: 0; transform: translateY(-6px); pointer-events: none; }
.nav-burger { display: none; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-burger {
    display: block; margin-left: auto; width: 40px; height: 40px; position: relative;
    color: #2D2C28;
  }
  body[data-mode="night"] .nav-burger { color: #F1F5F9; }
  .nav-burger span, .nav-burger span::before, .nav-burger span::after {
    content: ""; position: absolute; left: 9px; width: 22px; height: 2px;
    background: currentColor; border-radius: 2px; transition: transform .3s, opacity .3s;
  }
  .nav-burger span { top: 19px; }
  .nav-burger span::before { top: -7px; left: 0; }
  .nav-burger span::after { top: 7px; left: 0; }
  .nav.open .nav-burger span { transform: rotate(45deg); }
  .nav.open .nav-burger span::before { transform: rotate(-90deg) translateX(-7px); }
  .nav.open .nav-burger span::after { opacity: 0; }
  .nav-menu {
    display: none; flex-direction: column; gap: 2px;
    padding: 10px 24px 22px; border-top: 1px solid var(--line);
  }
  .nav.open .nav-menu { display: flex; }
  .nav-menu a { padding: 12px 4px; font-size: var(--type-body-size); line-height: var(--type-body-line); font-weight: var(--weight-semibold); color: #3E3D38; }
  body[data-mode="night"] .nav-menu a { color: #AEB8C6; }
  .nav-menu .nav-cta { margin: 10px 0 0; text-align: center; }
  .nav-cta-top { display: none; }
}
@media (min-width: 881px) { .nav-menu { display: none !important; } }

/* ---------- sections ---------- */
section { position: relative; }
[id] { scroll-margin-top: 78px; }
.pad { padding: 130px 0; }
.pad-s { padding: 96px 0; }
@media (max-width: 720px) { .pad { padding: 88px 0; } .pad-s { padding: 72px 0; } }

/* 배경 미세 그라데이션 — 섹션 구분을 라인이 아니라 명도로 */
.tint-a { background: var(--ground); }
.tint-b { background: var(--ground-muted); }
.scene-cream { background: var(--ground); }

/* ---------- reveal ---------- */
.rv { opacity: 0; transform: translateY(18px); transition: opacity .75s ease, transform .75s ease; }
.rv.in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .22s; } .d3 { transition-delay: .34s; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--type-body-size); line-height: var(--type-body-line); font-weight: var(--weight-semibold); letter-spacing: 0;
  padding: 14px 28px; border-radius: 999px;
  transition: background .25s, color .25s, border-color .25s, transform .15s;
}
.btn:active { transform: translateY(1px); }
.btn-clay { background: var(--clay); color: var(--clay-on); }
.btn-clay:hover { background: var(--clay-strong); }
.btn-ghost { border: 1px solid var(--line-strong); color: var(--ink); }
.btn-ghost:hover { border-color: var(--clay); color: var(--clay); }
.btn-sage { background: #436962; color: #F3FAF8; }
.btn-sage:hover { background: var(--sage); color: #10201C; }
.btn-line { font-size: var(--type-body-size); line-height: var(--type-body-line); font-weight: var(--weight-semibold); color: var(--clay); }
.btn-line::after { content: "→"; transition: transform .25s; display: inline-block; margin-left: 6px; }
.btn-line:hover::after { transform: translateX(4px); }

/* ---------- hero ---------- */
.hero { min-height: 100svh; display: flex; align-items: center; overflow: hidden; padding: 120px 0 80px; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(46% 40% at 6% 4%, rgba(94, 157, 147, .10), transparent 70%),
    radial-gradient(44% 40% at 94% 92%, rgba(177, 90, 60, .07), transparent 70%);
}
.hero-wm {
  position: absolute; right: -4%; top: 48%; transform: translateY(-50%);
  font-size: clamp(180px, 34vw, 470px); font-weight: var(--type-weight-regular); letter-spacing: var(--type-tracking-display);
  color: transparent; -webkit-text-stroke: 1px rgba(177, 90, 60, .18);
  user-select: none; pointer-events: none; line-height: 1; white-space: nowrap;
}
.hero-grid { display: grid; grid-template-columns: 6fr 5fr; gap: 48px; align-items: center; position: relative; }
.hero-kicker {
  font-size: var(--type-label-size); line-height: var(--type-label-line); font-weight: var(--weight-semibold); letter-spacing: .12em; text-transform: uppercase;
  color: var(--clay); margin-bottom: 26px;
}
.hero-copy .lede { margin: 26px 0 34px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-fine { margin-top: 46px; }

.hero-stack { position: relative; height: 520px; }
.hero-stack .frame { position: absolute; width: 78%; }
.hero-stack .f1 { top: 0; left: 0; z-index: 3; }
.hero-stack .f2 { top: 24%; right: 0; width: 62%; z-index: 4; }
.hero-stack .f3 { bottom: 0; left: 8%; width: 58%; z-index: 2; }
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stack { height: auto; }
  .hero-stack .frame { position: static; width: 100%; margin-bottom: 14px; }
  .hero-stack .f2, .hero-stack .f3 { display: none; }
  .hero-wm { font-size: 180px; top: auto; bottom: -30px; right: -10%; transform: none; }
}

/* ---------- frame (중립 타이틀바 — 맥 신호등 금지) ---------- */
.frame {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-s);
  overflow: hidden; box-shadow: var(--shadow);
}
.frame-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-bottom: 1px solid var(--line);
  background: var(--surface-muted);
}
.frame-bar .t { font-size: 11.5px; font-weight: var(--type-weight-semibold); letter-spacing: .04em; color: var(--ink-dim); font-family: var(--mono); }
.frame-bar .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--line-strong); }
.frame img { width: 100%; }
.shot { cursor: zoom-in; }
.caption { font-size: var(--type-caption-size); line-height: var(--type-caption-line); color: var(--ink-dim); margin-top: 10px; }

/* ---------- split layout ---------- */
.split { display: grid; grid-template-columns: 4fr 7fr; gap: 56px; align-items: start; }
.split.rev { grid-template-columns: 7fr 4fr; }
.split .copy { position: sticky; top: 100px; }
.split.rev .copy { order: 2; }
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 940px) {
  .split, .split.rev, .duo { grid-template-columns: 1fr; gap: 36px; }
  .split .copy { position: static; }
  .split.rev .copy { order: 0; }
}

.flist { list-style: none; margin-top: 26px; display: grid; gap: 13px; }
.flist li { position: relative; padding-left: 18px; font-size: var(--type-body-size); line-height: var(--type-body-line); color: var(--ink-body); }
.flist li::before { content: "·"; position: absolute; left: 2px; top: 0; color: var(--clay); font-weight: var(--type-weight-bold); }
.flist.sage li::before { color: var(--sage); }
.flist b { color: var(--ink); font-weight: var(--type-weight-bold); }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--type-label-size); line-height: var(--type-label-line); font-weight: var(--type-weight-bold); letter-spacing: .02em;
  background: var(--clay-soft); color: var(--clay);
  border: 1px solid var(--clay); border-radius: 999px; padding: 5px 14px; margin-top: 22px;
}
.badge.sage { background: var(--sage-soft); color: var(--sage); border-color: var(--sage); }

.pill-price {
  display: inline-block; font-size: var(--type-label-size); line-height: var(--type-label-line); font-weight: var(--type-weight-bold);
  background: var(--sage-soft); color: var(--sage); border: 1px solid var(--sage);
  border-radius: 999px; padding: 7px 18px; margin-top: 24px;
}

/* ---------- loop scrollytelling — "치과의 24시간" 다이얼 ---------- */
.loop-track { height: 320vh; position: relative; }
.loop-sticky { position: sticky; top: 0; height: 100svh; display: flex; align-items: center; overflow: hidden; }
.loop-grid { display: grid; grid-template-columns: 6fr 5fr; gap: 48px; align-items: center; width: 100%; }

.loop-dial { position: relative; width: 100%; max-width: 540px; margin: 0 auto; }
.loop-dial::before {
  content: ""; position: absolute; inset: 6%; border-radius: 50%; pointer-events: none;
  background:
    radial-gradient(50% 50% at 32% 26%, rgba(94, 157, 147, .10), transparent 70%),
    radial-gradient(46% 46% at 72% 76%, rgba(177, 90, 60, .09), transparent 70%);
}
.loop-svg { width: 100%; display: block; position: relative; }

/* 눈금 링: 짧은 대시 + 두꺼운 스트로크 = 방사형 틱 */
.loop-svg .ticks { fill: none; stroke: var(--line-strong); stroke-width: 7; stroke-dasharray: 1.5 24.68; opacity: .5; }
.loop-svg .qticks { fill: none; stroke: var(--ink-dim); stroke-width: 11; stroke-dasharray: 2.4 390.3; stroke-dashoffset: 1.2; opacity: .8; }
.loop-svg .orbit { fill: none; stroke: var(--line); stroke-width: 2; }
.loop-svg .inner {
  fill: none; stroke: var(--line-strong); stroke-width: 1.2; stroke-dasharray: 3 10; opacity: .65;
  transform-origin: 280px 280px; animation: dialspin 90s linear infinite;
}
@keyframes dialspin { to { transform: rotate(360deg); } }
.loop-svg .arc {
  fill: none; stroke: url(#lgArc); stroke-width: 3.5; stroke-linecap: round;
  stroke-dasharray: 1282; stroke-dashoffset: 1282;
}

/* 혜성 헤드 — 진행 끝점을 따라 이동 */
.loop-svg .comet { opacity: 0; transition: opacity .4s; }
.loop-svg .comet.on { opacity: 1; }
.loop-svg .comet-glow { fill: var(--clay); opacity: .25; transition: fill .5s; }
.loop-svg .comet-core { fill: var(--clay); stroke: var(--surface); stroke-width: 2; transition: fill .5s; }
.loop-svg.q-sage .comet-glow, .loop-svg.q-sage .comet-core { fill: var(--sage); }

/* 노드 메달리온 */
.loop-svg .node .pulse { fill: none; stroke: var(--clay); stroke-width: 1.5; opacity: 0; }
.loop-svg .node.sage .pulse { stroke: var(--sage); }
.loop-svg .node.now .pulse { animation: nodeping 2.2s ease-out infinite; }
@keyframes nodeping { 0% { r: 26; opacity: .55; } 70%, 100% { r: 44; opacity: 0; } }
.loop-svg .node .med {
  fill: var(--surface); stroke: var(--line-strong); stroke-width: 1.5;
  transition: stroke .4s, fill .4s;
}
.loop-svg .node .ic { color: var(--ink-dim); transition: color .4s; }
.loop-svg .node .ic path, .loop-svg .node .ic circle, .loop-svg .node .ic rect, .loop-svg .node .ic line {
  fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.loop-svg .node text { transition: fill .4s; }
.loop-svg .node .lbl { fill: var(--ink-dim); font-size: 14.5px; font-weight: var(--type-weight-bold); letter-spacing: -.01em; }
.loop-svg .node .ttag { fill: var(--ink-dim); font-size: 11px; font-family: var(--mono); opacity: .8; }
.loop-svg .node.lit .med { stroke: var(--clay); fill: var(--clay-soft); }
.loop-svg .node.lit .ic { color: var(--clay); }
.loop-svg .node.lit .lbl { fill: var(--ink); }
.loop-svg .node.lit .ttag { fill: var(--clay); }
.loop-svg .node.lit.sage .med { stroke: var(--sage); fill: var(--sage-soft); }
.loop-svg .node.lit.sage .ic { color: var(--sage); }
.loop-svg .node.lit.sage .ttag { fill: var(--sage); }

/* 다이얼 중앙 라이브 리드아웃 */
.loop-center {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  width: 54%; margin: 0 auto; pointer-events: none;
  transition: opacity .28s ease, transform .28s ease;
}
.loop-center.swap { opacity: 0; transform: translateY(6px); }
.loop-center .lc-time {
  font-family: var(--mono); font-size: 13px; font-weight: var(--type-weight-bold); letter-spacing: .18em;
  color: var(--clay); margin-bottom: 8px;
}
.loop-center.sage .lc-time { color: var(--sage); }
.loop-center .lc-title { font-size: clamp(15px, 1.8vw, 19px); font-weight: var(--type-weight-bold); letter-spacing: var(--type-tracking-title); color: var(--ink); line-height: 1.4; }
.loop-center .lc-sub { font-size: 12.5px; color: var(--ink-soft); margin-top: 8px; line-height: 1.55; }

/* 우측 스텝 카드 */
.loop-steps { display: grid; gap: 10px; }
.loop-step {
  display: flex; gap: 16px; align-items: flex-start;
  border: 1px solid var(--line); border-radius: var(--r-s); padding: 16px 20px;
  background: var(--surface); opacity: .38;
  transition: opacity .4s, border-color .4s, transform .4s, box-shadow .4s;
}
.loop-step .idx {
  font-family: var(--mono); font-size: 11px; font-weight: var(--type-weight-bold); color: var(--ink-dim);
  border: 1px solid var(--line-strong); border-radius: 8px; padding: 3px 7px; margin-top: 3px;
  transition: color .4s, border-color .4s, background .4s; flex: none;
}
.loop-step.lit { opacity: 1; border-color: var(--clay); transform: translateX(6px); box-shadow: var(--shadow); }
.loop-step.lit .idx { color: var(--clay); border-color: var(--clay); background: var(--clay-soft); }
.loop-step.lit.sage { border-color: var(--sage); }
.loop-step.lit.sage .idx { color: var(--sage); border-color: var(--sage); background: var(--sage-soft); }
.loop-step .stx { display: grid; min-width: 0; }
.loop-step .who { font-size: 12px; font-weight: var(--type-weight-bold); letter-spacing: .12em; text-transform: uppercase; color: var(--clay); }
.loop-step.sage .who { color: var(--sage); }
.loop-step .what { font-size: 15.5px; color: var(--ink); font-weight: var(--type-weight-semibold); margin-top: 3px; }
.loop-head { margin-bottom: 30px; }
@media (max-width: 940px) {
  .loop-track { height: auto; }
  .loop-sticky { position: static; height: auto; padding: 0; display: block; }
  .loop-grid { grid-template-columns: 1fr; }
  .loop-dial { max-width: 360px; margin-bottom: 10px; }
  .loop-step { opacity: 1; }
}

/* ---------- live demos ---------- */
/* 로그 타이핑 (arrange) — 밤에 일하는 에이전트: 카드만 나이트 유지 */
.frame.logcard { background: #12151D; border-color: #232833; }
.frame.logcard .frame-bar { background: #161B26; border-color: #232833; }
.frame.logcard .frame-bar .t { color: #5F6B7C; }
.frame.logcard .frame-bar .dot { background: #303748; }
.logcard { font-family: var(--mono); font-size: 13.5px; line-height: 1.9; padding: 20px 22px; }
.logcard ul { list-style: none; }
.logcard li { color: #AEB8C6; opacity: 0; transform: translateY(4px); transition: opacity .5s, transform .5s; }
.logcard li.on { opacity: 1; transform: none; }
.logcard .ts { color: #5F6B7C; margin-right: 10px; }
.logcard .ok { color: #7FB8AD; }
.logcard .caret {
  display: inline-block; width: 8px; height: 15px; background: #E0A184;
  vertical-align: -2px; animation: blink 1s steps(1) infinite; margin-left: 2px;
}
@keyframes blink { 50% { opacity: 0; } }

/* 마스킹 데모 (trust) */
.maskline { position: relative; display: inline-block; }
.maskline .cover {
  position: absolute; inset: -1px -3px; background: var(--clay-deep); border-radius: 4px;
  transform: scaleX(0); transform-origin: left center;
}
.maskline.play .cover { animation: maskin 4.5s cubic-bezier(.7, 0, .2, 1) infinite; }
@keyframes maskin {
  0%, 18% { transform: scaleX(0); }
  38%, 82% { transform: scaleX(1); }
  95%, 100% { transform: scaleX(0); }
}


/* 폰 목업 + 바통 터치 (app) */
.baton { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: center; }
@media (max-width: 620px) {
  .baton { grid-template-columns: 1fr; gap: 14px; justify-items: center; }
  .baton > div:first-child { justify-self: center !important; }
  .baton-line { width: 2px !important; height: 44px; background: linear-gradient(180deg, var(--clay), var(--sage)); }
  .baton-line .dotmove { display: none; }
}
.baton-line { height: 2px; width: 100%; background: linear-gradient(90deg, var(--clay), var(--sage)); position: relative; border-radius: 2px; }
.baton-line .dotmove {
  position: absolute; top: -4px; left: 0; width: 10px; height: 10px; border-radius: 50%;
  background: var(--clay); animation: dotmove 5s ease-in-out infinite;
}
@keyframes dotmove {
  0%, 12% { left: 0; background: var(--clay); opacity: 0; }
  20% { opacity: 1; }
  55%, 70% { left: calc(100% - 10px); background: var(--sage); opacity: 1; }
  80%, 100% { left: calc(100% - 10px); opacity: 0; }
}
.phone {
  width: 262px; border: 1px solid var(--line-strong); border-radius: 40px;
  background: var(--surface); box-shadow: var(--shadow); padding: 12px 11px 12px; margin: 0 auto;
}
.phone .notch { width: 76px; height: 20px; border-radius: 12px; background: var(--ink); opacity: .88; margin: 2px auto 8px; }
.phone .status {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 10.5px; font-weight: var(--type-weight-bold); color: var(--ink-dim);
  padding: 0 14px 8px;
}
.phone .status .sig { display: inline-flex; gap: 3px; }
.phone .status .sig i { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-dim); }
.phone .appbar { display: flex; align-items: center; gap: 8px; padding: 4px 6px 12px; }
.phone .appbar .alogo { width: 22px; height: 22px; border-radius: 7px; background: linear-gradient(135deg, var(--sage-bright), var(--sage)); position: relative; }
.phone .appbar .alogo::after { content: ""; position: absolute; inset: 6px 7px 7px; border-radius: 40% 40% 46% 46% / 60% 60% 40% 40%; background: #fff; }
.phone .appbar b { font-size: 14.5px; font-weight: var(--type-weight-bold); letter-spacing: var(--type-tracking-title); color: var(--ink); }
.phone .appbar .bell { margin-left: auto; width: 7px; height: 7px; border-radius: 50%; background: var(--clay); box-shadow: 0 0 0 3px var(--clay-soft); }
.phone .screen { border-radius: 24px; background: var(--ground-muted); border: 1px solid var(--line); padding: 12px; min-height: 300px; display: grid; gap: 10px; align-content: start; }
.phone .homebar { width: 92px; height: 4px; border-radius: 3px; background: var(--line-strong); margin: 11px auto 2px; }
.pcard {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  padding: 11px 13px; font-size: 12px; color: var(--ink-soft); line-height: 1.5;
}
.pcard b { display: block; color: var(--ink); font-size: 12.5px; font-weight: var(--type-weight-bold); }
.pcard.arrive { border-color: var(--sage); opacity: 0; }
.phone.play .pcard.arrive { animation: arrive 5s ease-in-out infinite; }
@keyframes arrive {
  0%, 50% { opacity: 0; transform: translateY(-10px); }
  62%, 92% { opacity: 1; transform: none; }
  100% { opacity: 0; }
}

/* 채팅 데모 (alaseo) */
.chat { display: grid; gap: 12px; padding: 22px; min-height: 220px; align-content: start; }
.bub { max-width: 85%; border-radius: 14px; padding: 10px 15px; font-size: 14px; line-height: 1.6; }
.bub.q { justify-self: end; background: var(--surface-muted); color: var(--ink); border: 1px solid var(--line-strong); border-bottom-right-radius: 4px; }
.bub.a { justify-self: start; background: var(--surface); border: 1px solid var(--line); color: var(--ink-body); border-bottom-left-radius: 4px; }
.bub.a .hl { color: var(--clay); font-weight: var(--type-weight-bold); }
.chat .typing { font-family: var(--mono); font-size: 11.5px; color: var(--ink-dim); }

/* 닥터 알아서 — 4:7 콘텐츠 그리드와 화면 예시 규격 */
.alaseo-page {
  --alaseo-feature-min-height: 448px;
  --alaseo-feature-pad-x: 30px;
  --alaseo-feature-pad-y: 28px;
}
.alaseo-page .split {
  grid-template-columns: minmax(280px, 4fr) minmax(0, 7fr);
  gap: clamp(40px, 4.7vw, 56px);
}
.alaseo-page .split.rev { grid-template-columns: minmax(0, 7fr) minmax(280px, 4fr); }
.alaseo-page .split .copy { width: 100%; max-width: 420px; }
.alaseo-page .flist { gap: 15px; }
.alaseo-page .flist li { display: grid; gap: 4px; padding-left: 0; }
.alaseo-page .flist li::before { display: none; content: none; }
.alaseo-page .flist b { display: block; font-size: 15px; line-height: 1.4; }
.alaseo-page .flist li > span { color: var(--ink-soft); font-size: 14px; line-height: 1.55; }
.alaseo-page .product-head-visual { width: 100%; max-width: 760px; justify-self: end; }
.alaseo-page .product-head-visual .alaseo-hero-ui { height: 440px; min-height: 440px; }
.alaseo-media { width: 100%; max-width: 760px; min-width: 0; margin: 0; }
.alaseo-feature-frame {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: var(--alaseo-feature-min-height);
}
.alaseo-page .alaseo-feature-frame .frame-bar {
  flex: 0 0 40px;
  height: 40px;
  padding: 0 16px;
}
.alaseo-feature-body {
  display: grid;
  align-content: center;
  flex: 1 1 auto;
  min-height: 0;
  padding: var(--alaseo-feature-pad-y) var(--alaseo-feature-pad-x);
}
.alaseo-page .alaseo-feature-body.chat {
  min-height: 0;
  padding: var(--alaseo-feature-pad-y) var(--alaseo-feature-pad-x);
  align-content: center;
}
.alaseo-page .alaseo-feature-body.logcard {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  padding: var(--alaseo-feature-pad-y) var(--alaseo-feature-pad-x);
}
.alaseo-feature-frame--dark { background: #12151d; border-color: #232833; }
.alaseo-feature-frame--dark .frame-bar { background: #161b26; border-color: #232833; }
.alaseo-feature-frame--dark .frame-bar .t { color: #5f6b7c; }
.alaseo-feature-frame--dark .frame-bar .dot { background: #303748; }
.alaseo-page .alaseo-feature-body .stepper { margin-top: 0; }
.alaseo-page .alaseo-feature-body .step { padding-bottom: 16px; }
.alaseo-page .alaseo-feature-body .step:last-child { padding-bottom: 0; }
.alaseo-page .step .dot2 { border-color: var(--clay); color: var(--clay); }
.alaseo-page .alaseo-track {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
  align-items: stretch;
}
.alaseo-page .alaseo-track .pcard { min-height: 100%; padding: 16px; font-size: 13.5px; }
.alaseo-page .alaseo-track .pcard b { margin-bottom: 7px; font-size: 14px; }
.alaseo-page .alaseo-partners { margin-top: 16px; }
.alaseo-caption { min-height: 40px; margin-top: 12px; line-height: 1.55; }

/* Hero — 브랜드 기준과 자동 포스팅을 한 화면에서 보여주는 운영 콘솔 */
.alaseo-page .alaseo-brand-console {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 22px;
  height: 440px;
  padding: 28px;
  color: #f8f5ef;
  background: #282724;
}
.alaseo-page .alaseo-console-head,
.alaseo-page .alaseo-console-clinic,
.alaseo-page .alaseo-board-head,
.alaseo-page .alaseo-channel-line { display: flex; align-items: center; }
.alaseo-page .alaseo-console-head,
.alaseo-page .alaseo-board-head { justify-content: space-between; gap: 16px; }
.alaseo-page .alaseo-console-clinic { gap: 11px; min-width: 0; }
.alaseo-page .alaseo-console-clinic > b {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  height: 42px;
  border-radius: 9px;
  background: var(--clay);
  color: #fff;
  font-size: 20px;
}
.alaseo-page .alaseo-console-clinic > span,
.alaseo-page .alaseo-board-head > span { display: grid; gap: 4px; min-width: 0; }
.alaseo-page .alaseo-console-clinic small,
.alaseo-page .alaseo-board-head small,
.alaseo-page .alaseo-dna-card > span,
.alaseo-page .alaseo-brand-board span,
.alaseo-page .alaseo-generate-board span,
.alaseo-page .alaseo-result-board small,
.alaseo-page .alaseo-diagnosis-board small {
  font: var(--type-weight-bold) 10px/1.2 var(--mono);
  letter-spacing: .08em;
}
.alaseo-page .alaseo-console-clinic small { color: rgba(255,255,255,.48); }
.alaseo-page .alaseo-console-clinic strong { color: #fff; font-size: 14px; }
.alaseo-page .alaseo-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: #d5e4df;
  font-size: 10px;
  font-weight: var(--type-weight-bold);
}
.alaseo-page .alaseo-live i { width: 7px; height: 7px; border-radius: 50%; background: #7fb8ad; }
.alaseo-page .alaseo-console-grid {
  display: grid;
  grid-template-columns: minmax(180px, .8fr) minmax(0, 1.5fr);
  gap: 14px;
  min-height: 0;
}
.alaseo-page .alaseo-dna-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 22px;
  border-radius: 10px;
  background: var(--clay);
}
.alaseo-page .alaseo-dna-card > span { color: rgba(255,255,255,.62); }
.alaseo-page .alaseo-dna-card .alaseo-ui-title { display: block; margin-top: 20px; color: #fff; font-size: 22px; line-height: 1.36; letter-spacing: -.025em; }
.alaseo-page .alaseo-dna-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; padding-top: 18px; }
.alaseo-page .alaseo-dna-tags b { padding: 6px 8px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; color: #fff; font-size: 9px; }
.alaseo-page .alaseo-publish-board { min-width: 0; padding: 20px; border-radius: 10px; color: var(--ink); background: #fff; }
.alaseo-page .alaseo-board-head small { color: var(--ink-dim); }
.alaseo-page .alaseo-board-head strong { font-size: 15px; }
.alaseo-page .alaseo-board-head em { color: var(--clay); font-size: 10px; font-style: normal; font-weight: var(--type-weight-bold); }
.alaseo-page .alaseo-post-row {
  display: grid;
  grid-template-columns: 42px minmax(0,1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.alaseo-page .alaseo-post-row time { color: var(--ink-dim); font: var(--type-weight-bold) 9px/1 var(--mono); }
.alaseo-page .alaseo-post-row > span { display: grid; gap: 3px; min-width: 0; }
.alaseo-page .alaseo-post-row b { overflow: hidden; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.alaseo-page .alaseo-post-row small { color: var(--ink-dim); font-size: 9.5px; }
.alaseo-page .alaseo-post-row > i { color: var(--ink-dim); font-size: 9px; font-style: normal; font-weight: var(--type-weight-bold); }
.alaseo-page .alaseo-post-row > i.is-done { color: var(--sage); }
.alaseo-page .alaseo-post-row > i.is-ready { color: var(--clay); }
.alaseo-page .alaseo-channel-line { flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.alaseo-page .alaseo-channel-line span { padding: 5px 8px; border-radius: 999px; background: var(--ground-muted); color: var(--ink-soft); font-size: 9px; }
.alaseo-page .alaseo-channel-line strong { margin-left: auto; color: var(--clay); font-size: 9.5px; }

/* 브랜드 보드 */
.alaseo-page .alaseo-brand-board { align-content: stretch; gap: 18px; }
.alaseo-page .alaseo-brand-board-head,
.alaseo-page .alaseo-generate-source,
.alaseo-page .alaseo-result-head,
.alaseo-page .alaseo-diagnosis-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.alaseo-page .alaseo-brand-board-head > span,
.alaseo-page .alaseo-result-head > span,
.alaseo-page .alaseo-diagnosis-head > span { display: grid; gap: 6px; min-width: 0; }
.alaseo-page .alaseo-brand-board-head small,
.alaseo-page .alaseo-result-head small,
.alaseo-page .alaseo-diagnosis-head small { color: var(--ink-dim); }
.alaseo-page .alaseo-brand-board-head strong { max-width: 34ch; font-size: 18px; line-height: 1.45; }
.alaseo-page .alaseo-brand-board-head em,
.alaseo-page .alaseo-result-head > em,
.alaseo-page .alaseo-diagnosis-head > em { color: var(--sage); font-size: 10px; font-style: normal; font-weight: var(--type-weight-bold); white-space: nowrap; }
.alaseo-page .alaseo-brand-board-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 12px; }
.alaseo-page .alaseo-brand-board-grid article { min-width: 0; padding: 18px; border: 1px solid var(--line); border-radius: 9px; background: var(--surface); }
.alaseo-page .alaseo-brand-board-grid article > span { color: var(--ink-dim); }
.alaseo-page .alaseo-brand-board-grid .alaseo-ui-title { display: block; margin-top: 18px; font-size: 18px; line-height: 1.35; }
.alaseo-page .alaseo-brand-board-grid p { margin-top: 9px; color: var(--ink-soft); font-size: 12.5px; line-height: 1.65; }
.alaseo-page .alaseo-brand-board-grid article > div { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.alaseo-page .alaseo-brand-board-grid article > div b { padding: 5px 8px; border-radius: 999px; background: var(--clay-soft); color: var(--clay); font-size: 9px; }
.alaseo-page .alaseo-brand-board-grid dl { display: grid; gap: 12px; margin-top: 18px; }
.alaseo-page .alaseo-brand-board-grid dl div { display: grid; grid-template-columns: 34px 1fr; gap: 9px; margin: 0; }
.alaseo-page .alaseo-brand-board-grid dt { color: var(--clay); font-size: 10px; font-weight: var(--type-weight-bold); }
.alaseo-page .alaseo-brand-board-grid dd { color: var(--ink-soft); font-size: 11px; line-height: 1.5; }
.alaseo-page .alaseo-source-line { display: flex; gap: 12px; color: var(--ink-dim); font-size: 10.5px; }
.alaseo-page .alaseo-source-line span { color: var(--clay); }

/* 콘텐츠 생성 */
.alaseo-page .alaseo-generate-board { grid-template-rows: auto 1fr auto; align-content: stretch; gap: 14px; }
.alaseo-page .alaseo-generate-source { padding: 11px 13px; border-radius: 8px; background: var(--clay-soft); }
.alaseo-page .alaseo-generate-source span { color: var(--clay); }
.alaseo-page .alaseo-generate-source strong { color: var(--ink-soft); font-size: 10.5px; text-align: right; }
.alaseo-page .alaseo-generated-copy { display: grid; align-content: center; padding: 22px; border: 1px solid var(--line); border-radius: 9px; background: var(--surface); }
.alaseo-page .alaseo-generated-copy > span { color: var(--ink-dim); }
.alaseo-page .alaseo-generated-copy .alaseo-ui-title { display: block; max-width: 25ch; margin-top: 12px; font-size: 22px; line-height: 1.3; letter-spacing: -.025em; }
.alaseo-page .alaseo-generated-copy p { max-width: 52ch; margin-top: 10px; color: var(--ink-soft); font-size: 12.5px; line-height: 1.65; }
.alaseo-page .alaseo-variant-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.alaseo-page .alaseo-variant-grid article { display: grid; gap: 5px; padding: 13px; border: 1px solid var(--line); border-radius: 8px; background: var(--ground-muted); }
.alaseo-page .alaseo-variant-grid span { color: var(--clay); }
.alaseo-page .alaseo-variant-grid b { font-size: 12px; }
.alaseo-page .alaseo-variant-grid small { color: var(--ink-dim); font-size: 9.5px; }

/* 검수·승인 */
.alaseo-page .alaseo-review-board { align-content: stretch; gap: 14px; color: #e6ebf1; }
.alaseo-page .alaseo-review-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.alaseo-page .alaseo-review-meta span { color: #778397; }
.alaseo-page .alaseo-review-meta em { color: #7fb8ad; font-size: 10px; font-style: normal; font-weight: var(--type-weight-bold); }
.alaseo-page .alaseo-review-document { display: grid; align-content: center; gap: 10px; padding: 22px; border: 1px solid #2a303d; border-radius: 9px; background: #181c25; }
.alaseo-page .alaseo-review-document small { color: #778397; font: var(--type-weight-bold) 9px/1.2 var(--mono); letter-spacing: .08em; }
.alaseo-page .alaseo-review-document p { color: #d7dde6; font-size: 14px; line-height: 1.65; }
.alaseo-page .alaseo-review-document mark { padding: 2px 4px; border-radius: 4px; background: rgba(177,90,60,.28); color: #f0b29a; }
.alaseo-page .alaseo-review-document .alaseo-review-reason { color: #e0a184; font-size: 10px; }
.alaseo-page .alaseo-review-document p.is-approved { padding-left: 12px; border-left: 2px solid #7fb8ad; color: #cfe4de; }
.alaseo-page .alaseo-review-actions { display: grid; grid-template-columns: auto auto 1fr; gap: 8px; }
.alaseo-page .alaseo-review-actions span,
.alaseo-page .alaseo-review-actions strong { padding: 10px 12px; border: 1px solid #303746; border-radius: 7px; font-size: 10px; text-align: center; }
.alaseo-page .alaseo-review-actions span { color: #8d98a9; }
.alaseo-page .alaseo-review-actions strong { border-color: var(--clay); background: var(--clay); color: #fff; }

/* 핵심 화면 — 승인 후 자동 포스팅 */
.alaseo-page .alaseo-spotlight-heading { display: block; max-width: 760px; }
.alaseo-page .alaseo-spotlight-heading > p { max-width: 62ch; margin-top: 22px; color: var(--ink-soft); line-height: 1.75; }
.alaseo-page .alaseo-publish-showcase { width: 100%; margin: 54px 0 0; }
.alaseo-page .alaseo-publish-showcase-frame { min-height: 520px; }
.alaseo-page .alaseo-publish-showcase-body { display: grid; gap: 22px; min-height: 478px; padding: 30px; color: #f6f2eb; background: #282724; }
.alaseo-page .alaseo-publish-flow { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.alaseo-page .alaseo-publish-flow > span { position: relative; display: grid; grid-template-columns: 28px 1fr; gap: 2px 10px; align-items: center; padding: 13px 16px; border: 1px solid rgba(255,255,255,.13); border-radius: 8px; }
.alaseo-page .alaseo-publish-flow i { grid-row: 1 / 3; display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--clay); color: #fff; font-size: 10px; font-style: normal; }
.alaseo-page .alaseo-publish-flow b { color: #fff; font-size: 12px; }
.alaseo-page .alaseo-publish-flow small { color: rgba(255,255,255,.46); font-size: 9.5px; }
.alaseo-page .alaseo-publish-showcase-grid { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(300px,.65fr); gap: 14px; }
.alaseo-page .alaseo-week-board { min-width: 0; padding: 22px; border-radius: 10px; color: var(--ink); background: #fff; }
.alaseo-page .alaseo-week-head { display: flex; justify-content: space-between; gap: 16px; }
.alaseo-page .alaseo-week-head > span { display: grid; gap: 4px; }
.alaseo-page .alaseo-week-head small { color: var(--ink-dim); font: var(--type-weight-bold) 9px/1.2 var(--mono); letter-spacing: .08em; }
.alaseo-page .alaseo-week-head strong { font-size: 17px; }
.alaseo-page .alaseo-week-head em { color: var(--clay); font-size: 10px; font-style: normal; }
.alaseo-page .alaseo-week-days { display: grid; grid-template-columns: repeat(5,1fr); gap: 8px; margin-top: 22px; }
.alaseo-page .alaseo-week-days > div { display: grid; gap: 8px; min-height: 112px; padding: 13px 11px; border: 1px solid var(--line); border-radius: 8px; background: var(--ground-muted); }
.alaseo-page .alaseo-week-days span { color: var(--ink-dim); font-size: 9px; }
.alaseo-page .alaseo-week-days b { font-size: 18px; }
.alaseo-page .alaseo-week-days small { align-self: end; color: var(--ink-soft); font-size: 9px; line-height: 1.4; }
.alaseo-page .alaseo-week-days .is-done { border-color: #8db7ae; background: var(--sage-soft); }
.alaseo-page .alaseo-week-days .is-ready { border-color: #d7a38f; background: var(--clay-soft); }
.alaseo-page .alaseo-calendar-note { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 14px; padding: 13px 15px; border-radius: 8px; background: #f4f1eb; }
.alaseo-page .alaseo-calendar-note span { font-size: 11px; }
.alaseo-page .alaseo-calendar-note strong { color: var(--clay); font-size: 10px; }
.alaseo-page .alaseo-channel-stack { display: grid; gap: 10px; }
.alaseo-page .alaseo-channel-stack article { display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 12px; padding: 16px; border: 1px solid rgba(255,255,255,.13); border-radius: 9px; background: #31302d; }
.alaseo-page .alaseo-channel-stack article > span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 8px; background: var(--clay); color: #fff; font-weight: var(--type-weight-bold); }
.alaseo-page .alaseo-channel-stack article > span.is-blog { background: #4f7b72; }
.alaseo-page .alaseo-channel-stack article > span.is-social { background: #8d694e; }
.alaseo-page .alaseo-channel-stack article > div { display: grid; gap: 3px; min-width: 0; }
.alaseo-page .alaseo-channel-stack small { color: rgba(255,255,255,.42); font-size: 9px; }
.alaseo-page .alaseo-channel-stack b { overflow: hidden; color: #fff; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.alaseo-page .alaseo-channel-stack em { color: #a8d0c6; font-size: 9px; font-style: normal; font-weight: var(--type-weight-bold); }

/* 브랜딩 운영 결과 */
.alaseo-page .alaseo-result-board { grid-template-rows: auto auto 1fr; align-content: stretch; gap: 14px; }
.alaseo-page .alaseo-result-head strong { font-size: 17px; }
.alaseo-page .alaseo-result-head > em { padding: 6px 9px; border-radius: 999px; background: var(--sage-soft); }
.alaseo-page .alaseo-result-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.alaseo-page .alaseo-result-metrics article { display: grid; gap: 7px; padding: 16px; border: 1px solid var(--line); border-radius: 8px; background: var(--ground-muted); }
.alaseo-page .alaseo-result-metrics small { color: var(--ink-dim); }
.alaseo-page .alaseo-result-metrics strong { font-size: 28px; line-height: 1; }
.alaseo-page .alaseo-result-metrics strong em { margin-left: 2px; color: var(--clay); font-size: 12px; font-style: normal; }
.alaseo-page .alaseo-result-metrics strong.is-text { font-size: 17px; line-height: 1.35; }
.alaseo-page .alaseo-result-metrics article > span { color: var(--ink-soft); font-size: 9.5px; }
.alaseo-page .alaseo-content-footprint { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.alaseo-page .alaseo-content-footprint article { display: grid; align-content: end; gap: 8px; min-height: 122px; padding: 16px; border: 1px solid var(--line); border-top: 3px solid var(--clay); border-radius: 8px; background: var(--surface); }
.alaseo-page .alaseo-content-footprint span { color: var(--clay); }
.alaseo-page .alaseo-content-footprint b { font-size: 12px; line-height: 1.45; }
.alaseo-page .alaseo-content-footprint small { color: var(--ink-dim); font-size: 9.5px; }

/* 도입 전 홈페이지 진단 */
.alaseo-page .alaseo-diagnosis-board { grid-template-rows: auto 1fr auto; align-content: stretch; gap: 16px; }
.alaseo-page .alaseo-diagnosis-head strong { font-size: 17px; }
.alaseo-page .alaseo-diagnosis-head > em { color: var(--clay); }
.alaseo-page .alaseo-diagnosis-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.alaseo-page .alaseo-diagnosis-list > div { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 15px; border: 1px solid var(--line); border-radius: 8px; background: var(--ground-muted); }
.alaseo-page .alaseo-diagnosis-list span { color: var(--ink-soft); font-size: 11px; }
.alaseo-page .alaseo-diagnosis-list b { color: var(--ink-dim); font-size: 10px; }
.alaseo-page .alaseo-diagnosis-list b.is-good { color: var(--sage); }
.alaseo-page .alaseo-diagnosis-list b.is-fix { color: var(--clay); }
.alaseo-page .alaseo-diagnosis-result { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 18px; border: 1px solid #d7a38f; border-radius: 9px; background: var(--clay-soft); }
.alaseo-page .alaseo-diagnosis-result > span { display: grid; gap: 5px; }
.alaseo-page .alaseo-diagnosis-result small { color: var(--clay); }
.alaseo-page .alaseo-diagnosis-result strong { font-size: 13px; }
.alaseo-page .alaseo-diagnosis-result > b { padding: 8px 10px; border-radius: 999px; background: var(--clay); color: #fff; font-size: 9.5px; white-space: nowrap; }

a.partner { transition: color .2s, border-color .2s; }
a.partner:hover { color: var(--clay); border-color: var(--clay); }
.alaseo-page .faq { margin-top: 36px; }
.alaseo-final-cta {
  margin-top: 54px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.alaseo-final-cta h3 {
  color: var(--ink);
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.25;
  letter-spacing: -.03em;
  font-weight: var(--type-weight-semibold);
}
.alaseo-final-cta > p { max-width: 55ch; margin: 14px auto 0; color: var(--ink-soft); }
.alaseo-final-cta .hero-ctas { justify-content: center; margin-top: 26px; }
.alaseo-final-cta .fine { margin-top: 16px; }

@media (max-width: 940px) {
  .alaseo-page .split,
  .alaseo-page .split.rev { grid-template-columns: 1fr; gap: 36px; }
  .alaseo-page .split .copy,
  .alaseo-page .split.rev .copy { position: static; order: 0; max-width: 760px; }
  .alaseo-media { max-width: 760px; margin-inline: auto; }
  .alaseo-page .alaseo-spotlight-heading { max-width: 760px; }
}

@media (max-width: 620px) {
  .alaseo-page {
    --alaseo-feature-pad-x: 18px;
    --alaseo-feature-pad-y: 22px;
  }
  .alaseo-page .split .copy { max-width: none; }
  .alaseo-page .product-head-visual { max-width: none; }
  .alaseo-page .product-head-visual .alaseo-hero-ui { height: auto; min-height: 300px; }
  .alaseo-page .alaseo-brand-console { height: auto; padding: 18px; }
  .alaseo-page .alaseo-console-head { align-items: flex-start; }
  .alaseo-page .alaseo-live { padding: 6px 8px; }
  .alaseo-page .alaseo-console-grid { grid-template-columns: 1fr; }
  .alaseo-page .alaseo-dna-card { min-height: 220px; padding: 18px; }
  .alaseo-page .alaseo-publish-board { padding: 16px; }
  .alaseo-page .alaseo-channel-line strong { width: 100%; margin-left: 0; }
  .alaseo-feature-frame { min-height: 0; }
  .alaseo-page .alaseo-feature-frame--compact { min-height: 320px; }
  .alaseo-page .alaseo-feature-frame--process { min-height: 520px; }
  .alaseo-feature-body { min-height: 300px; }
  .alaseo-page .alaseo-feature-body .step { padding-bottom: 14px; }
  .alaseo-page .alaseo-track { grid-template-columns: 1fr; gap: 10px; }
  .alaseo-page .alaseo-brand-board-head,
  .alaseo-page .alaseo-generate-source,
  .alaseo-page .alaseo-result-head,
  .alaseo-page .alaseo-diagnosis-head { align-items: flex-start; }
  .alaseo-page .alaseo-brand-board-grid { grid-template-columns: 1fr; }
  .alaseo-page .alaseo-source-line { display: grid; gap: 6px; }
  .alaseo-page .alaseo-generate-source { display: grid; }
  .alaseo-page .alaseo-generate-source strong { text-align: left; }
  .alaseo-page .alaseo-variant-grid { grid-template-columns: 1fr; }
  .alaseo-page .alaseo-review-document { padding: 18px; }
  .alaseo-page .alaseo-review-actions { grid-template-columns: 1fr 1fr; }
  .alaseo-page .alaseo-review-actions strong { grid-column: 1 / -1; }
  .alaseo-page .alaseo-publish-showcase { margin-top: 38px; }
  .alaseo-page .alaseo-publish-showcase-frame { min-height: 0; }
  .alaseo-page .alaseo-publish-showcase-body { min-height: 0; padding: 18px; }
  .alaseo-page .alaseo-publish-flow > span { grid-template-columns: 1fr; justify-items: center; padding: 11px 6px; text-align: center; }
  .alaseo-page .alaseo-publish-flow i { grid-row: auto; }
  .alaseo-page .alaseo-publish-showcase-grid { grid-template-columns: 1fr; }
  .alaseo-page .alaseo-week-board { padding: 16px; }
  .alaseo-page .alaseo-week-days { gap: 6px; }
  .alaseo-page .alaseo-week-days > div { min-height: 104px; padding: 10px 7px; }
  .alaseo-page .alaseo-calendar-note { align-items: flex-start; flex-direction: column; }
  .alaseo-page .alaseo-channel-stack article { grid-template-columns: 34px 1fr; padding: 14px; }
  .alaseo-page .alaseo-channel-stack article > span { width: 34px; height: 34px; }
  .alaseo-page .alaseo-channel-stack em { grid-column: 2; }
  .alaseo-page .alaseo-result-metrics { gap: 7px; }
  .alaseo-page .alaseo-result-metrics article { padding: 12px 10px; }
  .alaseo-page .alaseo-result-metrics strong { font-size: 24px; }
  .alaseo-page .alaseo-result-metrics strong.is-text { font-size: 14px; }
  .alaseo-page .alaseo-content-footprint { grid-template-columns: 1fr; }
  .alaseo-page .alaseo-content-footprint article { min-height: 96px; }
  .alaseo-page .alaseo-diagnosis-list { grid-template-columns: 1fr; }
  .alaseo-page .alaseo-diagnosis-result { align-items: flex-start; flex-direction: column; }
  .alaseo-caption { min-height: 0; }
  .alaseo-final-cta .hero-ctas { display: grid; }
  .alaseo-final-cta .hero-ctas .btn { justify-content: center; width: 100%; }
}

/* ============================================================
   크래프티드 목업 킷 — 실물 캡처 대신 코드로 그린 제품 화면
   (닥터 어레인지 화면만 실물 스크린샷, 나머지는 전부 이 킷으로)
   ============================================================ */
.mock {
  padding: 20px;
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(94, 157, 147, .07), transparent 62%),
    radial-gradient(120% 90% at 100% 100%, rgba(177, 90, 60, .06), transparent 62%),
    var(--surface);
}
.mock.center { display: flex; justify-content: center; padding: 28px 20px; }

/* 리스트 행 */
.mk-list { display: grid; gap: 9px; }
.mk-li {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  padding: 11px 14px; font-size: 13px; color: var(--ink-soft); line-height: 1.45; text-align: left;
}
.mk-li b { display: block; color: var(--ink); font-size: 13.5px; font-weight: var(--type-weight-bold); }
.mk-li p { font-size: 12px; color: var(--ink-soft); margin: 0; }
.mk-li > div { flex: 1; min-width: 0; }
.mk-ava {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  background: var(--ground-muted); border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: var(--type-weight-bold); color: var(--ink-soft);
}
.mk-st {
  flex: none; font-size: 11px; font-weight: var(--type-weight-bold); letter-spacing: .02em;
  border: 1px solid var(--line-strong); color: var(--ink-dim);
  border-radius: 999px; padding: 3px 10px; background: var(--ground-muted);
}
.mk-st.ok { color: var(--sage); border-color: var(--sage); background: var(--sage-soft); }
.mk-st.hot { color: var(--clay); border-color: var(--clay); background: var(--clay-soft); }

/* 헤더 행 */
.mk-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 14px; }
.mk-head b { font-size: 14.5px; font-weight: var(--type-weight-bold); color: var(--ink); letter-spacing: -.01em; }
.mk-head .sub { font-size: 11.5px; color: var(--ink-dim); font-family: var(--mono); }

/* 진행 바 */
.mk-bar { margin: 6px 0 2px; }
.mk-bar .track { height: 8px; border-radius: 99px; background: var(--ground-muted); border: 1px solid var(--line); overflow: hidden; }
.mk-bar .fill { height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--sage-bright), var(--sage)); }
.mk-bar .meta { display: flex; justify-content: space-between; font-size: 11.5px; color: var(--ink-soft); margin-top: 6px; }
.mk-bar .meta b { color: var(--ink); font-weight: var(--type-weight-bold); }

/* 드롭존 — 커넥트 교정일기 */
.mk-drop {
  position: relative; border: 1.6px dashed var(--line-strong); border-radius: 14px;
  background: var(--ground-muted); padding: 26px 18px 22px; text-align: center; overflow: hidden;
}
.mk-drop b { display: block; font-size: 13.5px; font-weight: var(--type-weight-bold); color: var(--ink); margin-top: 10px; }
.mk-drop p { font-size: 12px; color: var(--ink-soft); margin-top: 3px; }
.mk-fold {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--surface); border: 1px solid var(--line-strong); border-radius: 10px;
  padding: 7px 14px; font-size: 12px; font-weight: var(--type-weight-bold); color: var(--ink);
  box-shadow: var(--shadow);
}
.play .mk-fold { animation: folddrop 4.6s ease-in-out infinite; }
@keyframes folddrop {
  0%, 12% { transform: translateY(-16px); opacity: 0; }
  26%, 58% { transform: translateY(0); opacity: 1; }
  70%, 100% { transform: translateY(8px); opacity: 0; }
}
.mk-sent { border-color: var(--sage); }
.play .mk-sent { animation: sentflash 4.6s ease-in-out infinite; }
@keyframes sentflash {
  0%, 60% { box-shadow: none; }
  72%, 86% { box-shadow: 0 0 0 3px var(--sage-soft); }
  100% { box-shadow: none; }
}

/* 토글 — CRM 자동화 */
.mk-tg { flex: none; width: 34px; height: 20px; border-radius: 99px; background: var(--sage); position: relative; }
.mk-tg::after { content: ""; position: absolute; top: 3px; right: 3px; width: 14px; height: 14px; border-radius: 50%; background: #fff; }
.mk-tg.off { background: var(--line-strong); }
.mk-tg.off::after { right: auto; left: 3px; }

/* 사진 셀 — 교정일기 그리드 (연출된 플레이스홀더) */
.mk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mk-ph {
  aspect-ratio: 1; border-radius: 10px; position: relative; overflow: hidden;
  background: linear-gradient(145deg, #F6E9E2, #EADFD4 55%, #E3D4C6);
  border: 1px solid var(--line);
}
.mk-ph::before {
  content: ""; position: absolute; left: 18%; right: 18%; bottom: 26%; height: 34%;
  border-radius: 50% 50% 46% 46% / 100% 100% 40% 40%;
  background: rgba(255, 253, 248, .85); box-shadow: 0 1px 2px rgba(45, 44, 40, .12);
}
.mk-ph.sagey { background: linear-gradient(145deg, #E7F0ED, #DCE9E4 55%, #D2E0DA); }
.mk-ph .m { position: absolute; left: 7px; bottom: 5px; font-size: 10px; font-weight: var(--type-weight-bold); color: rgba(45, 44, 40, .55); font-family: var(--mono); }

/* 스캔 카드 — AI 구강체크 */
.mk-scan {
  position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, #F3E3DA, #EBD9CB 60%, #E2CDBB);
  border: 1px solid var(--line);
}
.mk-scan::before {
  content: ""; position: absolute; left: 14%; right: 14%; bottom: 18%; height: 40%;
  border-radius: 50% 50% 46% 46% / 100% 100% 42% 42%;
  background: rgba(255, 253, 248, .9); box-shadow: 0 2px 5px rgba(45, 44, 40, .14);
}
.mk-scan .corner { position: absolute; width: 16px; height: 16px; border: 2px solid rgba(45, 44, 40, .4); }
.mk-scan .c1 { top: 9px; left: 9px; border-right: 0; border-bottom: 0; border-radius: 4px 0 0 0; }
.mk-scan .c2 { top: 9px; right: 9px; border-left: 0; border-bottom: 0; border-radius: 0 4px 0 0; }
.mk-scan .c3 { bottom: 9px; left: 9px; border-right: 0; border-top: 0; border-radius: 0 0 0 4px; }
.mk-scan .c4 { bottom: 9px; right: 9px; border-left: 0; border-top: 0; border-radius: 0 0 4px 0; }
.mk-scan .beam {
  position: absolute; left: 4%; right: 4%; top: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--sage-bright), transparent);
  box-shadow: 0 0 12px 2px rgba(94, 157, 147, .35);
}
.play .mk-scan .beam { animation: scanbeam 3.8s ease-in-out infinite; }
@keyframes scanbeam { 0%, 8% { top: 6%; opacity: 0; } 14% { opacity: 1; } 82% { top: 92%; opacity: 1; } 95%, 100% { top: 92%; opacity: 0; } }
.mk-pin { position: absolute; width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--clay); background: rgba(177, 90, 60, .18); }
.mk-pin::after { content: ""; position: absolute; inset: 5px; border-radius: 50%; background: var(--clay); }

/* 스코어 링 */
.mk-ring { display: flex; align-items: center; gap: 14px; }
.mk-ring svg { width: 62px; height: 62px; flex: none; }
.mk-ring .rt { fill: none; stroke: var(--line); stroke-width: 6; }
.mk-ring .rf { fill: none; stroke: var(--sage); stroke-width: 6; stroke-linecap: round; }
.mk-ring .rv2 { font-size: 15px; font-weight: var(--type-weight-bold); fill: var(--ink); }
.mk-ring b { display: block; font-size: 14px; font-weight: var(--type-weight-bold); color: var(--ink); }
.mk-ring p { font-size: 12px; color: var(--ink-soft); margin-top: 2px; }

/* 타임라인 — 마이데이터 */
.mk-tl { display: grid; gap: 0; }
.mk-tl .row { display: grid; grid-template-columns: 20px 1fr; gap: 12px; position: relative; padding-bottom: 16px; }
.mk-tl .row::before { content: ""; position: absolute; left: 9px; top: 18px; bottom: -2px; width: 2px; background: var(--line); }
.mk-tl .row:last-child::before { display: none; }
.mk-tl .dot3 { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--sage); background: var(--surface); margin-top: 1px; }
.mk-tl .row.clay .dot3 { border-color: var(--clay); }
.mk-tl b { display: block; font-size: 13px; font-weight: var(--type-weight-bold); color: var(--ink); }
.mk-tl p { font-size: 11.5px; color: var(--ink-soft); }
.mk-tl .yr2 { font-family: var(--mono); font-size: 10.5px; color: var(--ink-dim); }

/* 칩 행 */
.mk-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.mk-chip {
  font-size: 11.5px; font-weight: var(--type-weight-bold); color: var(--ink-soft);
  border: 1px solid var(--line-strong); border-radius: 999px; padding: 4px 12px; background: var(--surface);
}
.mk-chip.on { color: var(--sage); border-color: var(--sage); background: var(--sage-soft); }
.mk-chip.hot { color: var(--clay); border-color: var(--clay); background: var(--clay-soft); }

/* 목업 내부 버튼(비활성 장식) */
.mk-btn {
  display: block; text-align: center; font-size: 13px; font-weight: var(--type-weight-bold);
  border-radius: 11px; padding: 11px 14px; background: #436962; color: #F3FAF8; pointer-events: none;
}
.mk-btn.ghost { background: var(--ground-muted); color: var(--ink-soft); border: 1px solid var(--line-strong); }

/* 커넥트 워크스페이스 — 사이드 레일 + 캔버스 */
.mk-work { display: grid; grid-template-columns: 132px 1fr; gap: 16px; }
.mk-rail { display: grid; gap: 6px; align-content: start; }
.mk-rail span {
  font-size: 12px; font-weight: var(--type-weight-bold); color: var(--ink-soft);
  border-radius: 9px; padding: 8px 12px;
}
.mk-rail span.on { background: var(--sage-soft); color: var(--sage); }
.mk-canvas { display: grid; gap: 10px; align-content: start; }
@media (max-width: 560px) { .mk-work { grid-template-columns: 1fr; } .mk-rail { display: flex; flex-wrap: wrap; } }

/* ---------- trust ---------- */
.vault { max-width: 780px; margin: 0 auto; text-align: center; }
.vault-demo {
  font-family: var(--mono); font-size: 14px; text-align: left;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-s);
  padding: 22px 26px; margin: 34px auto 30px; max-width: 560px; line-height: 2.1; color: var(--ink-soft);
  box-shadow: var(--shadow);
}
.tbadges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 34px; }
.tbadge { border: 1px solid var(--line); border-radius: var(--r-s); background: var(--surface); padding: 18px 16px; text-align: center; }
.tbadge .k { font-family: var(--mono); font-size: var(--type-label-size); line-height: var(--type-label-line); font-weight: var(--type-weight-bold); letter-spacing: .1em; color: var(--clay); }
.tbadge p { font-size: var(--type-body-size); color: var(--ink-soft); margin-top: 7px; line-height: var(--type-body-line); }
@media (max-width: 720px) { .tbadges { grid-template-columns: 1fr; } }
.answer { font-size: clamp(22px, 3vw, 30px); font-weight: var(--type-weight-bold); letter-spacing: var(--type-tracking-title); color: var(--clay); margin: 12px 0 18px; }

/* ---------- B2G stepper & 협력 ---------- */
.stepper { display: grid; gap: 0; margin-top: 8px; }
.step { display: grid; grid-template-columns: 26px 1fr; gap: 16px; position: relative; padding-bottom: 22px; }
.step::before {
  content: ""; position: absolute; left: 12px; top: 24px; bottom: 0; width: 2px;
  background: var(--line-strong);
}
.step:last-child::before { display: none; }
.step .dot2 {
  width: 26px; height: 26px; border-radius: 50%; background: var(--surface);
  border: 2px solid var(--sage); display: flex; align-items: center; justify-content: center;
  font-size: var(--type-caption-size); font-weight: var(--type-weight-bold); color: var(--sage); font-variant-numeric: tabular-nums;
}
.step b { color: var(--ink); font-size: var(--type-body-size); line-height: var(--type-body-line); font-weight: var(--type-weight-bold); }
.step p { font-size: var(--type-body-sm-size); line-height: var(--type-body-sm-line); color: var(--ink-soft); }
.partners { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.partner {
  font-size: var(--type-label-size); line-height: var(--type-label-line); font-weight: var(--type-weight-semibold); color: var(--ink-body);
  border: 1px solid var(--line-strong); border-radius: 999px; padding: 7px 16px; background: var(--surface);
}
.partner b { color: var(--ink); }

/* ---------- proof (카운트업 유일 1곳) ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; margin: 54px 0 8px; }
.stat .v {
  font-family: var(--font-display); font-size: clamp(48px, 6vw, 72px); font-weight: var(--weight-semibold); letter-spacing: var(--tracking-display);
  color: var(--ink); font-variant-numeric: tabular-nums; line-height: 1.05;
}
.stat .v small { font-size: .45em; font-weight: var(--type-weight-bold); color: var(--clay); letter-spacing: -.01em; }
.stat .l { font-size: var(--type-caption-size); line-height: var(--type-caption-line); font-weight: var(--weight-semibold); letter-spacing: .1em; text-transform: uppercase; color: var(--ink-dim); margin-top: 10px; }
@media (max-width: 880px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 28px; } }

.founders { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 60px; }
.founder {
  display: flex; gap: 18px; align-items: center;
  border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); padding: 20px 22px;
}
.founder img { width: 74px; height: 74px; border-radius: 50%; object-fit: cover; filter: grayscale(.4); }
.founder b { color: var(--ink); font-size: var(--type-body-size); line-height: var(--type-body-line); font-weight: var(--type-weight-bold); display: block; }
.founder p { font-size: var(--type-body-size); color: var(--ink-soft); line-height: var(--type-body-line); }
@media (max-width: 720px) { .founders { grid-template-columns: 1fr; } }

/* ---------- path ladder + FAQ ---------- */
.ladder { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 46px; }
.rung {
  border: 1px solid var(--line); border-radius: var(--r); background: var(--surface);
  padding: 26px 26px 24px; display: flex; flex-direction: column; gap: 10px;
  transition: transform .25s ease, border-color .25s ease;
}
.rung:hover { transform: translateY(-4px); border-color: var(--clay); }
.rung.sage:hover { border-color: var(--sage); }
.rung .from { font-size: var(--type-label-size); line-height: var(--type-label-line); font-weight: var(--type-weight-bold); letter-spacing: .14em; text-transform: uppercase; color: var(--ink-dim); }
.rung h3 { font-size: var(--type-title-size); line-height: var(--type-title-line); font-weight: var(--type-weight-bold); letter-spacing: var(--type-tracking-title); }
.rung .say { font-size: var(--type-body-size); line-height: var(--type-body-line); color: var(--ink-soft); flex: 1; }
.rung .say q { quotes: "\201C" "\201D"; }
.rung .btn-line { align-self: flex-start; }
@media (max-width: 880px) { .ladder { grid-template-columns: 1fr; } }
.converge { display: flex; justify-content: center; padding: 8px 0 0; }
.converge svg { width: min(560px, 80%); height: 60px; display: block; }
.converge path { fill: none; stroke: var(--clay); stroke-width: 1.5; opacity: .55; }

.faq { max-width: 780px; margin: 70px auto 0; }
.faq h3 { margin-bottom: 18px; }
.faq details { border: 1px solid var(--line); border-radius: var(--r-s); background: var(--surface); margin-bottom: 10px; padding: 0 22px; }
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
  padding: 17px 0; font-size: var(--type-body-size); line-height: var(--type-body-line); font-weight: var(--type-weight-bold); color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--clay); font-size: 20px; font-weight: var(--type-weight-regular); transition: transform .25s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 18px; font-size: var(--type-body-size); line-height: var(--type-body-line); color: var(--ink-soft); }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 5fr 6fr; gap: 56px; align-items: start; }
@media (max-width: 940px) { .contact-grid { grid-template-columns: 1fr; } }
.channels { display: flex; flex-direction: column; gap: 10px; margin-top: 30px; }
.channel {
  display: flex; align-items: center; gap: 12px; font-size: var(--type-body-size); line-height: var(--type-body-line); font-weight: var(--type-weight-semibold); color: var(--ink);
  border: 1px solid var(--line); border-radius: var(--r-s); background: var(--surface); padding: 14px 18px;
  transition: border-color .25s;
}
.channel:hover { border-color: var(--clay); }
.channel .k { font-size: var(--type-label-size); line-height: var(--type-label-line); font-weight: var(--type-weight-bold); letter-spacing: .1em; color: var(--ink-dim); text-transform: uppercase; min-width: 52px; }

.form {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: 30px; box-shadow: var(--shadow); display: grid; gap: 16px;
}
.form label { font-size: var(--type-label-size); line-height: var(--type-label-line); font-weight: var(--type-weight-bold); color: var(--ink-soft); display: grid; gap: 7px; }
.form input, .form select, .form textarea {
  font: inherit; font-size: var(--type-body-size); line-height: var(--type-body-line); color: var(--ink);
  background: var(--ground-muted); border: 1px solid var(--line-strong); border-radius: 10px;
  padding: 12px 14px; width: 100%;
}
.form input:focus:not(:focus-visible), .form select:focus:not(:focus-visible), .form textarea:focus:not(:focus-visible) { outline: none; }
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--clay); }
.form input:focus-visible, .form select:focus-visible, .form textarea:focus-visible {
  outline: 2px solid var(--clay); outline-offset: 2px; border-color: var(--clay);
}
.form textarea { min-height: 110px; resize: vertical; }
.form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .form .row2 { grid-template-columns: 1fr; } }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: var(--type-body-sm-size); line-height: var(--type-body-sm-line); color: var(--ink-soft); font-weight: var(--type-weight-medium); }
.consent input { width: 16px; height: 16px; margin-top: 3px; accent-color: var(--clay-deep); flex: none; }
.consent a { color: var(--clay); text-decoration: underline; text-underline-offset: 3px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form .btn { justify-content: center; }
.form .btn[disabled] { opacity: .55; cursor: default; }
.form .row2.org-only { display: none; }
.form.b2g .row2.org-only { display: grid; }

.toast {
  position: fixed; left: 50%; bottom: 30px; transform: translate(-50%, 20px);
  background: var(--surface); color: var(--ink); border: 1px solid var(--sage);
  border-radius: 999px; padding: 13px 26px; font-size: var(--type-body-sm-size); line-height: var(--type-body-sm-line); font-weight: var(--type-weight-semibold);
  opacity: 0; pointer-events: none; transition: opacity .35s, transform .35s; z-index: 80;
  box-shadow: var(--shadow);
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast.err { border-color: var(--clay-deep); }

/* ---------- footer ---------- */
footer.scene-night { border-top: none; padding: 56px 0 64px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 36px; }
@media (max-width: 720px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-grid h4 { font-size: var(--type-label-size); line-height: var(--type-label-line); font-weight: var(--weight-semibold); letter-spacing: .12em; text-transform: uppercase; color: var(--ink-dim); margin-bottom: 14px; }
.foot-grid ul { list-style: none; display: grid; gap: 9px; }
.foot-grid a { font-size: var(--type-body-sm-size); line-height: var(--type-body-sm-line); color: var(--ink-soft); }
.foot-grid a:hover { color: var(--ink); }
.foot-facts { font-size: var(--type-caption-size); color: var(--ink-dim); line-height: var(--type-caption-line); margin-top: 20px; }
.foot-brand { font-family: var(--font-display); font-size: 22px; font-weight: var(--weight-bold); letter-spacing: var(--tracking-title); color: var(--ink); }
.foot-brand i { font-style: normal; color: var(--clay); }

/* ---------- lightbox ---------- */
dialog.lightbox {
  border: none; background: transparent; max-width: min(1200px, 94vw); padding: 0; cursor: zoom-out; position: relative;
}
dialog.lightbox::backdrop { background: rgba(5, 7, 11, .82); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
dialog.lightbox img { width: 100%; border-radius: 10px; }
dialog.lightbox .lb-close {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(11, 13, 18, .72); color: #F1F5F9;
  font-size: 22px; line-height: 1; display: flex; align-items: center; justify-content: center;
}
dialog.lightbox .lb-close:hover { background: rgba(11, 13, 18, .92); }
.shot:focus-visible { outline: 2px solid var(--clay); outline-offset: 3px; }

/* ---------- 서브페이지 (company/privacy/terms) ---------- */
.page-head { padding: 160px 0 60px; }
.page-head .fine { font-size: var(--type-body-sm-size); line-height: var(--type-body-sm-line); }

/* ---------- 회사 소개: 미션·비전 → 여정 → 오시는 길 ---------- */
.company-page { background: #f6f5f1; }
.company-mv { padding: 108px 0 84px; background: #fff; }
.company-mv > .wrap { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(44px, 5vw, 72px); align-items: start; }
.company-heading { max-width: 760px; }
.company-heading h1 { max-width: 760px; margin: 0; font-size: var(--type-display-size); line-height: var(--type-display-line); letter-spacing: var(--type-tracking-display); font-weight: var(--type-weight-bold); }
.mv-editorial { display: block; margin-top: 0; border-top: 2px solid var(--ink); }
.mv-column {
  position: relative; display: grid;
  grid-template-columns: 92px minmax(0, 1fr); grid-template-areas: "label statement" ". copy";
  column-gap: clamp(24px, 3vw, 44px); row-gap: 18px;
  align-items: start; min-height: 0; padding: 34px 0 38px; border-bottom: 1px solid var(--line);
}
.mv-column + .mv-column { margin: 0; }
.mv-column .mv-label {
  grid-area: label; display: flex; align-items: center; gap: 10px; margin: 0; padding-top: 6px;
  color: var(--sage-deep); font-size: var(--type-label-size); line-height: var(--type-label-line); letter-spacing: .06em; font-weight: var(--type-weight-bold);
}
.mv-column .mv-label::before { content: ""; width: 18px; height: 2px; border-radius: 999px; background: var(--sage); }
.mv-column:nth-child(2) .mv-label { color: var(--clay-strong); }
.mv-column:nth-child(2) .mv-label::before { background: var(--clay); }
.mv-statement { grid-area: statement; display: block; max-width: 560px; color: var(--ink); font-size: var(--type-title-size); line-height: var(--type-title-line); letter-spacing: var(--type-tracking-title); font-weight: var(--type-weight-bold); }
.pending-pill { display: inline-flex; padding: 7px 11px; border-radius: 999px; background: var(--sage-soft); color: var(--sage-deep); font-size: var(--type-label-size); line-height: var(--type-label-line); font-weight: var(--type-weight-semibold); }
.mv-column p { grid-area: copy; max-width: 60ch; margin: 0; color: var(--ink-soft); font-size: var(--type-body-size); line-height: var(--type-body-line); }
.copy-lines, .journey-placeholder-lines { display: grid; gap: 9px; margin-top: 36px; }
.copy-lines i, .journey-placeholder-lines i { display: block; height: 7px; border-radius: 999px; background: #efeee9; }
.copy-lines i:nth-child(1) { width: 90%; }.copy-lines i:nth-child(2) { width: 74%; }.copy-lines i:nth-child(3) { width: 43%; }

.company-journey { padding: 140px 0 155px; color: var(--ink-body); background: #f6f6f3; }
.journey-head { display: flex; justify-content: space-between; align-items: end; gap: 60px; }
.journey-head h2 { margin: 0; font-size: var(--type-heading-size); line-height: var(--type-heading-line); letter-spacing: var(--type-tracking-heading); font-weight: var(--type-weight-bold); }
.journey-head p { max-width: 520px; margin: 22px 0 0; color: var(--ink-soft); font-size: var(--type-body-size); line-height: var(--type-body-line); }
.journey-controls { display: flex; gap: 9px; }
.journey-controls button {
  display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid var(--line-strong); border-radius: 50%;
  background: var(--surface); color: var(--ink); font-size: 21px; cursor: pointer; transition: transform .2s, background .2s, border-color .2s;
}
.journey-controls button:hover { transform: translateY(-3px); border-color: var(--sage); background: var(--sage-soft); }
.journey-years { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 95px; border-bottom: 1px solid var(--line-strong); }
.journey-years button {
  position: relative; padding: 0 0 24px; border: 0; background: transparent; color: var(--ink-dim);
  font: var(--weight-semibold) clamp(30px, 4.2vw, 52px) var(--mono); text-align: left; cursor: pointer; transition: color .25s;
}
.journey-years button::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: transparent; }
.journey-years button.active { color: var(--ink); }
.journey-years button.active::after { background: var(--sage); }
.journey-panel { position: relative; min-height: 270px; padding: 48px 45% 38px 0; }
.pending-pill.dark { background: rgba(122,166,157,.12); color: #8eb9b0; }
.journey-panel h3 { margin: 28px 0 0; font-size: var(--type-title-size); line-height: var(--type-title-line); font-weight: var(--type-weight-bold); }
.journey-panel h3 strong { color: #e0a184; }
.journey-panel p { max-width: 560px; margin: 14px 0 0; color: var(--ink-soft); font-size: var(--type-body-size); line-height: var(--type-body-line); }
.journey-placeholder-lines { position: absolute; right: 0; top: 48px; width: 38%; margin: 0; }
.journey-placeholder-lines i { background: var(--line); }
.journey-placeholder-lines i:nth-child(1) { width: 100%; }.journey-placeholder-lines i:nth-child(2) { width: 82%; }.journey-placeholder-lines i:nth-child(3) { width: 55%; }

.company-locations { padding: 145px 0 150px; background: var(--editorial-white, #fff); }
.locations-head { display: flex; justify-content: space-between; align-items: end; gap: 48px; }
.locations-head h2 { margin: 0; font-size: var(--type-heading-size); line-height: var(--type-heading-line); letter-spacing: var(--type-tracking-heading); font-weight: var(--type-weight-bold); }
.locations-head p { margin: 0; color: var(--ink-soft); font-size: var(--type-body-size); line-height: var(--type-body-line); }
.locations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 90px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.location-card { position: relative; min-height: 285px; padding: 38px 32px 32px; border-left: 1px solid var(--line); text-align: left; transition: background .25s, color .25s, box-shadow .25s; }
.location-card:last-child { border-right: 1px solid var(--line); }
.location-card:hover { background: rgba(255,255,255,.56); }
.location-card.is-active { background: #fff; box-shadow: inset 0 -3px var(--sage); }
.location-title { display: block; color: var(--ink); font-size: var(--type-title-size); line-height: var(--type-title-line); font-weight: var(--type-weight-bold); letter-spacing: var(--type-tracking-title); }
.location-address { display: block; margin-top: 82px; color: var(--ink-soft); font-size: var(--type-body-size); line-height: var(--type-body-line); word-break: keep-all; }
.location-action { display: flex; justify-content: space-between; align-items: center; margin-top: 22px; color: var(--ink-dim); font-size: var(--type-label-size); line-height: var(--type-label-line); font-weight: var(--type-weight-semibold); }
.location-action i { font-style: normal; font-size: 15px; transition: transform .2s; }
.location-card:hover .location-action i { transform: translateX(4px); }
.location-card.is-active .location-action { color: var(--sage-deep); }
.location-map { margin-top: 28px; overflow: hidden; border: 1px solid var(--line); background: #fff; }
.location-map-copy { display: flex; justify-content: space-between; align-items: end; gap: 40px; padding: 30px 34px; }
.location-map-copy span { color: var(--sage-deep); font-size: var(--type-label-size); line-height: var(--type-label-line); font-weight: var(--type-weight-semibold); }
.location-map-copy h3 { margin-top: 4px; font-size: var(--type-title-size); line-height: var(--type-title-line); letter-spacing: var(--type-tracking-title); font-weight: var(--type-weight-bold); }
.location-map-copy p { margin-top: 5px; color: var(--ink-soft); font-size: var(--type-body-sm-size); line-height: var(--type-body-sm-line); }
.location-map-copy > a { flex: 0 0 auto; padding-bottom: 3px; border-bottom: 1px solid var(--line-strong); color: var(--ink); font-size: var(--type-label-size); line-height: var(--type-label-line); font-weight: var(--type-weight-bold); }
.location-map-copy > a span { margin-left: 5px; color: inherit; font-size: inherit; }
.location-map iframe { display: block; width: 100%; height: 460px; border: 0; background: var(--ground-muted); }
.locations-contact { display: flex; justify-content: flex-end; align-items: center; gap: 30px; padding-top: 32px; }
.locations-contact div { display: flex; gap: 28px; }
.locations-contact a { color: var(--ink); font: var(--type-weight-semibold) var(--type-body-size)/var(--type-body-line) var(--mono); border-bottom: 1px solid var(--line-strong); }
.locations-contact a:hover { color: var(--sage-deep); }

@media (max-width: 820px) {
  .company-mv { padding: 108px 0 72px; }
  .company-mv > .wrap { grid-template-columns: 1fr; gap: 48px; }
  .company-heading h1 { max-width: 720px; }
  .mv-editorial { margin-top: 0; }
  .mv-column {
    grid-template-columns: 90px minmax(0, 1fr); grid-template-areas: "label statement" ". copy";
    column-gap: 30px; row-gap: 16px; padding: 32px 0 36px;
  }
  .journey-head { align-items: flex-end; }
  .company-journey { padding: 100px 0 110px; }
  .journey-years { grid-template-columns: repeat(3, 1fr); overflow: hidden; }
  .journey-years button:nth-child(n+4) { display: none; }
  .journey-panel { padding-right: 0; }
  .journey-placeholder-lines { position: static; width: 100%; margin-top: 38px; }
  .company-locations { padding: 105px 0 110px; }
  .locations-head { align-items: flex-start; flex-direction: column; }
  .locations-grid { grid-template-columns: 1fr; margin-top: 60px; }
  .location-card { min-height: auto; padding: 32px 26px 35px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .location-card:last-child { border-bottom: 0; }
  .location-address { margin-top: 45px; }
  .location-map-copy { align-items: flex-start; flex-direction: column; padding: 25px 26px; }
  .location-map iframe { height: 390px; }
}

@media (max-width: 520px) {
  .company-heading h1 { font-size: var(--type-display-size); }
  .company-mv > .wrap { gap: 34px; }
  .mv-column { grid-template-columns: 1fr; grid-template-areas: "label" "statement" "copy"; row-gap: 16px; padding: 30px 0 34px; }
  .mv-column .mv-label { padding-top: 0; font-size: var(--type-label-size); }
  .mv-column p { padding-top: 0; }
  .journey-head { align-items: flex-start; flex-direction: column; }
  .journey-head h2 { font-size: var(--type-heading-size); }
  .journey-years { margin-top: 65px; }
  .journey-years button { font-size: 27px; }
  .locations-head h2 { font-size: var(--type-heading-size); }
  .locations-contact { align-items: flex-start; flex-direction: column; }
  .locations-contact div { align-items: flex-start; flex-direction: column; gap: 11px; }
  .location-map iframe { height: 330px; }
}

/* ---------- CEO 소개 ---------- */
.ceo-page { background: #fff; }
.ceo-intro { padding: 110px 0 105px; background: #fff; }
.ceo-heading h1 { margin: 0; font-size: var(--type-display-size); line-height: var(--type-display-line); letter-spacing: var(--type-tracking-display); font-weight: var(--type-weight-bold); }
.ceo-editorial { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(44px, 6vw, 84px); margin-top: 62px; }
.ceo-column { min-width: 0; }
.ceo-overview { display: grid; grid-template-columns: minmax(220px, 1fr) minmax(0, 1fr); gap: clamp(24px, 2.5vw, 34px); align-items: center; }
.ceo-photo { display: grid; width: 100%; aspect-ratio: 3 / 4; margin: 0; overflow: hidden; place-items: center; background: #f7f7f5; }
.ceo-photo img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: center; }
.ceo-photo--kim img { object-fit: cover; }
.ceo-profile-copy { min-width: 0; }
.ceo-position { display: block; color: var(--ink-dim); font-size: var(--type-label-size); line-height: var(--type-label-line); font-weight: var(--type-weight-semibold); }
.ceo-column h2 { margin: 5px 0 20px; font-size: var(--type-title-size); line-height: var(--type-title-line); letter-spacing: var(--type-tracking-title); font-weight: var(--type-weight-bold); }
.ceo-statement { display: block; color: var(--ink); font-size: var(--type-body-lg-size); line-height: var(--type-body-lg-line); letter-spacing: var(--type-tracking-title); font-weight: var(--type-weight-semibold); word-break: keep-all; }
.ceo-profile-copy > p { margin-top: 11px; color: var(--ink-soft); font-size: var(--type-body-size); line-height: var(--type-body-line); word-break: keep-all; }
.ceo-history { margin-top: 30px; }
.ceo-history-title { display: block; margin-bottom: 8px; color: var(--ink); font-size: var(--type-label-size); line-height: var(--type-label-line); font-weight: var(--type-weight-semibold); }
.ceo-history ul { list-style: none; margin: 0; border-top: 1px solid var(--line); }
.ceo-history li { position: relative; padding: 8px 0 8px 16px; border-bottom: 1px solid var(--line); color: var(--ink-body); font-size: var(--type-body-size); line-height: var(--type-body-line); }
.ceo-history li::before { content: "–"; position: absolute; left: 0; color: var(--ink-dim); }
.ceo-principle { padding: 95px 0; background: #f7f7f5; }
.ceo-principle-grid { display: grid; grid-template-columns: 1fr .8fr; grid-template-areas: "copy heading"; gap: 100px; align-items: start; }
.ceo-principle-grid > h2 { grid-area: heading; }
.ceo-principle h2 { margin: 0; color: var(--ink); font-size: var(--type-heading-size); line-height: var(--type-heading-line); letter-spacing: var(--type-tracking-heading); font-weight: var(--type-weight-bold); }
.ceo-principle-copy { grid-area: copy; padding-top: 10px; }
.ceo-principle-copy p { color: var(--ink-soft); font-size: var(--type-body-size); line-height: var(--type-body-line); }
.ceo-principle-copy p + p { margin-top: 22px; }
.ceo-closing { padding: 90px 0 100px; background: #fff; }
.ceo-closing-in { display: flex; justify-content: space-between; align-items: end; gap: 60px; }
.ceo-closing h2 { max-width: 760px; margin: 0; font-size: var(--type-heading-size); line-height: var(--type-heading-line); letter-spacing: var(--type-tracking-heading); font-weight: var(--type-weight-bold); }
.ceo-closing a { flex: 0 0 auto; padding: 12px 0 8px; border-bottom: 1px solid var(--ink); color: var(--ink); font-size: var(--type-label-size); line-height: var(--type-label-line); font-weight: var(--type-weight-bold); }

@media (max-width: 820px) {
  .ceo-intro { padding: 100px 0 80px; }
  .ceo-editorial { grid-template-columns: 1fr; gap: 56px; margin-top: 48px; }
  .ceo-column + .ceo-column { padding-top: 56px; border-top: 1px solid var(--line); }
  .ceo-overview { grid-template-columns: minmax(260px, .9fr) minmax(0, 1.1fr); }
  .ceo-principle { padding: 80px 0; }
  .ceo-principle-grid { grid-template-columns: 1fr; grid-template-areas: "heading" "copy"; gap: 55px; }
  .ceo-closing { padding: 100px 0 110px; }
  .ceo-closing-in { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 520px) {
  .ceo-overview { grid-template-columns: 1fr; gap: 26px; align-items: start; }
  .ceo-photo { width: min(100%, 320px); justify-self: start; }
  .ceo-column h2 { margin-bottom: 15px; font-size: var(--type-title-size); }
  .ceo-statement br { display: none; }
  .ceo-profile-copy > p { font-size: var(--type-body-size); }
  .ceo-history { margin-top: 17px; }
  .ceo-history li { padding: 5px 0 5px 13px; }
  .ceo-principle h2 { font-size: var(--type-heading-size); }
  .ceo-closing h2 { font-size: var(--type-heading-size); }
}

.prose { max-width: 780px; }
.prose h2 { font-size: var(--type-title-size); line-height: var(--type-title-line); font-weight: var(--type-weight-bold); letter-spacing: var(--type-tracking-title); color: var(--ink); margin: 44px 0 14px; }
.prose h3 { font-size: var(--type-title-size); line-height: var(--type-title-line); font-weight: var(--type-weight-bold); color: var(--ink); margin: 30px 0 10px; }
.prose p, .prose li { font-size: var(--type-body-size); line-height: var(--type-body-line); color: var(--ink-body); margin-bottom: 12px; }
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 16px; }
.prose li { margin-bottom: 6px; }
.prose strong { color: var(--ink); }
.prose table { border-collapse: collapse; width: 100%; font-size: var(--type-body-size); line-height: var(--type-body-line); margin: 14px 0 22px; }
.prose th, .prose td { border: 1px solid var(--line); padding: 10px 14px; text-align: left; color: var(--ink-body); }
.prose th { background: var(--surface); color: var(--ink); font-weight: var(--type-weight-bold); }
.tablescroll { overflow-x: auto; }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv { opacity: 1; transform: none; transition: none; }
  .logcard li { opacity: 1; transform: none; transition: none; }
  .logcard .caret,
  .maskline.play .cover, .phone.play .pcard.arrive, .baton-line .dotmove,
  .loop-svg .inner, .loop-svg .node.now .pulse,
  .play .mk-fold, .play .mk-sent, .play .mk-scan .beam { animation: none; }
  .maskline .cover { transform: scaleX(1); }
  .pcard.arrive { opacity: 1; }
  .mk-fold { transform: none; opacity: 1; }
  .mk-scan .beam { display: none; }
  .loop-step { opacity: 1; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
