/* 공개 홈페이지(dodannylab.com) — 라이트 한 벌. 네 색을 골라 정했다(2026-09-06 길록):
   노랑 #FFC629(범블) 포인트 · 갈색 #7A4A2A(앰버) 보조 · 흰색 #F6EFE4 바탕 · 검정 #191919(카카오) 글자.
   다크 판은 뺐다 — 라이트만 간다. 토큰의 정본은 platform/DESIGN.md(공개 페이지 절).
   움직임은 스크롤이 만든다(site.js): .reveal 리빌, 히어로 장면 .bm 은 .in 뒤 CSS 박자. prefers-reduced-motion 이면 전부 정지. */
:root {
  --bg: #f6efe4; --bg-2: #ebe4da; --card: #fbf8f3; --card-2: #efe9de;
  --line: rgba(25,25,25,.11); --line-2: rgba(25,25,25,.19);
  --fg: #191919; --muted: #5b5956; --faint: #938f89;
  --accent: #ffc629; --accent-hover: #ffcf4b; --accent-container: rgba(255,198,41,.34); --accent-text: #7a4a2a; --on-accent: #191919;
  --accent2: #7a4a2a; --accent2-container: rgba(255,198,41,.34); --accent2-text: #7a4a2a;
  --ok-container: rgba(46,160,110,.14); --on-ok-container: #1e7a50;
  --warn-container: rgba(255,198,41,.34); --on-warn-container: #7a4a2a;
  --bad-container: rgba(220,70,70,.12); --on-bad-container: #b3261e;
  --bad: #c0392b;
  --top-bg: rgba(246,239,228,.84); --shadow: rgba(25,25,25,.12);
  --col: 1040px; --gut: 24px;   /* 기둥 하나 — 머리부터 꼬리까지 모든 절이 이 폭 안에 선다. 폭을 바꾸려면 여기만 */
  font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
  font-size: 16px; line-height: 26px; color: var(--fg); background: var(--bg);
  word-break: keep-all; overflow-wrap: break-word; -webkit-text-size-adjust: 100%;
  color-scheme: light;
}
* { box-sizing: border-box; }
html[lang="ja"] { word-break: normal; overflow-wrap: anywhere; }   /* keep-all 은 한국어용 — 일본어는 글자 사이에서 줄을 바꾼다 */
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); }
a { color: var(--accent-text); text-decoration: none; }
p { margin: 0 0 12px; }
.wrap { max-width: var(--col); margin: 0 auto; padding: 0 var(--gut); }
.muted { color: var(--muted); }
.mono { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 13px; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
::selection { background: var(--accent-container); }

/* 머리 — 스크롤하면 반투명 블러(리니어) */
.top { position: sticky; top: 0; z-index: 10; background: var(--top-bg); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid transparent; transition: border-color 300ms ease; }
.top.scrolled { border-bottom-color: var(--line); }
.bar { display: flex; align-items: center; justify-content: space-between; height: 60px; gap: 16px; }
.mark { font-weight: 700; font-size: 18px; letter-spacing: -.01em; color: var(--fg);
  display: inline-flex; align-items: center; gap: 9px; }
.mark img { width: 30px; height: 30px; }   /* 마크 = 대화창 아바타(beaver/avatar.svg) — 상담창·비버모드와 같은 얼굴(2026-09-11) */
.top nav { display: flex; align-items: center; gap: 22px; font-size: 15px; }
.top nav a { color: var(--muted); transition: color 150ms ease; }
.top nav a:hover { color: var(--fg); }

/* 버튼 — 한 화면에 primary 하나 */
.btn { display: inline-block; padding: 12px 20px; border-radius: 8px; background: var(--accent); color: var(--on-accent); font-weight: 600; font-size: 16px; line-height: 24px; transition: background 150ms ease, transform 150ms ease; }
.btn:hover { background: var(--accent-hover); color: var(--on-accent); }
.btn:active { transform: translateY(1px); }
.btn.small { padding: 9px 14px; font-size: 14px; line-height: 20px; }
.btn.ghost { background: transparent; color: var(--fg); border: 1px solid var(--line-2); }
.btn.ghost:hover { background: var(--card); }
.cta { display: flex; align-items: center; gap: 12px 20px; flex-wrap: wrap; }
.cta .note { color: var(--muted); font-size: 14px; }

/* 절 */
section { padding: 120px 0; position: relative; }
h1, h2, h3 { text-wrap: balance; }
p, li, .lead, .sub, .bridge, dd { text-wrap: pretty; }   /* 줄넘김 — 제목은 고르게, 문단은 마지막 줄에 낱말 하나만 남지 않게(2026-09-11 길록 「줄넘김 어색한 문장」) */
h1 { font-size: clamp(36px, 6vw, 64px); line-height: 1.1; font-weight: 700; letter-spacing: -.03em; margin: 0 0 24px; }
h2 { font-size: clamp(28px, 4vw, 44px); line-height: 1.15; font-weight: 700; letter-spacing: -.025em; margin: 0 0 16px; }
h3 { font-size: 18px; line-height: 26px; font-weight: 600; margin: 0 0 6px; }
/* 실험 슬롯(data-exp) — px.js 가 변형을 배정할 때까지만 안 보인다(최대 300ms). wiki/유입.md */
html.px-wait [data-exp] { visibility: hidden; }
.lead { font-size: 18px; line-height: 30px; color: var(--muted); max-width: 600px; margin: 0 0 36px; }
.sub { color: var(--muted); max-width: 640px; margin: 0 0 40px; font-size: 17px; line-height: 28px; }

/* 리빌 — 아래에서 올라오며 블러가 걷힌다. .in 이 붙으면 끝 */
.reveal { opacity: 0; transform: translateY(28px); filter: blur(10px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1), filter .9s cubic-bezier(.2,.7,.2,1); transition-delay: calc(var(--i, 0) * 120ms); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; filter: none; }

/* 히어로 — 강조색 글로우 하나. 나머지는 어둡다 */
.hero { min-height: 92vh; display: flex; align-items: center; padding: 80px 0 40px; overflow: hidden; }
.hero::before { content: ''; position: absolute; left: 50%; top: -30vh; width: 120vw; height: 80vh; transform: translateX(-50%); background: radial-gradient(50% 60% at 50% 40%, var(--accent-container) 0%, transparent 70%); pointer-events: none; }
.hero .wrap { position: relative; width: 100%; }   /* 플렉스 안에서 줄어들면 글이 가운데로 밀려 마스코트와 붙는다 */
.hero h1 { max-width: 820px; }
.hero .lead { max-width: 560px; }
.hero .fit { font-size: 14px; line-height: 22px; color: var(--muted); margin: 16px 0 0; max-width: 520px; }   /* CTA 아래 「누구를 위한 것인가」 한 줄 */
#biz .nb { white-space: nowrap; }   /* 꼬리 사업자정보 — 번호·이름은 줄 끝에서 안 갈라진다, 주소만 접힌다 */
/* 히어로의 동물 — **첫 슬로건 오른쪽**에 크게 앉는다(2026-09-16 길록). 아래가 아니라 위에 건다:
   약관·방침처럼 히어로 한 절이 문서 전체인 장이 있어서, bottom 으로 걸면 그림이 문서 맨 끝으로 내려간다.
   장마다 다른 자세를 쓴다 — 자리는 이 한 규칙, 무엇을 넣을지는 페이지가 정한다. 좁아지면 작아지고 폰에서는 사라진다. */
.hero .mascot { position: absolute; right: 0; top: -20px; width: var(--mascot, min(32vw, 380px)); height: auto;
  pointer-events: none; opacity: 0; transform: translateY(18px) scale(.96); animation: mascot-rise .9s cubic-bezier(.2,.7,.2,1) .35s forwards; }
.hero:has(.mascot) h1 { max-width: min(820px, calc(100% - 380px)); }   /* 제목이 그림 밑으로 파고들지 않게 */
@media (max-width: 1180px) { .hero .mascot { width: min(var(--mascot, 100vw), 26vw); right: -1vw; } .hero:has(.mascot) h1 { max-width: calc(100% - 26vw); } }
@media (max-width: 900px) { .hero .mascot { display: none; } .hero:has(.mascot) h1 { max-width: 820px; } }
/* 이름을 `rise` 로 두면 안 된다 — 아래 「자라는 화면」 절(.grow)이 같은 이름을 뒤에서 다시 정의하고,
   그쪽은 `from` 만 있어서 끝 상태가 이 그림의 opacity:0 으로 잡힌다. 그래서 히어로 동물이 내내 안 보였다(2026-09-16에 발견). */
@keyframes mascot-rise { to { opacity: 1; transform: none } }
@media (prefers-reduced-motion: reduce) { .hero .mascot { opacity: 1; transform: none; animation: none } }
.cue { position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); width: 22px; height: 36px; border: 1.5px solid var(--line-2); border-radius: 12px; }
.cue::after { content: ''; position: absolute; left: 50%; top: 7px; width: 3px; height: 7px; margin-left: -1.5px; border-radius: 2px; background: var(--muted); animation: cue 1.8s ease-in-out infinite; }
@keyframes cue { 0% { transform: translateY(0); opacity: 1 } 70% { transform: translateY(12px); opacity: 0 } 100% { opacity: 0 } }


