/*
 * TASK:T1248 — 플러그인(toolly-core, toolly-support-manager)이 인라인 style="" 안에서
 * var(--...) 로 직접 참조하는 CSS 커스텀 프로퍼티를 이 테마 :root 에 별칭으로 정의한다.
 * 플러그인은 옛 toolly 테마의 assets/css/tokens.css 가 있다는 전제로 작성돼 있어, 그
 * 변수들이 새 테마에는 없으면 값이 빈 문자열로 떨어진다(예: TSM_Guide_Gate::render_gate()
 * 의 로그인 안내 화면 h1/h2). 플러그인 코드는 수정하지 않고, 참조되는 변수 이름만 이 테마의
 * 값으로 매핑한다.
 *
 * 대상 변수 전수 조사: `grep -rohE "var\(--[a-zA-Z0-9_-]+" plugins/toolly-core/ plugins/toolly-support-manager/`
 * 결과 6개 — 전부 class-tsm-guide-gate.php 의 인라인 style 두 줄(h1/h2)에서만 쓰인다.
 *
 * | 변수                     | 참조 위치                                   | 매핑 값                          |
 * |--------------------------|----------------------------------------------|-----------------------------------|
 * | --font-h1-size           | class-tsm-guide-gate.php:124 (h1 font-size)   | 44px                               |
 * | --font-h1-weight         | class-tsm-guide-gate.php:124 (h1 font-weight) | 800                                |
 * | --font-h1-lh             | class-tsm-guide-gate.php:124 (h1 line-height) | 1.15                               |
 * | --font-h1-tracking       | class-tsm-guide-gate.php:124 (h1 letter-sp.)  | -0.02em                            |
 * | --font-h2-size           | class-tsm-guide-gate.php:128 (h2 font-size)   | 26px                               |
 * | --color-text-secondary   | class-tsm-guide-gate.php:128 (h2 color)       | var(--muted) (이 테마 기존 토큰)   |
 *
 * 게이트 화면(.tsm-guide-gate, max-width:640px 안내 카드)은 히어로급 초대형 타이포가 아니라
 * 일반 안내 문구라 이 테마의 h1 clamp(58~132px) 대신 44px 안팎으로 맞췄다.
 */
:root {
  --font-h1-size: 44px;
  --font-h1-weight: 800;
  --font-h1-lh: 1.15;
  --font-h1-tracking: -0.02em;
  --font-h2-size: 26px;
  --color-text-secondary: var(--muted);
}