/* 절 사이를 잇는 한 문장 — 다음 절의 이유가 된다 */
.bridge { font-size: clamp(19px, 2.2vw, 24px); line-height: 1.5; letter-spacing: -.01em; color: var(--fg); max-width: 720px; margin: 48px 0 0; }
.tight { padding: 0 0 40px; }
.tight .bridge { margin: 0; }

/* 둘 나란히(요금제) */
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }   /* 요금제 — 위 플랜 카드 둘(.plans)과 같은 사이라 두 열이 한 줄로 선다 */

/* 절 오른쪽 위에 앉는 비버 — 제목 옆 여백을 쓴다. 좁아지면 사라진다. */
.wrap { position: relative; }
.aside-bv { position: absolute; right: 0; top: -28px; width: 150px; height: auto; pointer-events: none;
  opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.aside-bv.in { opacity: 1; transform: none; }
@media (max-width: 900px) { .aside-bv { display: none; } }
@media (prefers-reduced-motion: reduce) { .aside-bv { opacity: 1; transform: none; } }

/* 셋이 나란히 — 캐릭터 + 제목 + 한 문장(치타WEB 홈 「이렇게 일합니다」). 그림은 위에서 아래로 살짝 겹치게 */
.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.trio img { display: block; width: 168px; height: auto; margin: 0 0 6px -12px; }
.trio h3 { font-size: 20px; line-height: 28px; margin-bottom: 6px; }
.trio p { color: var(--muted); margin: 0; }
@media (max-width: 720px) { .trio { grid-template-columns: 1fr; gap: 28px; } .trio img { width: 132px; } }
.hint { color: var(--muted); font-size: 15px; line-height: 24px; border-top: 1px solid var(--line); padding-top: 20px; max-width: 720px; }
.hint b { color: var(--fg); font-weight: 600; }
.why { list-style: none; margin: 0 0 56px; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.why li { border-top: 1px solid var(--line); padding-top: 20px; }
.why h3 { font-size: 19px; line-height: 27px; margin-bottom: 6px; }
.why p { color: var(--muted); margin: 0; }

/* 장면 셋 — 큰 글자, 하나씩 */
.scenes { display: grid; gap: 40px; max-width: 760px; }
.scene { border-top: 1px solid var(--line); padding-top: 28px; }
.scene h3 { font-size: clamp(22px, 2.6vw, 30px); line-height: 1.25; letter-spacing: -.02em; margin-bottom: 10px; }
.scene p { color: var(--muted); font-size: 17px; line-height: 28px; margin: 0; }

/* ── 밝은 제품 화면. 어두운 바탕 위의 스크린샷이라 색을 고정한다 ── */
.screen { --sfg: #1a1d21; --smuted: #667085; --sline: #e5e3dd; --ssv: #fbfaf7; color: var(--sfg); }
.screen { background: #fff; border: 1px solid var(--line-2); border-radius: 12px; overflow: hidden; font-size: 13px; line-height: 18px; min-width: 0; box-shadow: 0 30px 80px rgba(0,0,0,.45); }
.screen .chrome { display: flex; align-items: center; gap: 6px; padding: 8px 12px; border-bottom: 1px solid var(--sline); background: var(--ssv); color: var(--smuted); font-size: 12px; }
.screen .chrome i { width: 8px; height: 8px; border-radius: 50%; background: var(--sline); display: inline-block; }
.screen .chrome span { margin-left: 8px; }
.screen .body { padding: 14px 16px; }
.screen .head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.screen .head b { font-size: 14px; }
.screen .head em { font-style: normal; color: var(--smuted); font-size: 12px; }
.app table, .screen table, .web table { width: 100%; border-collapse: collapse; border: 1px solid var(--sline); border-radius: 6px; overflow: hidden; }
.app th, .app td, .screen th, .screen td, .web th { text-align: left; padding: 6px 8px; border-bottom: 1px solid var(--sline); white-space: nowrap; }
.app th, .screen th, .web th { color: var(--smuted); font-weight: 600; font-size: 11px; line-height: 14px; background: var(--ssv); }
.app tr:last-child td, .screen tr:last-child td, .web tr:last-child td { border-bottom: 0; }
.app .num, .screen .num, .web .num { text-align: right; font-variant-numeric: tabular-nums; }
.app td.hl, .app th.hl, .screen td.hl, .screen th.hl, .web td.hl { background: #eef4ff; }
.app .badge, .screen .badge, .web .badge { display: inline-block; padding: 1px 7px; border-radius: 999px; font-size: 11px; line-height: 15px; font-weight: 600; background: #eef0f3; color: #4b5563; }
.app .badge.ok, .screen .badge.ok, .web .badge.ok { background: #e6f6ee; color: #0f5f37; }
.app .badge.warn, .screen .badge.warn, .web .badge.warn { background: #fdf1e0; color: #7a4200; }
.app .badge.bad, .screen .badge.bad, .web .badge.bad { background: #fde8e8; color: #7f1d1d; }
.app .badge.new, .screen .badge.new, .web .badge.new { background: #dce6ff; color: #0c2a78; }


/* 요금 한 줄 */
.price-line { display: flex; align-items: flex-end; gap: 12px 24px; flex-wrap: wrap; margin-bottom: 12px; }
.price-line .amount { font-size: clamp(40px, 6vw, 64px); line-height: 1.1; font-weight: 700; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.price-line .per { color: var(--muted); padding-bottom: 10px; }

/* 요금제 페이지 */
.plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; align-items: start; margin-top: 34px; }   /* 플랜 둘(2026-09-12) — 카드 둘이 좌우를 다 쓴다(길록) */
.plan { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 30px 28px; display: flex; flex-direction: column; gap: 4px; height: 100%; }
.plan.pick { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-container); }
.plan .crew { display: flex; gap: 2px; align-items: center; margin-bottom: 14px; }   /* 아바타 하나, + 플랜은 뒤에 + */
.plan .crew .plus { margin-left: 8px; background: var(--accent2-container); color: var(--accent2-text); border-radius: 999px; padding: 3px 10px; font-size: 12px; font-weight: 700; letter-spacing: .06em; line-height: 16px; }   /* 「PLUS」 알약 — 그림 옆 + 만으론 못 알아본다(2026-09-12 길록) */
.plan .who small { font-size: 14px; font-weight: 600; color: var(--muted); margin-left: 4px; letter-spacing: 0; }
.plan .amount small { font-size: 15px; font-weight: 600; letter-spacing: 0; color: var(--muted); }   /* 「월 1,000,000원부터」 — 조사라 붙인다. 영문은 마크업에서 공백을 준다 */
.plan .crew img { width: 28px; height: 28px; }
.plan .crew img.off { opacity: .16; }
.plan .who { font-size: 20px; font-weight: 700; letter-spacing: -.02em; }
.plan .line { color: var(--muted); margin: 2px 0 16px; }
.plan .go { margin-top: auto; padding-top: 22px; }
.plan .go .btn { width: 100%; text-align: center; }
.plan .talk { display: block; text-align: center; border: 1px solid var(--line-2); border-radius: 10px; padding: 11px 0; color: var(--fg); text-decoration: none; font-weight: 600; }
.plan .talk:hover { border-color: var(--accent2); }
.plan .after { color: var(--muted); font-size: 13px; line-height: 20px; margin: 10px 0 0; }
.when { margin-top: 22px; display: grid; grid-template-columns: 170px 1fr; gap: 14px 24px; align-items: start; padding: 20px 26px; border: 1px solid var(--line); border-radius: 14px; background: var(--card); }   /* 원→투 올리는 조건 넷(2026-09-11 길록) */
.when b { font-size: 15px; line-height: 24px; }
.when ul { margin: 0; padding-left: 18px; color: var(--muted); font-size: 15px; line-height: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px 28px; }
.plan .amount { font-size: 32px; line-height: 40px; font-weight: 700; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.plan .vat { color: var(--muted); font-size: 13px; line-height: 20px; margin-bottom: 18px; }
.plan .free { position: absolute; right: 20px; top: 28px; background: var(--accent2-container); color: var(--accent2-text); border-radius: 999px; padding: 3px 11px; font-size: 12px; font-weight: 600; }   /* 이름 줄이 셋 다 같은 높이에 오도록 띄워 둔다 */
.plan h3 { margin-bottom: 0; }
.plan .two { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 28px; margin: 10px 0 28px; }
.plan ul { margin: 0; padding-left: 18px; color: var(--muted); font-size: 15px; }
.plan li { margin: 6px 0; }
.faq details { border-top: 1px solid var(--line); padding: 16px 0; }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; font-weight: 600; font-size: 17px; list-style: none; display: flex; justify-content: space-between; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--muted); font-weight: 400; }
.faq details[open] summary::after { content: '–'; }
.faq details p { color: var(--muted); margin: 10px 0 0; }
.faq details .srcs { margin-top: 10px; }

/* 법적 문서 */
.doc > * { max-width: 720px; }   /* 법적 문서 — 기둥은 그대로 두고(머리·꼬리와 같은 왼쪽 끝) 읽는 줄 길이만 720 으로 줄인다. 가운데로 몰면 제목이 마크보다 160px 안으로 들어갔다(2026-09-15 길록) */
.doc h2 { font-size: 22px; line-height: 30px; margin: 36px 0 10px; }
.doc p, .doc li { color: var(--muted); }
.doc table { width: 100%; border-collapse: collapse; font-size: 15px; }
.doc th, .doc td { text-align: left; padding: 8px 10px; border-bottom: 1px solid var(--line); vertical-align: top; color: var(--muted); }
.doc th { color: var(--fg); font-size: 13px; font-weight: 600; background: var(--card); }

/* 꼬리 */
.foot { border-top: 1px solid var(--line); padding: 44px 0 32px; font-size: 14px; line-height: 22px; }
.foot .cols { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px 40px; flex-wrap: wrap; margin-bottom: 28px; }
.foot .brand .mark { font-size: 16px; gap: 8px; }
.foot .brand .mark img { width: 24px; height: 24px; }
.foot .brand p { margin: 6px 0 0; }
.foot .zoo { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: 16px; font-size: 13px; color: var(--muted); }   /* 도대니랩이 만듭니다 · 동물 알약 둘 */
.foot .an { display: inline-flex; align-items: center; gap: 6px; padding: 3px 10px 3px 4px; border: 1px solid var(--line); border-radius: 999px; color: var(--fg); font-size: 13px; font-weight: 600; line-height: 20px; transition: border-color 150ms ease; }
.foot .an img { width: 20px; height: 20px; border-radius: 50%; }
.foot .an.here { background: var(--card-2); border-color: transparent; }
.foot .an.out::after { content: '↗'; font-weight: 400; color: var(--muted); }
.foot a.an:hover { border-color: var(--fg); }
.foot .links { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 20px; padding-top: 3px; }
.foot .links a { color: var(--muted); }
.foot .links a:hover { color: var(--fg); }

/* 언어 — 지구본 하나에 말 둘, 지금 보는 말이 채운 칸(2026-09-12 길록 「네비에 잉글리시 하나가 이상하다」).
   국기는 안 쓴다(나라 ≠ 말). 말 이름은 그 말로 적는다 — 「Korean」이 아니라 「한국어」. 큰 사이트들의 공통 규칙이다.
   첫 방문 자동 맞춤은 Caddy 가 하고, 여기서 고르면 그게 이긴다(site.js 가 dl_lang 쿠키를 남긴다). */
.lang { display: inline-flex; align-items: center; gap: 2px; padding: 3px; border: 1px solid var(--line); border-radius: 999px; font-size: 13px; line-height: 20px; }
.lang .gl { flex: none; margin: 0 4px 0 7px; color: var(--muted); }
.lang a, .lang span { padding: 2px 10px; border-radius: 999px; white-space: nowrap; color: var(--muted); }
.lang a:hover { color: var(--fg); }
.lang [aria-current] { background: var(--card-2); color: var(--fg); font-weight: 600; }
.foot .legal { border-top: 1px solid var(--line); padding-top: 16px; font-size: 12px; line-height: 19px; color: var(--muted); opacity: .85; }
.foot .legal p { margin: 0; }
.foot .legal a { color: var(--muted); }

@media (max-width: 899px) {
  section { padding: 80px 0; }
  .hero { min-height: 84vh; padding: 48px 0 40px; }
  .plan .two, .two, .plans { grid-template-columns: 1fr; }
  .why { grid-template-columns: 1fr; gap: 20px; }
  .tight { padding-bottom: 80px; }
}
@media (max-width: 719px) {
  .wrap { padding: 0 18px; }
  .top nav { gap: 14px; font-size: 14px; }
  .top nav a:not(.btn):not(.askl) { display: none; }   /* 폰 머리엔 문의하기·CTA 만 */
  .top nav .lang { display: none; }   /* 언어 토글도 — 폰에선 꼬리에 있다 */
  .foot .cols { flex-direction: column; gap: 20px; }
  .lead { font-size: 16px; line-height: 26px; }
  .plan { padding: 24px 20px; }
  .plan .go { padding-top: 18px; }
  .when { grid-template-columns: 1fr; gap: 8px; padding: 18px 20px; } .when ul { grid-template-columns: 1fr; }
  .screen { overflow-x: auto; }
  .cue { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  .cue::after { animation: none; }
}

/* ── 2026-09-05 밤 추가: 히어로 와이프, 조사 수치, 3단 변신, 패널 애니메이션, 늘어나는 화면, 빛 카드 ── */
/* 히어로 제목 — 줄이 아래에서 밀려 올라오는 와이프(리빌과 다른 결) */
.wipe { opacity: 1; }
.wipe > span { display: block; overflow: hidden; }
.wipe > span > span { display: block; transform: translateY(110%); transition: transform 1.1s cubic-bezier(.16,1,.3,1) .1s; }
.wipe.in > span > span { transform: none; }
.hero::after { content: ''; position: absolute; right: -20vw; bottom: -30vh; width: 60vw; height: 60vh; background: radial-gradient(50% 50% at 50% 50%, var(--accent2-container) 0%, transparent 70%); pointer-events: none; opacity: .7; animation: drift 18s ease-in-out infinite alternate; }
@keyframes drift { from { transform: translate(0, 0) } to { transform: translate(-12vw, -10vh) } }

/* 조사 수치 절(치타WEB 홈이 쓴다) — 한 톤 더 어두운 바탕 */
.dark2 { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin: 48px 0 24px; }
.facts.three { grid-template-columns: repeat(3, 1fr); }
.fact .big { display: block; font-size: clamp(30px, 3.6vw, 44px); line-height: 1.1; font-weight: 700; letter-spacing: -.03em; margin-bottom: 12px; font-variant-numeric: tabular-nums; }
.fact p { color: var(--muted); font-size: 15px; line-height: 24px; margin: 0; }
.src { color: var(--muted); font-size: 13px; line-height: 20px; margin: 0; }
/* 준비물 카드(치타WEB 홈이 쓴다) */
.need { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 28px 28px 24px; }
.need .k { display: inline-block; font-size: 13px; font-weight: 600; color: var(--accent2); margin-bottom: 12px; letter-spacing: .02em; }
.need h3 { font-size: 22px; line-height: 30px; letter-spacing: -.015em; margin-bottom: 8px; }
.need p { color: var(--muted); margin: 0; }
/* 요금제 FAQ 의 출처 목록 */
.srcs { margin: 0; padding-left: 18px; color: var(--muted); font-size: 14px; line-height: 22px; }
.srcs li { margin: 6px 0; }

/* 마우스를 따라가는 테두리 빛(리니어) */
.glow { position: relative; overflow: hidden; }
.glow::before { content: ''; position: absolute; inset: 0; border-radius: inherit; background: radial-gradient(240px circle at var(--mx, -200px) var(--my, -200px), var(--accent-container), transparent 60%); opacity: 0; transition: opacity .3s ease; pointer-events: none; }
.glow:hover::before { opacity: 1; }
.glow > * { position: relative; }

@media (max-width: 899px) { .facts, .facts.three { grid-template-columns: 1fr 1fr; gap: 20px; } }
@media (max-width: 719px) { .facts, .facts.three { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { .wipe > span > span { transform: none; transition: none; } .hero::after { animation: none; } }

/* 폰 — 9:19, 상태바·앱 헤더·내용·탭바·홈 인디케이터 */
.phone { width: 190px; aspect-ratio: 9 / 19; background: #fff; border: 6px solid #1b1e24; border-radius: 30px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.55), inset 0 0 0 1px rgba(255,255,255,.4); font-size: 11px; line-height: 15px; color: #1a1d21; position: relative; display: flex; flex-direction: column; }
.phone .status { display: flex; justify-content: space-between; align-items: center; padding: 8px 14px 2px; font-size: 11px; font-weight: 600; }
.phone .status::before { content: ''; position: absolute; left: 50%; top: 6px; width: 60px; height: 16px; margin-left: -30px; border-radius: 10px; background: #1b1e24; }
.phone .sig { display: inline-flex; gap: 2px; align-items: flex-end; }
.phone .sig i { width: 3px; background: #1a1d21; border-radius: 1px; height: 5px; }
.phone .sig i:nth-child(2) { height: 8px; } .phone .sig i:nth-child(3) { height: 11px; }
.phone .pbody { padding: 10px 12px; flex: 1; }
.phone .head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.phone .head b { font-size: 15px; } .phone .head em { font-style: normal; color: #667085; font-size: 10px; }
.phone .ptiles { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 8px; }
.phone .ptiles div { border: 1px solid #e5e3dd; border-radius: 8px; padding: 6px 8px; }
.phone .ptiles em { display: block; font-style: normal; font-size: 9px; color: #667085; }
.phone .ptiles b { font-size: 14px; }
.phone table { width: 100%; border-collapse: collapse; }
.phone th, .phone td { text-align: left; padding: 6px 4px; border-bottom: 1px solid #e5e3dd; white-space: nowrap; }
.phone th { font-size: 10px; color: #667085; font-weight: 600; }
.phone .badge { display: inline-block; padding: 0 6px; border-radius: 999px; font-size: 10px; line-height: 14px; font-weight: 600; background: #eef0f3; color: #4b5563; }
.phone .badge.ok { background: #e6f6ee; color: #0f5f37; } .phone .badge.warn { background: #fdf1e0; color: #7a4200; } .phone .badge.bad { background: #fde8e8; color: #7f1d1d; }
.phone .tabbar { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #e5e3dd; padding: 6px 4px 2px; font-size: 8px; color: #667085; text-align: center; }
.phone .tabbar span { display: grid; justify-items: center; gap: 3px; white-space: nowrap; overflow: hidden; }
.phone .tabbar i { width: 14px; height: 14px; border-radius: 4px; background: #c7cad1; }
.phone .tabbar span.on { color: var(--accent); } .phone .tabbar span.on i { background: var(--accent); }
.phone .home { width: 60px; height: 4px; border-radius: 2px; background: #1b1e24; margin: 6px auto 6px; }
/* 숫자 카드 스파크라인 — 선이 그어진다 */
.app .kpi { position: relative; }
.app .spark { position: absolute; right: 10px; bottom: 10px; width: 58px; height: 18px; }
.app .spark polyline { fill: none; stroke: var(--accent); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 80; stroke-dashoffset: calc(80 * (1 - clamp(0, (var(--p, 1) - .82 - var(--k) * .02) * 8, 1))); opacity: .8; }

/* 완성된 ERP — 왼쪽 메뉴, 숫자, 막대·도넛 그래프, 최근 변경, 표. 밝은 제품 화면이라 색을 고정한다 */
.app { --sfg: #1a1d21; --smuted: #667085; --sline: #e5e3dd; --ssv: #fbfaf7; color: var(--sfg); background: #f4f4f1; border: 1px solid var(--line-2); border-radius: 14px; overflow: hidden; display: grid; grid-template-columns: 180px minmax(0, 1fr); font-size: 13px; line-height: 18px; box-shadow: 0 40px 100px rgba(0,0,0,.55); text-align: left; }
.app .side { background: #1c1f26; color: #c9ccd3; padding: 16px 12px; display: flex; flex-direction: column; gap: 18px; }
.app .logo { color: #fff; font-weight: 700; font-size: 14px; display: flex; align-items: center; gap: 8px; padding: 0 6px; white-space: nowrap; }
.app .logo i { width: 22px; height: 22px; border-radius: 6px; background: var(--accent); flex: none; }
.app nav { display: grid; gap: 2px; }
.app nav a { padding: 7px 10px; border-radius: 6px; color: #c9ccd3; white-space: nowrap; }
.app nav a.on { background: rgba(255,255,255,.1); color: #fff; font-weight: 600; }
.app .me { margin-top: auto; display: flex; align-items: center; gap: 8px; font-size: 12px; padding: 0 6px; white-space: nowrap; }
.app .me i { width: 20px; height: 20px; border-radius: 50%; background: #5b6470; flex: none; }
.app .main { padding: 14px 18px 18px; display: grid; gap: 12px; min-width: 0; align-content: start; }
.app .topbar { display: flex; align-items: center; gap: 12px; }
.app .topbar b { font-size: 16px; }
.app .search { margin-left: auto; border: 1px solid var(--sline); background: #fff; border-radius: 6px; padding: 4px 10px; color: var(--smuted); font-size: 12px; min-width: 150px; }
.app .who { color: var(--smuted); font-size: 12px; white-space: nowrap; }
.app .kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.app .kpi { background: #fff; border: 1px solid var(--sline); border-radius: 8px; padding: 10px 12px; min-width: 0; }
.app .kpi em { display: block; font-style: normal; color: var(--smuted); font-size: 11px; white-space: nowrap; }
.app .kpi b { display: block; font-size: 18px; line-height: 24px; font-variant-numeric: tabular-nums; white-space: nowrap; }
.app .kpi i { font-style: normal; font-size: 11px; color: #0f5f37; }

@media (max-width: 719px) {
  .app { grid-template-columns: 1fr; } .app .side { display: none; }
  .app .kpis { grid-template-columns: 1fr 1fr; }
  .app .search { display: none; }
}

/* ── 2026-09-11 비버모드 중심 — 히어로 장면(.bm), 이렇게 말하면 됩니다(.says), 하나씩 자라는 화면(.grow), 이렇게 씁니다(ol.steps), 마감 카드(.close), 문의하기(.ask), FAQ 검색 ── */
.hero.bmh { min-height: 0; display: block; padding: 88px 0 72px; }
.hero.bmh .mascot { top: -24px; width: 380px; }   /* 홈·랜딩은 아래 장면(.bm)이 있어 조금 더 크게 세운다 */
.hero.bmh .cue { display: none; }
@media (max-width: 1180px) { .hero.bmh .mascot { width: 300px; } }

/* 장면 — 왼쪽 ERP, 오른쪽 대화창 띠. 말이 세 번 오가고(--t 담당자, --r 비버) 그때마다 화면이 바뀐다 */
.bm { --t1: .5s; --r1: 2s; --t2: 3.9s; --r2: 5.4s; --t3: 7.3s; --r3: 8.8s;
      margin-top: 56px; display: grid; grid-template-columns: minmax(0, 1fr) 320px; border: 1px solid var(--line-2); border-radius: 14px; background: #fff; box-shadow: 0 30px 80px var(--shadow); text-align: left; }
.bm-app { position: relative; min-width: 0; }
.bm .app { border: 0; border-radius: 14px 0 0 14px; box-shadow: none; height: 100%; }
.bm .app .kpis { grid-template-columns: repeat(3, 1fr); }
.bm .app .side { padding-top: 18px; }
.bm .app .main { padding-bottom: 22px; }
.bm .app .tbl { overflow: visible; }
@keyframes colin { from { opacity: 0; background: #dce6ff } to { opacity: 1; background: #eef4ff } }
@keyframes swap { to { opacity: 1 } } @keyframes swapout { to { opacity: 0 } }
.bm-chat { display: flex; flex-direction: column; border-left: 1px solid #e3dccd; background: #fff; border-radius: 0 14px 14px 0; overflow: hidden; font-size: 13px; line-height: 20px; color: #191919; min-width: 0; }
.bm-head { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-bottom: 1px solid #e3dccd; background: #fbf8f3; }
.bm-head .av { width: 32px; height: 32px; }
.bm-head .t b { display: block; font-size: 14px; line-height: 18px; }
.bm-head .t span { display: block; font-size: 12px; color: #5b5956; line-height: 16px; }
.bm-head .t span::before { content: ''; display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #2ea06e; margin: 0 6px 1px 0; vertical-align: middle; }
.bm-body { flex: 1; padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.bm-row { display: flex; gap: 8px; align-items: flex-start; }
.bm-row.me { flex-direction: row-reverse; }
.bm-row .av { width: 30px; height: 30px; flex: none; } .bm-row .pv { border-radius: 50%; }
.bm-row .col { min-width: 0; max-width: calc(100% - 38px); display: flex; flex-direction: column; align-items: flex-start; }
.bm-row.me .col { align-items: flex-end; }
.bm-row .who { font-size: 12px; color: #5b5956; margin: 0 0 3px 2px; }
.bm-row .bub { display: inline-block; padding: 7px 12px; border-radius: 14px; border-top-left-radius: 4px; background: #fbf8f3; border: 1px solid #e3dccd; text-align: left; }
.bm-row.me .bub { background: rgba(255,198,41,.34); border-color: rgba(255,198,41,.34); border-radius: 14px; border-top-right-radius: 4px; }
.bm-row .tm { font-size: 11px; color: #938f89; margin: 3px 4px 0; line-height: 14px; }
.bm-foot { border-top: 1px solid #e3dccd; padding: 10px; display: flex; gap: 8px; align-items: center; }
.bm-foot .ta { flex: 1; border: 1px solid #e3dccd; border-radius: 10px; padding: 7px 12px; color: #938f89; }
.bm-foot .ta::after { content: ''; display: inline-block; width: 1px; height: 14px; background: #191919; margin-left: 2px; vertical-align: -2px; animation: blink 1s steps(2) infinite; }
.bm-foot .go { background: var(--accent); color: var(--on-accent); border-radius: 8px; padding: 7px 14px; font-weight: 600; }
@keyframes blink { to { opacity: 0 } }
.bm .phone { position: absolute; right: 14px; bottom: -30px; width: 140px; transform: rotate(-4deg); }
/* 박자 — .in 이 붙으면 시작. 그 전엔 말풍선·새 열·폰·새 배지가 없다 */
.bm .bm-row, .bm td.hl, .bm th.hl, .bm .phone, .bm .sw .badge:last-child, .bm .bm-row.me .tm { opacity: 0; }
.bm .bm-row { transform: translateY(6px); }
.bm.in .bm-row { animation: bmsay .35s cubic-bezier(.2,.7,.2,1) forwards; }
.bm.in .bm-row.me .tm { animation: bmfade .3s forwards; }
.bm.in .t1 { animation-delay: var(--t1); } .bm.in .t1 .tm { animation-delay: calc(var(--t1) + .9s); } .bm.in .r1 { animation-delay: var(--r1); }
.bm.in .t2 { animation-delay: var(--t2); } .bm.in .t2 .tm { animation-delay: calc(var(--t2) + .9s); } .bm.in .r2 { animation-delay: var(--r2); }
.bm.in .t3 { animation-delay: var(--t3); } .bm.in .t3 .tm { animation-delay: calc(var(--t3) + .9s); } .bm.in .r3 { animation-delay: var(--r3); }
.bm.in td.hl, .bm.in th.hl { animation: colin .6s cubic-bezier(.2,.7,.2,1) forwards; animation-delay: calc(var(--r1) + .25s); }
.bm.in .phone { animation: bmphone .6s cubic-bezier(.2,.7,.2,1) forwards; animation-delay: calc(var(--r2) + .25s); }
.bm .sw { position: relative; display: inline-grid; } .bm .sw .badge { grid-area: 1 / 1; white-space: nowrap; }
.bm.in .sw .badge:last-child { animation: swap .4s ease forwards; animation-delay: calc(var(--r3) + .25s); }
.bm.in .sw .badge:first-child { animation: swapout .4s ease forwards; animation-delay: calc(var(--r3) + .25s); }
@keyframes bmsay { to { opacity: 1; transform: none } }
@keyframes bmfade { to { opacity: 1 } }
@keyframes bmphone { from { opacity: 0; transform: translateY(40px) rotate(-4deg) } to { opacity: 1; transform: rotate(-4deg) } }

/* 이렇게 말하면 됩니다 — 말풍선 둘이 한 카드 */
.says { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 20px; }
.say { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 16px 16px 14px; display: flex; flex-direction: column; gap: 10px; font-size: 14px; line-height: 21px; }

@media (max-width: 899px) {
  .bm { grid-template-columns: 1fr; }
  .bm .app { border-radius: 14px 14px 0 0; }
  .bm-chat { border-left: 0; border-top: 1px solid #e3dccd; border-radius: 0 0 14px 14px; }
  .bm .phone { display: none; }
}
@media (max-width: 719px) {
  .hero.bmh { padding: 56px 0 56px; }
  .bm { margin-top: 36px; }
  .bm .app .kpis { grid-template-columns: 1fr 1fr; } .bm .app .kpi:nth-child(3) { display: none; }
  .bm .app .tbl { overflow-x: auto; }   /* 여섯 열이 350px 에 들어오게 글자·여백을 줄이고, 그래도 넘치면 옆으로 민다 */
  .bm .app th, .bm .app td { padding: 6px 5px; font-size: 11px; } .bm .app .badge { padding: 1px 5px; font-size: 10px; }
  .bm .app .opt, .grow .app .opt { display: none; }   /* 폰에선 덜 중요한 열(words.py 의 'opt')을 감춘다 — 「새 열」이 보여야 한다 */
  .grow .app .tbl { overflow-x: auto; } .grow .app th, .grow .app td { padding: 6px 5px; font-size: 11px; } .grow .app .badge { padding: 1px 5px; font-size: 10px; }
  .says { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .grow .scr *, .grow .scr > * { animation: none !important; }
  .grow .gk, .grow .phone.gk { opacity: 1; transform: none; } .grow .un { opacity: 0; } .gs { --a: 1; } .grow .scr, .grow nav a.nv { --a: 0; } .grow .scr.s5, .grow nav a.s5 { --a: 1; }   /* 다 자란 화면(대시보드)만 */
  .bm .bm-row, .bm td.hl, .bm th.hl, .bm .bm-row.me .tm, .bm .sw .badge:last-child { opacity: 1; transform: none; animation: none; }
  .bm .phone { opacity: 1; animation: none; } .bm .sw .badge:first-child { opacity: 0; } .bm-foot .ta::after { animation: none; }
}

/* 한 번에 다 만들지 않습니다 — 고정 구간. --p(0→1)를 다섯 단계로 나눠 ERP 가 자란다.
   .gk(--s 단계)는 그 단계에 들어오고, .un(--u 단계)은 그 단계에 물러난다(배지가 글자를 대신하는 식). 단계 설명 .gs 는 자기 구간에서만 밝다 */
section.lead-in { padding-bottom: 0; }
section.lead-in .sub { margin-bottom: 0; }
.grow { height: 360vh; padding: 0; }
.grow .stick { position: sticky; top: 60px; height: calc(100vh - 60px); display: grid; place-items: start center; padding-top: 28px; box-sizing: border-box; overflow: hidden; }   /* 위에 붙인다(2026-09-11 길록) — 들어갈 때 제목과 화면 사이가 안 빈다 */   /* 60px = 붙어 있는 머리(.bar) 높이 — 그 아래에 선다 */
.grow .stage { width: min(var(--col), 100%); padding: 0 var(--gut); display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 36px; align-items: center; max-height: calc(100vh - 100px); }
.grow .stage > * { min-width: 0; }
.gs-list { display: grid; gap: 6px; }
.gs { --a: 0; padding: 12px 14px; border-left: 2px solid var(--line); position: relative; }
.gs::before { content: ''; position: absolute; left: -2px; top: 0; bottom: 0; width: 2px; background: var(--accent2); transform: scaleY(var(--a)); transform-origin: top; }
.gs b { display: block; font-size: 12px; font-weight: 600; letter-spacing: .02em; color: var(--accent2); opacity: calc(.45 + var(--a) * .55); }
.gs span { display: block; font-size: 17px; line-height: 24px; font-weight: 600; color: var(--fg); opacity: calc(.4 + var(--a) * .6); }
.gs em { display: block; font-style: normal; font-size: 14px; line-height: 20px; color: var(--muted); margin-top: 3px; opacity: var(--a); max-height: calc(var(--a) * 40px); overflow: hidden; }
.gs em::before { content: '「'; } .gs em::after { content: '」'; }
.gs .from { display: inline-block; margin-top: 8px; font-style: normal; font-size: 11px; font-weight: 600; letter-spacing: .02em; color: var(--accent2-text); background: var(--accent2-container); border-radius: 999px; padding: 2px 9px; opacity: var(--a); max-height: calc(var(--a) * 24px); overflow: hidden; }
/* 경계는 .2·.4·.6·.8 하나 — 화면·캡션·메뉴·사람 수·폰이 같은 자리에서 바뀐다(전엔 화면이 .17, 메뉴가 .2 라 어긋났다, 2026-09-11 길록 「균일하지 않다」).
   나가는 쪽은 경계 앞 .04 동안 사라지고, 들어오는 쪽은 경계 .02 앞부터 .04 동안 들어온다 — 빈 순간이 없다 */
.grow .s1 { --a: clamp(0, calc((.2 - var(--p, 0)) * 25), 1); }
.grow .s2 { --a: clamp(0, calc(min((var(--p, 0) - .18) * 25, (.4 - var(--p, 0)) * 25)), 1); }
.grow .s3 { --a: clamp(0, calc(min((var(--p, 0) - .38) * 25, (.6 - var(--p, 0)) * 25)), 1); }
.grow .s4 { --a: clamp(0, calc(min((var(--p, 0) - .58) * 25, (.8 - var(--p, 0)) * 25)), 1); }
.grow .s5 { --a: clamp(0, calc((var(--p, 0) - .78) * 25), 1); }
.gs-app { position: relative; }
/* 본문은 다섯 화면이 한 자리에 겹쳐 있고, 자기 단계에서만 보인다 — 메뉴가 들어오면 화면이 그 메뉴로 넘어간다(2026-09-11 길록) */
.grow .app .main { grid-template-columns: 100%; }
.grow .scr { grid-area: 1 / 1; display: grid; gap: 12px; align-content: start; min-width: 0; opacity: var(--a, 0); transform: translateY(calc((1 - var(--a, 0)) * 14px)); }
.grow nav a.nv { background: rgba(255,255,255, calc(var(--a, 0) * .1)); color: color-mix(in srgb, #fff calc(var(--a, 0) * 100%), #c9ccd3); }
.app .kpis.n2 { grid-template-columns: repeat(2, 1fr); max-width: 62%; }
.app .kpis.n3 { grid-template-columns: repeat(3, 1fr); }
.app .card > em { display: block; font-style: normal; font-weight: 600; font-size: 12px; color: var(--smuted); margin: 0 0 6px; }
.grow .app { box-shadow: 0 30px 80px var(--shadow); }
.grow .gk { --at: calc((var(--s) - 1) * .2); --g: clamp(0, calc((var(--p, 0) - var(--at) + .02) * 25), 1); opacity: var(--g); transform: translateY(calc((1 - var(--g)) * 8px)); }   /* 메뉴·사람 수·폰 — 화면과 같은 경계·같은 폭 */
.grow tr.gk { transform: none; } .grow tr.gk td { border-bottom-color: color-mix(in srgb, var(--sline) calc(var(--g) * 100%), transparent); }   /* 접힌 표(border-collapse)는 줄이 행 투명도를 안 따라가서 줄 색을 따로 잇는다 */
.grow .un { --ut: calc((var(--u) - 1) * .2); opacity: clamp(0, calc((var(--ut) - var(--p, 0)) * 25), 1); }
.grow .un.gk { opacity: min(var(--g), clamp(0, calc((var(--ut) - var(--p, 0)) * 25), 1)); }
/* 스크롤 걸음(휠 한 칸) 사이를 transition 이 잇는다 — --p 는 뚝뚝 바뀌어도 눈에는 흐른다 */
.grow .scr, .grow .gk, .grow .un, .grow .gs b, .grow .gs span, .grow .gs em, .grow .gs .from, .grow .gs::before, .grow nav a.nv, .grow .web .wnav a.nv, .grow tr.gk td { transition: opacity .55s ease, transform .55s ease, background-color .55s ease, color .55s ease, max-height .55s ease, border-color .55s ease; }
.grow .sw { position: relative; display: inline-grid; } .grow .sw > * { grid-area: 1 / 1; white-space: nowrap; }
.grow .users { display: inline-grid; } .grow .users i { grid-area: 1 / 1; font-style: normal; font-weight: 600; color: var(--sfg); }
.grow .who { display: inline-flex; gap: 4px; }
.app .row { display: grid; grid-template-columns: 5fr 3fr; gap: 10px; }
.app .bars { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; align-items: end; height: 72px; margin-bottom: 18px; }
.app .bars span { position: relative; height: calc(var(--h) * 100%); background: var(--accent); border-radius: 4px 4px 0 0; }
.app .bars span:last-child { background: var(--accent2); }
.app .bars span i { position: absolute; top: 100%; left: 0; right: 0; text-align: center; font-style: normal; font-size: 10px; color: var(--smuted); margin-top: 4px; }
.app .recent .lg { display: grid; gap: 1px; margin-bottom: 6px; font-size: 12px; }
.app .recent .lg span { font-weight: 600; white-space: nowrap; }
.app .recent .lg em { font-style: normal; color: var(--smuted); font-size: 11px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.grow .phone { position: absolute; right: -16px; bottom: -40px; width: 150px; transform: rotate(-5deg); }
.grow .phone.gk { --at: calc((var(--s) - 1) * .2 + .06); transform: translateY(calc((1 - var(--g)) * 60px)) rotate(-5deg); }   /* 폰은 그 단계의 표가 다 선 뒤에 */

/* 화면은 통째로 페이드가 아니라 조각으로 선다(2026-09-11 길록 「오른쪽 화면이 쪼개져서 그럴싸하게」) — site.js 가 단계에 들어설 때 data-stage 를 바꾸고,
   그 단계 화면의 조각들이 순서대로 올라온다: 상단바 → 타일 줄 → 카드 → 표의 행. 되돌아와도 다시 논다. 지연은 ms — 층마다 --d1(첫째 층)·--d2(타일·카드)·--d3(행) */
.grow .scr { --an: none; --an-row: none; }
.grow[data-stage="1"] .scr.s1, .grow[data-stage="2"] .scr.s2, .grow[data-stage="3"] .scr.s3, .grow[data-stage="4"] .scr.s4, .grow[data-stage="5"] .scr.s5 { --an: rise; --an-row: fade; }
@keyframes rise { from { opacity: 0; transform: translateY(10px); } }
@keyframes fade { from { opacity: 0; } }
.grow .scr > *, .grow .scr .kpis > .kpi, .grow .scr .row > .card, .grow .scr .wrow > *, .grow .scr .wrow3 > *, .grow .scr .pics > i { animation: var(--an) .55s cubic-bezier(.2, .7, .2, 1) both; animation-delay: calc(var(--d3, var(--d2, var(--d1, 0))) * 1ms); }
.grow .scr tbody > tr, .grow .scr .bars > span, .grow .scr .recent > .lg, .grow .scr .form > * { animation: var(--an-row) .45s ease both; animation-delay: calc(var(--d3, 0) * 1ms); }
.grow .scr > :nth-child(1) { --d1: 0; } .grow .scr > :nth-child(2) { --d1: 90; } .grow .scr > :nth-child(3) { --d1: 180; } .grow .scr > :nth-child(4) { --d1: 270; } .grow .scr > :nth-child(5) { --d1: 360; } .grow .scr > :nth-child(6) { --d1: 450; }
.grow .scr .kpis > .kpi, .grow .scr .row > .card, .grow .scr .wrow > *, .grow .scr .wrow3 > *, .grow .scr .pics > i { --d2: calc(var(--d1, 0) + var(--c, 0) * 70); }
.grow .scr :nth-child(2) { --c: 1; } .grow .scr :nth-child(3) { --c: 2; } .grow .scr :nth-child(4) { --c: 3; }
.grow .scr tbody > tr, .grow .scr .bars > span, .grow .scr .recent > .lg, .grow .scr .form > * { --d3: calc(var(--d2, var(--d1, 0)) + 80 + var(--r, 0) * 40); }
.grow .scr tbody > tr:nth-child(2), .grow .scr .bars > span:nth-child(2), .grow .scr .lg:nth-child(3), .grow .scr .form > :nth-child(2) { --r: 1; }
.grow .scr tbody > tr:nth-child(3), .grow .scr .bars > span:nth-child(3), .grow .scr .lg:nth-child(4), .grow .scr .form > :nth-child(3) { --r: 2; }
.grow .scr tbody > tr:nth-child(4), .grow .scr .bars > span:nth-child(4), .grow .scr .form > :nth-child(4) { --r: 3; }
.grow .scr tbody > tr:nth-child(5), .grow .scr .bars > span:nth-child(5) { --r: 4; }
.grow .scr tbody > tr:nth-child(6), .grow .scr .bars > span:nth-child(6) { --r: 5; }
.grow .scr tbody > tr:nth-child(7) { --r: 6; } .grow .scr tbody > tr:nth-child(8) { --r: 7; } .grow .scr tbody > tr:nth-child(9) { --r: 8; }

/* 이렇게 씁니다 · 첫 달 수습(요금제) — 번호 목록 */
ol.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
ol.steps li { display: flex; gap: 14px; align-items: flex-start; border-top: 1px solid var(--line); padding-top: 20px; }
ol.steps .n { flex: none; display: inline-grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--accent); color: var(--on-accent); font-size: 13px; font-weight: 700; }
ol.steps h3 { font-size: 19px; line-height: 27px; margin: 1px 0 6px; }
ol.steps p { color: var(--muted); font-size: 15px; line-height: 24px; margin: 0; }

/* 마감 카드 — 값·이유·CTA 가 한 상자. 오른쪽 위에 비버 */
section.last { padding-top: 40px; }
.close { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 44px 44px 40px; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: 32px 48px; align-items: center; }
.close .k { display: block; font-size: 14px; font-weight: 600; color: var(--accent2); letter-spacing: .02em; margin-bottom: 8px; }
.close h2 { font-size: clamp(36px, 5vw, 56px); margin-bottom: 8px; font-variant-numeric: tabular-nums; }
.close .note { color: var(--muted); max-width: 440px; margin: 0 0 28px; }
.close .cta { margin: 0; }
.close .r { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.close .r li { display: grid; gap: 2px; padding-left: 26px; position: relative; }
.close .r li::before { content: ''; position: absolute; left: 0; top: 7px; width: 14px; height: 8px; border-left: 2.5px solid var(--accent2); border-bottom: 2.5px solid var(--accent2); transform: rotate(-45deg); }
.close .r b { font-size: 16px; }
.close .r span { color: var(--muted); font-size: 14px; line-height: 22px; }
.close .bv { position: absolute; right: 28px; top: -78px; width: 150px; height: auto; pointer-events: none; }

/* 문의하기 — 폼이 아니라 쪽지. 사이트 어디서든 a[href="#ask"] 로 연다(site.js) */
.ask { position: fixed; inset: 0; z-index: 9100; background: rgba(25,25,25,.28); display: grid; place-items: center; padding: 20px; }
.ask[hidden] { display: none; }
.ask-card { position: relative; width: min(480px, 100%); background: #fff; border: 1px solid var(--line-2); border-radius: 16px; padding: 28px 28px 24px; box-shadow: 0 24px 60px rgba(25,25,25,.18); animation: askin .22s cubic-bezier(.16,1,.3,1) both; }
@keyframes askin { from { opacity: 0; transform: translateY(10px) scale(.98) } to { opacity: 1; transform: none } }
.ask-card h3 { font-size: 22px; line-height: 30px; margin: 0 0 6px; }
.ask-card p { color: var(--muted); font-size: 14px; line-height: 22px; margin: 0 0 16px; }
.ask-x { position: absolute; right: 12px; top: 12px; border: 0; background: none; font-size: 22px; line-height: 1; padding: 6px 8px; border-radius: 6px; color: var(--muted); cursor: pointer; }
.ask-x:hover { background: var(--card); color: var(--fg); }
.ask-card textarea, .ask-card input { display: block; width: 100%; font: inherit; font-size: 16px; line-height: 24px; padding: 10px 12px; border: 1px solid var(--line-2); border-radius: 10px; background: var(--bg); color: var(--fg); margin-bottom: 10px; }
.ask-card textarea { resize: vertical; min-height: 120px; }
.ask-card textarea:focus, .ask-card input:focus { outline: none; border-color: var(--accent2); box-shadow: 0 0 0 3px rgba(122,74,42,.15); }
.ask-card .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.ask-foot { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 4px; }
.ask-foot .btn { font: inherit; border: 0; cursor: pointer; }
.ask-err { color: var(--bad); font-size: 14px; }
.ask-done { display: grid; gap: 4px; padding: 6px 0; } .ask-done b { font-size: 18px; } .ask-done span { color: var(--muted); font-size: 14px; line-height: 22px; }

/* FAQ 검색 — 글자를 치면 맞는 것만 남고 펼쳐진다(pricing.html 의 스크립트) */
.faq-search { display: flex; align-items: center; gap: 10px; border: 1px solid var(--line-2); border-radius: 12px; background: #fff; padding: 0 14px; margin: 0 0 20px; color: var(--muted); }
.faq-search:focus-within { border-color: var(--accent2); box-shadow: 0 0 0 3px rgba(122,74,42,.12); }
.faq-search input { flex: 1; font: inherit; font-size: 16px; line-height: 24px; padding: 11px 0; border: 0; background: none; color: var(--fg); min-width: 0; }
.faq-search input:focus { outline: none; }
.faq details[hidden] { display: none; }
.faq-none { color: var(--muted); margin: 16px 0 0; }

@media (max-width: 899px) {
  .grow { height: 320vh; }
  .grow .stage { grid-template-columns: 1fr; gap: 16px; align-content: center; }
  /* 폰: 다섯 칸 진행선(몇 개월차만) + 그 아래 한 줄에 지금 단계 제목이 겹쳐서 갈아든다 */
  .gs-list { grid-template-columns: repeat(5, 1fr); gap: 4px; position: relative; padding-bottom: 30px; }
  .gs { padding: 6px 0 0; position: static; border-left: 0; border-top: 2px solid color-mix(in srgb, var(--accent2) calc(var(--a) * 100%), var(--line)); }
  .gs::before { display: none; }
  .gs b { font-size: 11px; }
  .gs span { position: absolute; left: 0; right: 0; bottom: 0; font-size: 16px; line-height: 24px; opacity: var(--a); }
  .gs em { display: none; } .gs .from { display: none; }
  .app .row { grid-template-columns: 1fr 1fr; }
  .app .kpis.n2, .app .kpis.n3 { grid-template-columns: 1fr 1fr; max-width: none; }
  .grow .phone { display: none; }
  ol.steps { grid-template-columns: 1fr; gap: 18px; }
  .close { grid-template-columns: 1fr; padding: 32px 24px 28px; gap: 24px; }
  .close .bv { width: 110px; top: -58px; right: 16px; }
}

/* ── 치타WEB — 가게 홈페이지 모형(.web). 비버의 .app 자리에 선다: 히어로 장면(.bm)·자라는 화면(.grow) 박자를 그대로 쓴다(2026-09-11) ── */
.web { --sfg: #1a1d21; --smuted: #667085; --sline: #e5e3dd; --ssv: #fbfaf7; color: var(--sfg); background: #fff; border: 1px solid var(--line-2); border-radius: 14px; overflow: hidden; font-size: 13px; line-height: 18px; text-align: left; min-width: 0; display: grid; grid-template-rows: auto 1fr auto; }
.web .wnav { display: flex; align-items: center; gap: 12px; padding: 10px 16px; border-bottom: 1px solid var(--sline); background: #fff; }
.web .wnav b { font-size: 14px; display: flex; align-items: center; gap: 8px; margin-right: auto; white-space: nowrap; }
.web .wnav b i { width: 18px; height: 18px; border-radius: 5px; background: var(--accent); flex: none; }
.web .wnav nav { display: flex; gap: 2px; }
.web .wnav a { font-size: 12px; color: var(--smuted); padding: 4px 9px; border-radius: 6px; white-space: nowrap; }
.web .wnav a.on { color: var(--sfg); font-weight: 600; background: var(--ssv); }
.web .wnav .who { font-size: 11px; color: var(--smuted); white-space: nowrap; margin-left: 6px; }
.web .wbody { padding: 14px 16px 16px; display: grid; gap: 12px; align-content: start; min-width: 0; }
.web .whero { position: relative; background: linear-gradient(135deg, #fff1bf, #fbf8f3); border-radius: 10px; padding: 22px 20px 20px; overflow: hidden; }
.web .whero b { display: block; font-size: 22px; line-height: 28px; letter-spacing: -.02em; }
.web .whero span { color: var(--smuted); }
.web .whero .strip { display: block; font-style: normal; margin-top: 10px; font-size: 11px; font-weight: 600; color: #7a4200; background: #fdf1e0; border-radius: 6px; padding: 3px 8px; width: fit-content; }
.web .wrow { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.web .wrow3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.web .card { background: #fff; border: 1px solid var(--sline); border-radius: 8px; padding: 10px 12px; min-width: 0; }
.web .card > em { display: block; font-style: normal; font-weight: 600; font-size: 12px; color: var(--smuted); margin: 0 0 6px; }
.web .mut { color: var(--smuted); font-size: 12px; }
.web .pics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.web .pics i { display: block; aspect-ratio: 4 / 3; border-radius: 6px; background: linear-gradient(135deg, #ece5d6, #d9d0bd); }
.web .map { height: 78px; border-radius: 6px; background: repeating-linear-gradient(45deg, #eef0f3 0 8px, #f6f7f9 8px 16px); position: relative; margin-bottom: 4px; }
.web .map::after { content: ''; position: absolute; left: 50%; top: 50%; width: 12px; height: 12px; margin: -9px 0 0 -6px; border-radius: 50% 50% 50% 0; background: var(--accent2); transform: rotate(-45deg); }
.web .hours { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.web .form { display: grid; gap: 6px; }
.web .form i { display: block; height: 24px; border: 1px solid var(--sline); border-radius: 6px; background: var(--ssv); font-style: normal; font-size: 11px; color: var(--smuted); padding: 3px 8px; }
.web .form b { display: block; text-align: center; background: var(--accent); color: var(--on-accent); border-radius: 6px; padding: 4px; font-size: 12px; }
.web .serp b { display: block; color: #1a0dab; font-size: 13px; } .web .serp span { display: block; color: #0f5f37; font-size: 11px; } .web .serp p { margin: 2px 0 0; color: var(--smuted); font-size: 12px; line-height: 16px; }
.web .foot { padding: 9px 16px; border-top: 1px solid var(--sline); color: var(--smuted); font-size: 11px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bm .web { border: 0; border-radius: 14px 0 0 14px; height: 100%; }
.bm .web td.hl .badge { opacity: 1; }
.grow .web { box-shadow: 0 30px 80px var(--shadow); }
.grow .web .wbody { grid-template-columns: 100%; }
.grow .web .wnav a.nv { opacity: var(--g, 1); background: rgba(25,25,25, calc(var(--a, 0) * .06)); color: color-mix(in srgb, var(--sfg) calc(var(--a, 0) * 100%), var(--smuted)); }
.grow .web .users i { color: var(--sfg); }
@media (max-width: 899px) {
  .web .wrow3 { grid-template-columns: 1fr 1fr; } .web .wnav .who { display: none; }
}
@media (max-width: 719px) {
  .web .wrow, .web .wrow3 { grid-template-columns: 1fr; } .web .pics { grid-template-columns: repeat(3, 1fr); } .web .pics i:nth-child(4) { display: none; }
  .web .wnav { flex-wrap: wrap; gap: 6px 4px; } .web .wnav nav { flex-wrap: wrap; }
  .web th, .web td { padding: 6px 5px; font-size: 11px; } .web .whero b { font-size: 18px; line-height: 24px; }
}

/* ── 실측 카드(.tally) — 「이렇게 씁니다」 아래. 사흘 막대 + 문장 속 숫자 셋(2026-09-11) ── */
.tally { margin-top: 44px; background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 26px 32px; display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 20px 40px; align-items: center; }
.tally .tl em { display: block; font-style: normal; font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.tally .days { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items: end; height: 96px; }
.tally .days div { display: grid; grid-template-rows: 1fr auto auto; height: 100%; justify-items: center; }
.tally .days span { align-self: end; width: 100%; height: calc(var(--h) * 100%); min-height: 4px; background: var(--accent); border-radius: 6px 6px 0 0; }
.tally .days b { font-size: 14px; line-height: 20px; margin-top: 6px; font-variant-numeric: tabular-nums; }
.tally .days i { font-style: normal; font-size: 12px; color: var(--muted); }
.tally .tr p { margin: 0; font-size: 19px; line-height: 32px; letter-spacing: -.01em; }
.tally .tr b { font-size: 30px; line-height: 32px; font-weight: 700; letter-spacing: -.03em; font-variant-numeric: tabular-nums; margin-right: 2px; }
.tally .tr p:last-child b { color: var(--accent2-text, #7a4a2a); }
@media (max-width: 719px) { .tally { grid-template-columns: 1fr; padding: 20px 20px 22px; } .tally .tr p { font-size: 17px; line-height: 28px; } .tally .tr b { font-size: 26px; } }
