﻿:root {
    --ink:      oklch(0.22 0.009 40);
    --ink-2:    oklch(0.44 0.009 40);
    --ink-3:    oklch(0.60 0.008 40);
    --line:     oklch(0.91 0.005 45);
    --line-2:   oklch(0.955 0.004 45);
    --control-border: oklch(0.76 0.009 45);
    --bg:       oklch(0.986 0.003 50);
    --surface:  oklch(1 0 0);
    --surface-2:oklch(0.974 0.004 50);
    --accent:      oklch(0.55 0.195 27);
    --accent-press:oklch(0.48 0.195 27);
    --accent-soft: oklch(0.962 0.03 27);
    --accent-ink:  oklch(0.50 0.19 27);
    --ok:    oklch(0.58 0.10 155);
    --ok-bg: oklch(0.95 0.04 155);
    --warn:    oklch(0.66 0.11 65);
    --warn-bg: oklch(0.955 0.045 75);
    --off:   oklch(0.62 0.008 264);
    --off-bg:oklch(0.955 0.004 264);
    --radius: 14px;
    --radius-sm: 10px;
    --shadow-card: 0 1px 2px oklch(0.2 0.02 40 / 0.04), 0 4px 16px oklch(0.2 0.02 40 / 0.05);
    --shadow-soft: 0 1px 2px oklch(0.2 0.02 40 / 0.05), 0 2px 8px oklch(0.2 0.02 40 / 0.04);
    --shadow-sm: var(--shadow-soft);
    --shadow-pop: 0 8px 24px oklch(0.2 0.02 40 / 0.10), 0 32px 64px oklch(0.2 0.02 40 / 0.14);
    --maxw: 1320px;
    --font-sans: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --sans: var(--font-sans);
    --mono: var(--font-sans);
    --scrollbar-size: 5px;
    --scrollbar-track: transparent;
    --scrollbar-thumb: oklch(0.72 0.008 40 / 0.38);
    --scrollbar-thumb-hover: oklch(0.50 0.009 40 / 0.58);
  }

  * { box-sizing: border-box; }

  /* ───── Modern thin scrollbars (page + panels) ───── */
  html {
    scrollbar-width: thin;
    scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
  }
  *::-webkit-scrollbar {
    width: var(--scrollbar-size);
    height: var(--scrollbar-size);
  }
  *::-webkit-scrollbar-track {
    background: var(--scrollbar-track);
  }
  *::-webkit-scrollbar-thumb {
    background-color: var(--scrollbar-thumb);
    border-radius: 999px;
  }
  *::-webkit-scrollbar-thumb:hover {
    background-color: var(--scrollbar-thumb-hover);
  }
  *::-webkit-scrollbar-corner {
    background: transparent;
  }

  /* Horizontal swipe strips — scrollbar hidden (gesture scroll) */
  .cattabs__in,
  .utilbar__nav {
    scrollbar-width: none;
  }
  .cattabs__in::-webkit-scrollbar,
  .utilbar__nav::-webkit-scrollbar {
    display: none;
  }
  html, body { margin: 0; padding: 0; width: 100%; }
  html { font-family: var(--font-sans); }
  body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    letter-spacing: -0.01em;
    min-height: 100vh;
  }
  #root { min-height: 100vh; }
  button:not(.btn):not(.icon-btn):not(.blog-share__btn) { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; letter-spacing: inherit; }
  input, select, textarea { font-family: inherit; letter-spacing: inherit; }
  a { color: inherit; text-decoration: none; }
  ::selection { background: var(--accent-soft); }
  .mono { font-family: var(--font-sans); font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }

  /* ????? ?좏떥 諛?????? */
  /* ───── full-bleed site chrome (배경 100% / 내용만 maxw) ───── */
  .utilbar,
  .header,
  .cattabs,
  .footer {
    width: 100%;
  }

  .utilbar { background: var(--ink); color: oklch(0.80 0.01 40); }
  .utilbar__in { max-width: var(--maxw); margin: 0 auto; height: 38px; display: flex; align-items: center; justify-content: space-between; padding: 0 24px; font-size: 12px; }
  .utilbar__l { display: flex; gap: 18px; align-items: center; }
  .utilbar__r { display: flex; gap: 14px; align-items: center; }
  .utilbar__r a:hover { color: #fff; }
  .utilbar__nav { display: inline-flex; align-items: center; gap: 6px; }
  .util-sep { opacity: .4; user-select: none; line-height: 1; }
  .util-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 3px oklch(0.58 0.10 155 / 0.25); }
  .langsw { display: inline-flex; gap: 1px; background: oklch(0.32 0.008 40); border-radius: 7px; padding: 2px; }
  .langsw button { font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 0.03em; color: oklch(0.7 0.01 40); padding: 3px 8px; border-radius: 5px; line-height: 1.2; }
  .langsw a { font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 0.03em; color: oklch(0.7 0.01 40); padding: 3px 8px; border-radius: 5px; line-height: 1.2; display: inline-block; }
  .langsw button:hover,
  .langsw a:hover { color: #fff; }
  .utilbar .langsw button.on,
  .utilbar .langsw a.on {
    background: var(--surface);
    color: var(--ink);
    box-shadow: 0 1px 3px oklch(0 0 0 / 0.22);
  }

  .moq-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin: 14px 0 2px; }
  .moq-pill { font-family: var(--mono); font-size: 12.5px; font-weight: 600; padding: 6px 11px; border-radius: 8px; background: var(--accent-soft); color: var(--accent-ink); }
  .hint { font-size: 11.5px; color: var(--ink-3); margin-top: 6px; }

  /* ????? ?ㅻ뜑 ????? */
  .header { position: sticky; top: 0; z-index: 40; background: oklch(1 0 0 / 0.85); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
  .header__in { max-width: var(--maxw); margin: 0 auto; height: 72px; display: flex; align-items: center; gap: 24px; padding: 0 24px; }
  .logo { display: flex; align-items: center; gap: 9px; flex-shrink: 0; }
  .logo__img { height: 38px; width: auto; display: block; }
  .logo__mark { font-weight: 800; font-size: 22px; letter-spacing: -0.04em; }
  .logo__mark b { color: var(--accent); }
  .logo__tag { font-size: 11px; color: var(--ink-3); letter-spacing: 0.02em; }
  .search { flex: 1; max-width: 560px; position: relative; }
  .search input { width: 100%; height: 46px; border: 1.5px solid var(--line); background: var(--surface); border-radius: 999px; padding: 0 46px 0 46px; font-size: 14.5px; color: var(--ink); transition: border-color .15s, box-shadow .15s; }
  .search input::placeholder { color: var(--ink-3); }
  .search input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
  .search__icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--ink-3); pointer-events: none; }
  .search__clear { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); width: var(--btn-h); height: var(--btn-h); border-radius: 50%; display: grid; place-items: center; color: var(--ink-3); }
  .search__clear:hover { background: var(--surface-2); color: var(--ink); }
  .header__actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; margin-left: auto; }
  .header__login { white-space: nowrap; }
  .header__menu { display: none; }
  /* PC 헤더 로그인/로그아웃 — 하트(icon-btn)와 동일 테두리 */
  .header__actions .btn--ghost.header__login {
    border: 1.5px solid var(--control-border);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
  }
  .header__actions .btn--ghost.header__login:hover {
    border-color: var(--btn-ghost-border-hover, oklch(0.66 0.012 45));
    background: var(--surface-2);
    box-shadow: var(--shadow-card);
  }
  /* buttons: see buttons.css (--btn-h: 46px) */

  /* ????? 移댄뀒怨좊━ ??????? */
  .cattabs { position: sticky; top: 72px; z-index: 30; background: oklch(1 0 0 / 0.85); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
  .cattabs__in { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; display: flex; gap: 4px; overflow-x: auto; }
  .cattab { position: relative; height: 52px; padding: 0 16px; display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 500; color: var(--ink-2); white-space: nowrap; }
  .cattab:hover { color: var(--ink); }
  .cattab.on { color: var(--ink); font-weight: 700; }
  .cattab.on::after { content: ""; position: absolute; left: 16px; right: 16px; bottom: -1px; height: 2.5px; background: var(--accent); border-radius: 2px; }
  .cattab__n { font-size: 11.5px; color: var(--ink-3); font-family: var(--mono); }

  /* ????? ?덉씠?꾩썐 ????? */
  .shell { max-width: var(--maxw); margin: 0 auto; padding: 28px 24px 80px; display: grid; grid-template-columns: 248px 1fr; gap: 32px; align-items: start; }

  /* ????? ?ъ씠?쒕컮 ?꾪꽣 ????? */
  .sidebar { position: sticky; top: 140px; }
  .filtcard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 6px 18px 14px; box-shadow: var(--shadow-card); }
  .filt { padding: 16px 0; border-bottom: 1px solid var(--line-2); }
  .filt:last-child { border-bottom: none; }
  .filt__h { display: flex; align-items: center; justify-content: space-between; font-size: 13px; font-weight: 700; color: var(--ink); margin: 0 0 12px; }
  .filt__h .mono { color: var(--ink-3); font-weight: 500; font-size: 11px; }
  .check { display: flex; align-items: center; gap: 10px; padding: 6px 0; cursor: pointer; font-size: 13.5px; color: var(--ink-2); user-select: none; }
  .check:hover { color: var(--ink); }
  .check__box { width: 18px; height: 18px; border-radius: 6px; border: 1.5px solid var(--line); display: grid; place-items: center; flex-shrink: 0; transition: all .12s; }
  .check input { position: absolute; opacity: 0; pointer-events: none; }
  .check input:checked + .check__box { background: var(--accent); border-color: var(--accent); }
  .check input:checked + .check__box svg { opacity: 1; }
  .check__box svg { opacity: 0; color: #fff; }
  .check__n { margin-left: auto; font-family: var(--mono); font-size: 11px; color: var(--ink-3); }
  .chips { display: flex; flex-wrap: wrap; gap: 7px; }
  .chip { padding: 7px 12px; border-radius: 9px; border: 1.5px solid var(--control-border); background: var(--surface); font-size: 12.5px; font-weight: 500; color: var(--ink-2); box-shadow: var(--shadow-soft); transition: all .12s; }
  .chip:hover { border-color: var(--btn-ghost-border-hover, oklch(0.66 0.012 45)); color: var(--ink); }
  .chip.on { background: var(--accent-soft); border-color: var(--accent); color: var(--accent-ink); font-weight: 600; }
  .filt-reset { width: 100%; margin-top: 4px; height: 38px; border-radius: 10px; border: 1.5px solid var(--control-border); background: var(--surface); font-size: 13px; font-weight: 600; color: var(--ink-2); box-shadow: var(--shadow-soft); }
  .filt-reset:hover { border-color: var(--btn-ghost-border-hover, oklch(0.66 0.012 45)); background: var(--surface-2); color: var(--ink); }

  /* ????? 洹몃━???ㅻ뜑 ????? */
  .gridhead { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; flex-wrap: wrap; }
  .gridhead__count { font-size: 14px; color: var(--ink-2); }
  .gridhead__count b { color: var(--ink); font-weight: 700; }
  .gridhead__tools { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
  .gridhead__fav { position: relative; }
  .gridhead__fav.on { color: oklch(0.58 0.18 18); border-color: oklch(0.58 0.18 18 / 0.4); }
  .activechips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
  .achip { display: inline-flex; align-items: center; gap: 6px; padding: 5px 6px 5px 11px; border-radius: 8px; background: var(--accent-soft); color: var(--accent-ink); font-size: 12.5px; font-weight: 600; }
  .achip button { width: 16px; height: 16px; border-radius: 50%; display: grid; place-items: center; color: var(--accent-ink); }
  .achip button:hover { background: oklch(0.55 0.19 27 / 0.15); }
  .sortsel { position: relative; }
  .sortsel select { appearance: none; box-sizing: border-box; height: var(--btn-h); min-height: var(--btn-h); padding: 0 38px 0 14px; border: 1.5px solid var(--line); border-radius: var(--btn-r, 10px); background: var(--surface); font-size: 13.5px; font-weight: 600; line-height: 1; color: var(--ink); cursor: pointer; }
  .sortsel select:focus { outline: none; border-color: var(--accent); }
  .sortsel svg { position: absolute; right: 13px; top: 50%; transform: translateY(-50%); color: var(--ink-3); pointer-events: none; }
  button.btn.filt-toggle,
  .btn.filt-toggle { display: none; }

  /* ????? ?곹뭹 洹몃━??/ 移대뱶 ????? */
  .grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(238px, 1fr)); gap: 18px; }
  .card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: transform .16s cubic-bezier(.2,.7,.3,1), box-shadow .16s, border-color .16s; display: flex; flex-direction: column; box-shadow: var(--shadow-soft); }
  .card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: var(--line); }
  .card__media { position: relative; aspect-ratio: 1 / 1; overflow: hidden; }
  .card__badges { position: absolute; top: 11px; left: 11px; display: flex; gap: 6px; z-index: 2; }
  .card__fav { position: absolute; top: 9px; right: 9px; z-index: 3; width: 34px; height: 34px; border-radius: 50%; background: oklch(1 0 0 / 0.8); backdrop-filter: blur(6px); display: grid; place-items: center; color: var(--ink-3); transition: all .14s; border: none; cursor: pointer; }
  .card__fav:hover { color: var(--ink); transform: scale(1.08); }
  .card__fav.on { color: oklch(0.58 0.18 18); }
  .card__body { padding: 14px 15px 16px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
  .card__brand { font-family: var(--mono); font-size: 10.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); }
  .card__name { font-size: 14.5px; font-weight: 700; line-height: 1.35; color: var(--ink); margin: 1px 0 2px; }
  .card__spec { font-size: 12px; color: var(--ink-3); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
  .card__foot { margin-top: auto; padding-top: 11px; display: flex; align-items: flex-end; justify-content: space-between; }
  .card__price { font-size: 17px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
  .card__price small { font-size: 11px; font-weight: 500; color: var(--ink-3); margin-left: 2px; }
  .card__price--locked {
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-3);
    letter-spacing: -0.01em;
    line-height: 1.35;
    max-width: 11em;
  }
  .price-lock {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    letter-spacing: inherit;
  }
  .price-lock-hint {
    flex: 1 1 100%;
    font-size: 12px;
    font-weight: 500;
    color: var(--ink-3);
    line-height: 1.45;
  }
  .card__vat { font-size: 10.5px; color: var(--ink-3); }

  .badge { font-size: 11px; font-weight: 700; padding: 4px 8px; border-radius: 7px; line-height: 1; display: inline-flex; align-items: center; gap: 5px; }
  .badge__dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; flex-shrink: 0; }
  .badge--in { background: var(--ok-bg); color: oklch(0.42 0.10 155); }
  .badge--soon { background: var(--warn-bg); color: oklch(0.48 0.10 65); }
  .badge--out { background: var(--off-bg); color: var(--off); }
  .badge--tag { background: oklch(1 0 0 / 0.82); backdrop-filter: blur(6px); color: var(--ink-2); border: 1px solid var(--line); }

  /* 플레이스홀더 이미지 */
  .ph { width: 100%; height: 100%; position: relative; display: grid; place-items: center; overflow: hidden; }
  .ph__cap { position: relative; z-index: 1; font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: oklch(0.55 0.02 264 / 0.7); padding: 4px 8px; border: 1px dashed oklch(0.6 0.02 264 / 0.4); border-radius: 6px; background: oklch(1 0 0 / 0.4); }
  .ph__svg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }

  /* 鍮??곹깭 */
  .empty { grid-column: 1/-1; text-align: center; padding: 80px 20px; color: var(--ink-3); }
  .empty h3 { color: var(--ink); font-size: 18px; margin: 16px 0 6px; }
  .empty p { font-size: 14px; margin: 0 0 20px; }

  /* ????? ?곸꽭 ?쒕줈??????? */
  .scrim { position: fixed; inset: 0; background: oklch(0.2 0.02 264 / 0.42); backdrop-filter: blur(2px); z-index: 60; opacity: 0; transition: opacity .25s; }
  .scrim.show { opacity: 1; }
  .drawer { position: fixed; top: 0; right: 0; height: 100%; width: 520px; max-width: 94vw; background: var(--surface); z-index: 61; box-shadow: var(--shadow-pop); transform: translateX(100%); transition: transform .32s cubic-bezier(.2,.8,.2,1); display: flex; flex-direction: column; }
  .drawer.show { transform: translateX(0); }
  .drawer__top { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--line); flex-shrink: 0; }
  .drawer__top .mono { font-size: 11.5px; color: var(--ink-3); }
  .drawer__body { overflow-y: auto; flex: 1; padding: 0 24px 24px; }
  .drawer__media { aspect-ratio: 1 / 1; border-radius: var(--radius); overflow: hidden; margin: 20px 0; border: 1px solid var(--line); background: var(--surface-2); }
  .dt-brand { font-family: var(--mono); font-size: 11.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-ink); }
  .dt-name { font-size: 23px; font-weight: 800; line-height: 1.25; margin: 6px 0 10px; letter-spacing: -0.02em; }
  .dt-tagrow { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
  .dt-price { display: flex; align-items: baseline; gap: 10px; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); flex-wrap: wrap; }
  .dt-price b { font-size: 27px; font-weight: 800; letter-spacing: -0.02em; }
  .dt-price--locked b {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink-3);
    letter-spacing: -0.01em;
    line-height: 1.35;
  }
  .dt-desc { font-size: 14px; line-height: 1.65; color: var(--ink-2); margin: 18px 0; }
  .spectable { border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; min-width: 0; }
  .specrow { display: grid; grid-template-columns: 110px 1fr; font-size: 13.5px; border-bottom: 1px solid var(--line-2); align-items: stretch; }
  .specrow:last-child { border-bottom: none; }
  .specrow dt { padding: 11px 14px; background: var(--surface-2); color: var(--ink-2); font-weight: 600; margin: 0; }
  .specrow dd { padding: 11px 14px; margin: 0; color: var(--ink); font-weight: 500; }
  .drawer .specrow {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    border-bottom: 1px solid var(--line-2);
  }
  .drawer .specrow dt,
  .drawer .specrow dd {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 11px 12px;
    box-sizing: border-box;
    line-height: 1.4;
    min-height: 42px;
  }
  .drawer .specrow dt {
    flex: 0 0 34%;
    max-width: 120px;
    min-width: 72px;
    background: var(--surface-2);
    color: var(--ink-3);
    font-size: 12px;
    font-weight: 600;
    overflow-wrap: anywhere;
    word-break: keep-all;
  }
  .drawer .specrow dd {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: flex-end;
    text-align: right;
    color: var(--ink);
    font-size: 13px;
    font-weight: 600;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .drawer__foot { flex-shrink: 0; border-top: 1px solid var(--line); padding: 14px 24px calc(14px + env(safe-area-inset-bottom)); display: flex; gap: 10px; background: var(--surface); }
  .drawer__foot .btn--ghost {
    border: 1.5px solid var(--control-border);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
  }
  .drawer__foot .btn--ghost:hover {
    border-color: var(--btn-ghost-border-hover, oklch(0.66 0.012 45));
    background: var(--surface-2);
    box-shadow: var(--shadow-card);
  }

  .section-label { font-size: 12px; font-weight: 700; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.04em; margin: 24px 0 10px; }

  /* ????? 紐⑤떖 (寃ъ쟻臾몄쓽) ????? */
  .modal-wrap { position: fixed; inset: 0; z-index: 70; display: none; place-items: center; padding: 20px; pointer-events: none; overflow: hidden; overscroll-behavior: contain; }
  .modal-wrap.is-open { display: grid; pointer-events: auto; }
  .modal-wrap .scrim { position: fixed; }
  .modal { position: relative; background: var(--surface); border-radius: 18px; box-shadow: var(--shadow-pop); width: min(540px, 100%); max-width: 100%; max-height: min(92vh, 92dvh); overflow-x: hidden; overflow-y: auto; -webkit-overflow-scrolling: touch; z-index: 71; transform: scale(.96); opacity: 0; transition: transform .2s, opacity .2s; min-width: 0; box-sizing: border-box; }
  .modal.show { transform: scale(1); opacity: 1; }
  .modal__head { padding: 24px 28px 0; }
  .modal__ey { font-family: var(--mono); font-size: 11.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-ink); }
  .modal__title { font-size: 21px; font-weight: 800; margin: 7px 0 4px; letter-spacing: -0.02em; }
  .modal__sub { font-size: 13.5px; color: var(--ink-2); margin: 0; overflow-wrap: anywhere; word-break: break-word; }
  .modal__x { position: absolute; top: 18px; right: 18px; width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; color: var(--ink-3); border: 1.5px solid var(--control-border); background: var(--surface); box-shadow: var(--shadow-soft); }
  .modal__x:hover { border-color: var(--btn-ghost-border-hover, oklch(0.66 0.012 45)); background: var(--surface-2); color: var(--ink); }
  .modal__body { padding: 20px 28px 28px; }
  .prodref { display: flex; gap: 12px; align-items: center; padding: 12px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface-2); margin-bottom: 20px; min-width: 0; }
  .prodref > div:not(.prodref__img) { min-width: 0; flex: 1 1 auto; }
  .prodref__img { width: 52px; height: 52px; border-radius: 9px; overflow: hidden; flex-shrink: 0; border: 1px solid var(--line); }
  .prodref__n { font-size: 13.5px; font-weight: 700; }
  .prodref__b { font-family: var(--mono); font-size: 10.5px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.05em; }
  .prodref__p { margin-left: auto; font-weight: 800; font-size: 15px; }

  .field { margin-bottom: 15px; }
  .field.hp { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
  .field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .field--row > * { min-width: 0; }
  .modal .sortsel { display: block; width: 100%; max-width: 100%; }
  .modal .sortsel select { width: 100%; max-width: 100%; }
  .field label { display: block; font-size: 12.5px; font-weight: 600; color: var(--ink-2); margin-bottom: 6px; }
  .field label .req { color: oklch(0.58 0.18 18); margin-left: 2px; }
  .field input, .field textarea, .field select { width: 100%; height: 44px; border: 1.5px solid var(--line); border-radius: 10px; padding: 0 13px; font-size: 14px; color: var(--ink); background: var(--surface); transition: border-color .14s, box-shadow .14s; }
  .field select { padding-right: 32px; cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }
  .field textarea { height: auto; padding: 11px 13px; resize: vertical; min-height: 88px; line-height: 1.5; }
  .field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
  .field input.err, .field textarea.err, .field select.err { border-color: oklch(0.6 0.18 18); box-shadow: 0 0 0 4px oklch(0.6 0.18 18 / 0.12); }
  .phone-row { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: center; }
  .phone-row__prefix {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    height: 44px;
    padding: 0 12px;
    border: 1.5px solid var(--control-border);
    border-radius: 10px;
    background: var(--surface-2);
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-2);
    white-space: nowrap;
    flex-shrink: 0;
    box-sizing: border-box;
  }
  .phone-row__prefix.err { border-color: oklch(0.6 0.18 18); box-shadow: 0 0 0 4px oklch(0.6 0.18 18 / 0.12); }
  .phone-row__num { width: 100%; height: 44px; border: 1.5px solid var(--line); border-radius: 10px; padding: 0 13px; font-size: 14px; color: var(--ink); background: var(--surface); }
  .phone-row__num.err { border-color: oklch(0.6 0.18 18); box-shadow: 0 0 0 4px oklch(0.6 0.18 18 / 0.12); }
  .math-captcha__hint { margin: 0 0 8px; color: var(--ink-3); }
  .math-captcha { display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: center; }
  .math-captcha__q { font-family: var(--mono); font-size: 22px; font-weight: 700; color: var(--ink); padding: 8px 12px; border-radius: 10px; background: var(--surface-2); border: 1.5px solid var(--line); white-space: nowrap; }
  .math-captcha input { width: 100%; height: 44px; border: 1.5px solid var(--line); border-radius: 10px; padding: 0 13px; font-size: 16px; font-weight: 700; font-family: var(--mono); color: var(--ink); background: var(--surface); }
  .math-captcha input.err { border-color: oklch(0.6 0.18 18); box-shadow: 0 0 0 4px oklch(0.6 0.18 18 / 0.12); }
  .math-captcha__btn { white-space: nowrap; }
  .turnstile-wrap { min-height: 65px; max-width: 100%; overflow-x: auto; }
  .captcha-row__err { color: oklch(0.58 0.18 18); margin-top: 6px; }
  .field .msg { font-size: 11.5px; color: oklch(0.55 0.18 18); margin-top: 5px; }
  .qty { display: inline-flex; align-items: center; border: 1.5px solid var(--control-border); border-radius: 10px; overflow: hidden; height: var(--btn-h); box-shadow: var(--shadow-soft); background: var(--surface); }
  .qty button { width: var(--btn-h); height: 100%; font-size: 14px; color: var(--ink-2); display: grid; place-items: center; }
  .qty button:hover { background: var(--surface-2); color: var(--ink); }
  .qty input { width: 56px; height: 100%; border: none; text-align: center; font-weight: 700; font-size: 15px; font-family: var(--mono); }
  .qty input:focus { outline: none; }
  .agree { display: flex; gap: 10px; align-items: flex-start; font-size: 12.5px; color: var(--ink-2); cursor: pointer; line-height: 1.5; margin: 4px 0 18px; }
  .agree a { color: var(--accent-ink); text-decoration: underline; }

  /* ?깃났 */
  .success { text-align: center; padding: 40px 28px 36px; }
  .success__ic { width: 64px; height: 64px; border-radius: 50%; background: var(--ok-bg); color: var(--ok); display: grid; place-items: center; margin: 0 auto 18px; }
  .success h3 { font-size: 21px; font-weight: 800; margin: 0 0 8px; }
  .success p { font-size: 14px; color: var(--ink-2); line-height: 1.6; margin: 0 0 6px; }
  .success__ref { display: inline-block; margin: 16px 0 24px; padding: 9px 16px; border-radius: 10px; background: var(--surface-2); border: 1px solid var(--line); font-family: var(--mono); font-size: 13px; font-weight: 600; }

  /* ????? ?명꽣 ????? */
  .footer { background: var(--ink); color: oklch(0.74 0.01 40); margin-top: 40px; }
  .footer__in { max-width: var(--maxw); margin: 0 auto; padding: 48px 24px 36px; }
  .footer__grid { display: grid; grid-template-columns: 1.4fr 0.7fr 0.9fr 1.1fr; gap: 36px; }
  .footer__logoimg { height: 34px; width: auto; display: block; margin-bottom: 16px; }
  .footer p { font-size: 12.5px; line-height: 1.85; margin: 0; color: oklch(0.68 0.01 40); }
  .footer h4 { font-size: 12px; font-weight: 700; color: oklch(0.86 0.01 40); text-transform: uppercase; letter-spacing: 0.05em; margin: 0 0 14px; }
  .footer__links { display: flex; flex-direction: column; gap: 9px; }
  .footer__links a,
  .footer__links button.footer-link { font-size: 13px; color: oklch(0.72 0.01 40); background: none; border: none; padding: 0; text-align: left; cursor: pointer; }
  .footer__links a:hover,
  .footer__links button.footer-link:hover { color: #fff; }
  .footer__contact { display: flex; flex-direction: column; gap: 16px; }
  .footer__contact > div { display: flex; flex-direction: column; align-items: flex-start; gap: 5px; }
  .ctgroup__region { font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: oklch(0.58 0.01 40); margin: 0 0 2px; }
  .footer__contact .wa { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 13px; color: oklch(0.82 0.01 40); padding: 1px 0; width: fit-content; transition: color .15s; }
  .footer__contact .wa:hover { color: #fff; }
  .wa__ic { width: 22px; height: 22px; border-radius: 6px; background: oklch(0.62 0.16 152); color: #fff; display: grid; place-items: center; flex-shrink: 0; }
  .footer__office { display: flex; flex-direction: column; gap: 6px; font-size: 12.5px; line-height: 1.6; color: oklch(0.66 0.01 40); margin-top: 2px; min-width: 0; }
  .footer__office-line { overflow-wrap: anywhere; word-break: break-word; }
  .footer__office b { color: oklch(0.82 0.01 40); font-weight: 600; }
  .footer__email { font-family: var(--mono); font-size: 12.5px; color: oklch(0.74 0.01 40); width: fit-content; max-width: 100%; overflow-wrap: anywhere; }
  .footer__email:hover { color: #fff; }
  .certs { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
  .cert { font-family: var(--mono); font-size: 10.5px; padding: 6px 9px; border: 1px solid oklch(0.4 0.01 40); border-radius: 7px; color: oklch(0.74 0.01 40); }
  .certbar { max-width: var(--maxw); margin: 8px auto 0; padding: 26px 24px; border-top: 1px solid oklch(0.32 0.008 40); display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
  .certbar__label { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: oklch(0.56 0.01 40); }
  .certbar__logos { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
  .certbar img { height: 34px; width: auto; opacity: 0.62; filter: saturate(0); transition: opacity .15s; }
  .certbar img:hover { opacity: 0.95; }
  .footer__bot { max-width: var(--maxw); margin: 0 auto; padding: 18px 24px; border-top: 1px solid oklch(0.32 0.008 40); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 11.5px; color: oklch(0.58 0.01 40); }

  /* 紐⑤컮???꾪꽣 ?쒗듃 */
  .sheet-scrim { position: fixed; inset: 0; background: oklch(0.2 0.02 264 / 0.42); z-index: 55; opacity: 0; transition: opacity .22s; }
  .sheet-scrim.show { opacity: 1; }
  .sheet { position: fixed; left: 0; right: 0; bottom: 0; z-index: 56; background: var(--surface); border-radius: 20px 20px 0 0; max-height: 86vh; display: flex; flex-direction: column; transform: translateY(100%); transition: transform .3s cubic-bezier(.2,.8,.2,1); }
  .sheet.show { transform: translateY(0); }
  .sheet__grip { width: 40px; height: 4px; border-radius: 2px; background: var(--line); margin: 10px auto 4px; }
  .sheet__head { display: flex; align-items: center; justify-content: space-between; padding: 8px 20px 14px; border-bottom: 1px solid var(--line); }
  .sheet__body { overflow-y: auto; padding: 4px 20px; }
  .sheet__foot { padding: 14px 20px calc(14px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); display: flex; gap: 10px; }

  /* ????? 諛섏쓳??????? */
  @media (max-width: 1080px) {
    .shell { grid-template-columns: 200px 1fr; gap: 24px; }
  }
  @media (max-width: 860px) {
    .header__in { height: 64px; gap: 14px; }
    .logo__tag { display: none; }
    .cattabs { top: 64px; }
    .search { order: 3; flex-basis: 100%; max-width: none; }
    .header__in { flex-wrap: wrap; height: auto; padding: 12px 16px; }
    .sidebar { top: 0; }
  }
  @media (max-width: 720px) {
    .sidebar { display: none; }
    .shell { grid-template-columns: 1fr; padding-top: 20px; }
    button.btn.filt-toggle,
    .btn.filt-toggle {
      display: inline-grid;
      place-items: center;
      width: var(--btn-h);
      min-width: var(--btn-h);
      max-width: var(--btn-h);
      padding: 0;
    }
    .filt-toggle__label,
    .filt-toggle__count {
      display: none !important;
    }
  }
  @media (max-width: 720px) {
    .modal-wrap.is-open {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      justify-content: flex-start;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      padding: max(12px, env(safe-area-inset-top)) 12px calc(12px + env(safe-area-inset-bottom));
    }
    .modal-wrap .modal {
      margin: auto 0;
      flex-shrink: 0;
      width: 100%;
      max-height: min(92dvh, calc(100dvh - 24px - env(safe-area-inset-top) - env(safe-area-inset-bottom)));
    }
    .modal .field--row { grid-template-columns: 1fr; }
    .modal .phone-row { grid-template-columns: 1fr; }
    .modal .math-captcha {
      grid-template-columns: 1fr auto;
      grid-template-rows: auto auto;
    }
    .modal .math-captcha__q { grid-column: 1 / -1; justify-self: start; }
    .modal .math-captcha input { grid-column: 1; min-width: 0; }
    .modal .math-captcha__btn { grid-column: 2; grid-row: 2; align-self: stretch; }
    .drawer { width: 100%; max-width: 100%; }
    .drawer__body { padding: 0 16px 20px; }
    .drawer__foot { flex-wrap: wrap; padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); }
    .drawer__foot .btn--accent { flex: 1 1 100%; }
    .drawer .specrow dt,
    .drawer .specrow dd { padding: 10px 10px; min-height: 40px; }
    .drawer .specrow dt { font-size: 11.5px; flex-basis: 32%; max-width: 34%; }
    .drawer .specrow dd { font-size: 12.5px; }
    .drawer .dt-price { flex-wrap: wrap; gap: 6px; }
    .sheet { max-height: min(90vh, 90dvh); }
    .sheet__body { padding: 4px 16px 8px; }
    .sheet__foot { flex-wrap: wrap; padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); }
    .sheet__foot .btn { min-width: 0; }
    .sheet__foot .btn--accent { flex: 1 1 100%; }
    .modal--info .info-actions { flex-direction: column; align-items: stretch; }
    .modal--info .info-actions .btn { width: 100%; flex: none !important; justify-content: center; }
    .lang-prompt { width: 100%; padding: 20px 16px calc(18px + env(safe-area-inset-bottom)); }
    .lang-prompt__head { padding: 0 40px 0 0; }
    .utilbar__in {
      height: auto;
      min-height: 38px;
      flex-wrap: wrap;
      gap: 6px 12px;
      padding-top: 8px;
      padding-bottom: 8px;
    }
    .utilbar__l {
      flex: 1 1 100%;
      gap: 10px;
      min-width: 0;
      font-size: 11px;
    }
    .utilbar__l > span:first-child {
      min-width: 0;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .utilbar__r {
      flex: 1 1 100%;
      justify-content: space-between;
      gap: 10px;
      min-width: 0;
    }
    .utilbar__nav {
      flex: 1;
      flex-wrap: nowrap;
      gap: 5px;
      min-width: 0;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }
    .util-sep { flex-shrink: 0; }
    .langsw { flex-shrink: 0; }
  }
  @media (max-width: 640px) {
    .modal-wrap.is-open { padding: max(8px, env(safe-area-inset-top)) 10px calc(10px + env(safe-area-inset-bottom)); }
    .modal { width: 100%; border-radius: 16px; }
    .modal__head { padding: 18px 44px 0 16px; min-width: 0; }
    .modal__body { padding: 16px 16px calc(20px + env(safe-area-inset-bottom)); min-width: 0; }
    .modal__title { font-size: 19px; overflow-wrap: anywhere; }
    .modal__x { top: max(12px, env(safe-area-inset-top)); right: 12px; }
    .modal .field,
    .modal .field input,
    .modal .field textarea,
    .modal .field select,
    .modal .agree { min-width: 0; max-width: 100%; }
    .modal .agree span { overflow-wrap: anywhere; word-break: break-word; }
    .modal .qty { max-width: 100%; }
    .prodref { flex-wrap: wrap; align-items: flex-start; }
    .prodref__n { overflow-wrap: anywhere; word-break: break-word; }
    .prodref__p { margin-left: 0; width: 100%; padding-left: 64px; font-size: 14px; }
    .success { padding: 32px 16px calc(28px + env(safe-area-inset-bottom)); }
    .success h3 { font-size: 19px; overflow-wrap: anywhere; }
    .info-actions { flex-direction: column; align-items: stretch; }
    .info-actions .btn { width: 100%; flex: none !important; justify-content: center; }
    .modal .math-captcha {
      grid-template-columns: 1fr;
      gap: 8px;
    }
    .modal .math-captcha__btn { grid-column: 1; grid-row: auto; width: 100%; justify-content: center; }
    .drawer__top { padding: 14px 16px; }
    .drawer .dt-name { font-size: 20px; overflow-wrap: anywhere; }
    .drawer .specrow dt,
    .drawer .specrow dd { padding: 10px 10px; min-height: 38px; }
    .drawer .specrow dt { font-size: 11px; flex-basis: 30%; max-width: 32%; }
    .drawer .specrow dd { font-size: 12.5px; }
    .drawer__foot a.btn { flex: 1; justify-content: center; }
    .sheet__head { padding: 8px 16px 12px; }
    .sheet .filtcard { padding: 4px 12px 10px; }
    .lang-prompt__actions { grid-template-columns: 1fr; gap: 8px; margin: 16px 0 10px; }
    .lang-prompt__actions .btn { width: 100%; justify-content: center; }
  }
  @media (max-width: 560px) {
    .grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .utilbar__l span:not(:first-child) { display: none; }
    .footer__grid { grid-template-columns: 1fr; gap: 28px; }
    .field--row { grid-template-columns: 1fr; }
    .logo__mark { font-size: 19px; }
    .card__name { font-size: 13.5px; }
    .card__price { font-size: 15.5px; }
    .card__price--locked { font-size: 11px; max-width: 9.5em; }
    .shell { padding-left: 16px; padding-right: 16px; }
    .cattabs__in, .header__in, .utilbar__in { padding-left: 16px; padding-right: 16px; }
  }
  /* ───── 안내 (모달 + SSR info 페이지 — design-import) ───── */
  .modal--info { width: min(600px, 100%); max-width: 100%; }
  .infolist { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
  .infosec { padding: 16px 0; border-bottom: 1px solid var(--line-2); min-width: 0; }
  .infosec:first-child { padding-top: 2px; }
  .infosec:last-child { border-bottom: none; }
  .infosec h4,
  .infosec h2 { display: flex; align-items: center; gap: 9px; font-size: 14.5px; font-weight: 700; color: var(--ink); margin: 0 0 7px; }
  .infosec h4::before,
  .infosec h2::before { content: ""; width: 7px; height: 7px; border-radius: 2px; background: var(--accent); flex-shrink: 0; }
  .infosec p { font-size: 13.5px; line-height: 1.65; color: var(--ink-2); margin: 0; overflow-wrap: anywhere; word-break: break-word; }
  .info-actions { display: flex; gap: 10px; margin-top: 22px; min-width: 0; }
  .info-actions .btn { min-width: 0; }
  .info-page { max-width: 760px; margin: 0 auto; padding: 28px 24px 56px; box-sizing: border-box; }
  .info-page__title { margin: 0 0 8px; font-size: clamp(24px, 4vw, 32px); line-height: 1.2; font-weight: 800; letter-spacing: -0.02em; }
  .info-page__sub { margin: 0 0 28px; color: var(--ink-3); font-size: 14px; line-height: 1.6; }

  /* ───── Blog — Claude mockup alignment ───── */
  .blog-page { display: block; max-width: none; padding: 0; margin: 0; }
  .blog-hero { padding: 48px 0 36px; border-bottom: 1px solid var(--line); background: var(--bg); }
  .blog-hero__kicker { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: var(--accent-ink); margin-bottom: 14px; }
  .blog-hero__kicker::before { content: ""; width: 24px; height: 2px; background: var(--accent); border-radius: 1px; }
  .blog-hero__title { margin: 0; font-size: clamp(28px, 4vw, 44px); line-height: 1.12; font-weight: 800; letter-spacing: -0.03em; max-width: min(100%, 36em); text-wrap: balance; }
  .blog-hero__desc { margin: 16px 0 0; max-width: min(100%, 42em); font-size: 15px; line-height: 1.75; color: var(--ink-2); text-wrap: pretty; }
  .blog-body { padding: 0 0 72px; }
  .blog-toolbar { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px 32px; flex-wrap: wrap; padding: 22px 0 28px; border-bottom: 1px solid var(--line); margin-bottom: 32px; }
  .blog-tabs { display: flex; flex-wrap: wrap; gap: 4px 24px; align-items: baseline; }
  .blog-tabs__item { position: relative; padding: 8px 0 12px; font-size: 14px; font-weight: 500; color: var(--ink-3); text-decoration: none; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: color 0.15s; }
  .blog-tabs__item:hover { color: var(--ink); }
  .blog-tabs__item.on { color: var(--ink); font-weight: 700; border-bottom-color: var(--accent); }
  .blog-tabs__item sup { margin-left: 4px; font-size: 11px; font-weight: 600; color: var(--ink-3); vertical-align: super; }
  .blog-tabs__item.on sup { color: var(--accent-ink); }
  .blog-views { display: inline-flex; align-items: center; gap: 2px; padding: 4px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface-2); }
  .blog-views__btn { padding: 7px 14px; border-radius: 999px; font-size: 12px; font-weight: 600; color: var(--ink-3); text-decoration: none; transition: background 0.15s, color 0.15s; }
  .blog-views__btn:hover { color: var(--ink); }
  .blog-views__btn.on { background: var(--surface); color: var(--ink); box-shadow: var(--shadow-soft); }

  .blog-ph { position: relative; display: grid; place-items: center; overflow: hidden; background: var(--surface-2); }
  .blog-ph--export { background: repeating-linear-gradient(-45deg, oklch(0.97 0.04 15), oklch(0.97 0.04 15) 12px, oklch(0.94 0.06 15) 12px, oklch(0.94 0.06 15) 24px); }
  .blog-ph--news { background: repeating-linear-gradient(-45deg, oklch(0.97 0.03 250), oklch(0.97 0.03 250) 12px, oklch(0.93 0.05 250) 12px, oklch(0.93 0.05 250) 24px); }
  .blog-ph--notice, .blog-ph--neutral { background: repeating-linear-gradient(-45deg, oklch(0.97 0.005 270), oklch(0.97 0.005 270) 12px, oklch(0.93 0.008 270) 12px, oklch(0.93 0.008 270) 24px); }
  .blog-ph__label { position: relative; z-index: 1; padding: 10px 16px; border: 1.5px dashed oklch(0.75 0.02 27 / 0.45); border-radius: 8px; font-size: 12px; font-weight: 600; color: oklch(0.5 0.03 27); background: oklch(1 0 0 / 0.55); backdrop-filter: blur(2px); }
  .blog-ph img { width: 100%; height: 100%; object-fit: cover; display: block; }

  .blog-tag { display: inline-flex; align-items: center; padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 600; line-height: 1.2; }
  .blog-tag--export { background: oklch(0.95 0.04 15); color: oklch(0.45 0.12 20); }
  .blog-tag--news { background: oklch(0.94 0.04 250); color: oklch(0.42 0.1 250); }
  .blog-tag--notice, .blog-tag--neutral { background: oklch(0.94 0.005 270); color: var(--ink-2); }
  .blog-featured__label--notice { color: var(--accent-ink); }
  .blog-card__meta time, .blog-row__foot time, .blog-card__foot time { color: var(--ink-3); font-size: 12px; }
  .blog-card__meta { display: flex; align-items: center; gap: 8px 10px; flex-wrap: wrap; margin-bottom: 10px; }
  .blog-card__foot, .blog-row__foot, .blog-featured__foot { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: auto; padding-top: 14px; font-size: 12px; color: var(--ink-3); }
  .blog-featured__foot .blog-featured__more { margin-left: auto; font-size: 13px; font-weight: 600; color: var(--accent-ink); text-decoration: none; }
  .blog-featured__foot .blog-featured__more:hover { text-decoration: underline; }

  .blog-featured { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 0; margin-bottom: 36px; border: 1px solid var(--line); border-radius: calc(var(--radius) + 4px); overflow: hidden; background: var(--surface); box-shadow: var(--shadow-card); min-height: 300px; }
  .blog-featured__media { min-height: 280px; aspect-ratio: auto; }
  .blog-featured__body { padding: 28px 32px; display: flex; flex-direction: column; justify-content: center; }
  .blog-featured__label { font-size: 12px; font-weight: 700; color: var(--accent-ink); margin-bottom: 12px; }
  .blog-featured__title { margin: 0 0 12px; font-size: clamp(20px, 2.4vw, 28px); line-height: 1.25; font-weight: 800; letter-spacing: -0.03em; }
  .blog-featured__title a { color: inherit; text-decoration: none; }
  .blog-featured__title a:hover { color: var(--accent-ink); }
  .blog-featured__excerpt { margin: 0 0 8px; font-size: 14px; line-height: 1.7; color: var(--ink-2); }

  .blog-feed { display: grid; gap: 24px; }
  .blog-feed--grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .blog-feed--related { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
  .blog-feed--list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
  .blog-card { background: var(--surface); border: 1px solid var(--line); border-radius: calc(var(--radius) + 2px); overflow: hidden; display: flex; flex-direction: column; min-height: 100%; transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s; }
  .blog-card:hover { border-color: oklch(0.88 0.02 27); box-shadow: 0 8px 28px oklch(0.15 0.02 27 / 0.07); transform: translateY(-2px); }
  .blog-card__media { aspect-ratio: 16/10; }
  .blog-card__body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
  .blog-card__title { margin: 0 0 8px; font-size: 16px; line-height: 1.35; font-weight: 700; letter-spacing: -0.02em; }
  .blog-card__title a { color: inherit; text-decoration: none; }
  .blog-card__title a:hover { color: var(--accent-ink); }
  .blog-card__excerpt { margin: 0; font-size: 13px; line-height: 1.65; color: var(--ink-2); flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

  .blog-row { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 24px; align-items: start; padding: 24px 0; border-bottom: 1px solid var(--line); }
  .blog-row__media { aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; }
  .blog-row__title { margin: 0 0 8px; font-size: 18px; line-height: 1.35; font-weight: 700; }
  .blog-row__title a { color: inherit; text-decoration: none; }
  .blog-row__title a:hover { color: var(--accent-ink); }
  .blog-row__excerpt { margin: 0 0 8px; font-size: 14px; line-height: 1.65; color: var(--ink-2); }

  .blog-more { margin-top: 40px; text-align: center; }
  .blog-empty, .blog-empty-state { text-align: center; }
  .blog-empty { border: 1px dashed var(--line); border-radius: var(--radius); padding: 56px 24px; color: var(--ink-3); background: var(--surface-2); }
  .blog-page--empty .blog-empty-state { padding: 96px 24px 120px; }
  .blog-empty-state h1 { margin: 0 0 12px; font-size: clamp(24px, 4vw, 32px); font-weight: 800; letter-spacing: -0.03em; }
  .blog-empty-state p { margin: 0 0 28px; color: var(--ink-3); font-size: 15px; }
  .blog-empty-state .btn--accent { display: inline-flex; align-items: center; justify-content: center; padding: 12px 24px; border-radius: 999px; }

  .blog-page--article .blog-article { max-width: var(--maxw); margin: 0 auto; padding: 32px 24px 72px; box-sizing: border-box; }
  .blog-article-shell { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 40px 48px; align-items: start; }
  .blog-article__main { min-width: 0; }
  .blog-article__top { margin-bottom: 28px; }
  .blog-article__crumb { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; font-size: 13px; color: var(--ink-3); }
  .blog-article__crumb a { color: var(--ink-2); text-decoration: none; }
  .blog-article__crumb a:hover { color: var(--accent-ink); }
  .blog-article__crumb svg { flex-shrink: 0; opacity: 0.5; }
  .blog-article__top h1 { margin: 10px 0 0; font-size: clamp(28px, 4.2vw, 42px); line-height: 1.14; font-weight: 800; letter-spacing: -0.03em; text-wrap: balance; }
  .blog-article__intro { margin: 14px 0 0; font-size: 17px; line-height: 1.7; color: var(--ink-2); text-wrap: pretty; }
  .blog-article__author { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line); }
  .blog-author { display: flex; align-items: center; gap: 12px; }
  .blog-author__avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--ink); color: #fff; font-size: 15px; font-weight: 700; flex-shrink: 0; }
  .blog-author strong { display: block; font-size: 14px; font-weight: 700; color: var(--ink); }
  .blog-author p { margin: 4px 0 0; font-size: 13px; color: var(--ink-3); }
  .blog-share { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
  .blog-share--sidebar { flex-direction: column; align-items: flex-start; gap: 12px; padding: 22px; border: 1px solid var(--line); border-radius: calc(var(--radius) + 2px); background: var(--surface); box-sizing: border-box; }
  .blog-share--sidebar .blog-share__label { font-size: 13px; color: var(--ink-2); font-weight: 700; margin: 0; line-height: 1.35; }
  .blog-share--sidebar .blog-share__actions { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-start; align-content: flex-start; width: 100%; }
  .blog-share--sidebar .blog-share__status { width: 100%; }
  .blog-share__label { font-size: 12px; font-weight: 700; color: var(--ink-3); letter-spacing: 0.02em; }
  .blog-share__actions { display: flex; flex-wrap: wrap; gap: 8px; }
  .blog-share__btn { box-sizing: border-box; width: 40px; height: 40px; display: inline-grid; place-items: center; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); color: var(--ink-2); cursor: pointer; transition: border-color 0.15s, color 0.15s, background 0.15s; text-decoration: none; padding: 0; font: inherit; }
  .blog-share__ic { font-size: 11px; font-weight: 800; letter-spacing: -0.02em; line-height: 1; }
  .blog-share__btn--kakao { background: #fee500; border-color: #fee500; color: #191919; }
  .blog-share__btn--wa { background: #25d366; border-color: #25d366; color: #fff; }
  .blog-share__btn--line { background: #06c755; border-color: #06c755; color: #fff; }
  .blog-share__btn--linkedin { background: #0a66c2; border-color: #0a66c2; color: #fff; }
  .blog-share__btn--linkedin .blog-share__ic { font-size: 10px; }
  .blog-share__btn--x { background: #111; border-color: #111; color: #fff; }
  .blog-share__btn--kakao:hover { background: #f5dc00; color: #191919; border-color: #e6cf00; }
  .blog-share__btn--wa:hover { background: #22c55e; color: #fff; border-color: #22c55e; }
  .blog-share__btn--line:hover { background: #05b34c; color: #fff; border-color: #05b34c; }
  .blog-share__btn--linkedin:hover { background: #0958aa; color: #fff; border-color: #0958aa; }
  .blog-share__btn--x:hover { background: #000; color: #fff; border-color: #000; }
  .blog-share__btn:hover { border-color: var(--accent-soft); color: var(--accent-ink); background: var(--surface); }
  .blog-share__btn.is-copied { border-color: var(--accent); color: var(--accent-ink); background: oklch(0.97 0.03 15); }
  .blog-share__status { margin: 0; font-size: 12px; line-height: 1.45; }
  .blog-share__status--ok { color: var(--accent-ink); }
  .blog-share__status--err { color: oklch(0.48 0.14 25); }
  .blog-article__hero { margin: 0 0 36px; border-radius: calc(var(--radius) + 4px); overflow: hidden; border: 1px solid var(--line); min-height: 280px; }
  .blog-article__hero img { width: 100%; height: auto; display: block; max-height: 460px; object-fit: cover; }

  .blog-rail--right { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 20px; }
  .blog-toc--sidebar { background: var(--surface); border: 1px solid var(--line); border-radius: calc(var(--radius) + 2px); padding: 18px 16px 16px; }
  .blog-toc__title { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.04em; color: var(--ink-3); margin-bottom: 12px; }
  .blog-toc__list { list-style: none; margin: 0; padding: 0; border-left: 1px solid var(--line); }
  .blog-toc__item { margin: 0; padding: 0; }
  .blog-toc__item a { display: block; padding: 7px 0 7px 14px; margin-left: -1px; font-size: 13px; line-height: 1.45; color: var(--ink-3); text-decoration: none; border-left: 2px solid transparent; transition: color 0.15s, border-color 0.15s; }
  .blog-toc__item a:hover { color: var(--ink); }
  .blog-toc__item a.is-active { color: var(--accent-ink); border-left-color: var(--accent); font-weight: 600; }
  .blog-toc__item--h3 a { padding-left: 22px; font-size: 12px; }

  .blog-toc-mobile { display: none; }
  .blog-toc-mobile__fab { position: fixed; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); z-index: 40; padding: 12px 18px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); color: var(--ink); font-size: 13px; font-weight: 700; box-shadow: 0 8px 28px oklch(0.15 0.02 27 / 0.12); cursor: pointer; }
  .blog-toc-mobile__sheet { position: fixed; inset: 0; z-index: 50; }
  .blog-toc-mobile__sheet[hidden] { display: none !important; }
  .blog-toc-mobile__backdrop { position: absolute; inset: 0; border: 0; background: oklch(0.12 0.01 270 / 0.45); cursor: pointer; }
  .blog-toc-mobile__panel { position: absolute; left: 0; right: 0; bottom: 0; max-height: min(72vh, 520px); overflow: auto; background: var(--surface); border-radius: 16px 16px 0 0; padding: 12px 16px 24px; box-shadow: 0 -12px 40px oklch(0.15 0.02 27 / 0.15); animation: blog-toc-slide 0.22s ease; }
  .blog-toc-mobile__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 8px 4px 12px; border-bottom: 1px solid var(--line); margin-bottom: 8px; }
  .blog-toc-mobile__head strong { font-size: 15px; font-weight: 800; }
  .blog-toc-mobile__close { border: 0; background: transparent; color: var(--ink-2); font-size: 13px; font-weight: 600; cursor: pointer; padding: 6px 8px; }
  .blog-toc__list--mobile { border-left: none; }
  .blog-toc__list--mobile .blog-toc__item a { padding: 12px 4px; border-left: none; border-bottom: 1px solid var(--line-2); font-size: 14px; }
  .blog-toc__list--mobile .blog-toc__item:last-child a { border-bottom: none; }
  body.blog-toc-open { overflow: hidden; }
  @keyframes blog-toc-slide { from { transform: translateY(100%); } to { transform: translateY(0); } }

  .blog-prose { font-size: 16px; line-height: 1.82; color: var(--ink); text-wrap: pretty; max-width: none; }
  .blog-prose > *:first-child { margin-top: 0; }
  .blog-prose p { margin: 0 0 1.2em; }
  .blog-prose h2 { margin: 2em 0 0.75em; font-size: clamp(20px, 2.2vw, 24px); line-height: 1.25; font-weight: 800; letter-spacing: -0.025em; scroll-margin-top: 96px; }
  .blog-prose h3 { margin: 1.6em 0 0.6em; font-size: 18px; line-height: 1.3; font-weight: 700; scroll-margin-top: 96px; }
  .blog-prose ul, .blog-prose ol { margin: 0 0 1.2em; padding-left: 1.2em; }
  .blog-prose ul { list-style: none; padding-left: 0; }
  .blog-prose ul li { position: relative; padding-left: 1.1em; margin-bottom: 0.45em; }
  .blog-prose ul li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
  .blog-prose blockquote, .blog-prose .blog-callout { margin: 1.5em 0; padding: 16px 18px 16px 20px; background: oklch(0.97 0.02 15); border-left: 4px solid var(--accent); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
  .blog-prose blockquote p:last-child, .blog-prose .blog-callout p:last-child { margin-bottom: 0; }
  .blog-prose img { display: block; max-width: 100%; height: auto; margin: 1.4em auto; border-radius: var(--radius-sm); }
  .blog-prose a { color: var(--accent-ink); text-decoration: underline; text-underline-offset: 2px; }
  .blog-prose a:hover { color: var(--accent); }
  .blog-prose strong, .blog-prose b { font-weight: 700; }
  .blog-prose table { width: 100%; margin: 1.4em 0; border-collapse: collapse; font-size: 0.95em; }
  .blog-prose th, .blog-prose td { border: 1px solid var(--line); padding: 10px 12px; vertical-align: top; text-align: left; }
  .blog-prose th { background: var(--surface-2); font-weight: 700; }
  .blog-prose hr { border: none; border-top: 1px solid var(--line); margin: 2em 0; }
  .blog-prose ol { list-style: decimal; }
  .blog-prose ol li::before { display: none; }
  .blog-prose ol li { padding-left: 0; }
  .blog-prose [class*="se2_"] { max-width: 100%; }

  .blog-aside-cta { background: var(--ink); color: #fff; border-radius: calc(var(--radius) + 2px); padding: 24px 22px; }
  .blog-aside-cta h2 { margin: 0 0 10px; font-size: 18px; font-weight: 800; letter-spacing: -0.02em; color: #fff; }
  .blog-aside-cta p { margin: 0 0 18px; font-size: 13px; line-height: 1.65; color: oklch(0.82 0.01 40); }
  .blog-aside-cta .btn--accent { width: 100%; justify-content: center; margin-bottom: 14px; }
  .blog-aside-cta__wa { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: #fff; text-decoration: none; }
  .blog-aside-cta__wa .wa__ic { width: 22px; height: 22px; border-radius: 6px; background: oklch(0.62 0.16 152); display: grid; place-items: center; flex-shrink: 0; }

  .blog-recent__title { margin: 0 0 14px; font-size: 14px; font-weight: 800; letter-spacing: -0.01em; }
  .blog-recent__list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
  .blog-recent__list li { padding: 14px 0; border-bottom: 1px solid var(--line-2); }
  .blog-recent__list a { display: block; font-size: 14px; font-weight: 600; line-height: 1.45; color: var(--ink); text-decoration: none; margin-bottom: 8px; }
  .blog-recent__list a:hover { color: var(--accent-ink); }
  .blog-recent__meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 12px; color: var(--ink-3); }

  .blog-article__foot { margin-top: 48px; padding-top: 8px; }
  .blog-back { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--ink-2); text-decoration: none; margin-bottom: 40px; }
  .blog-back:hover { color: var(--accent-ink); }
  .blog-related { margin-top: 8px; padding-top: 36px; border-top: 1px solid var(--line); }
  .blog-related__title { margin: 0 0 20px; font-size: 20px; font-weight: 800; letter-spacing: -0.02em; }

  /* Korean: avoid mid-word breaks (balance/pretty + ch width break 인사|이트) */
  html[lang=ko] .blog-hero__title,
  html[lang=ko] .blog-hero__desc,
  html[lang=ko] .blog-article__top h1,
  html[lang=ko] .blog-article__intro,
  html[lang=ko] .blog-prose,
  html[lang=ko] .blog-featured__title,
  html[lang=ko] .blog-card__title,
  html[lang=ko] .blog-row__title,
  html[lang=ko] .about-page .hero h1,
  html[lang=ko] .about-page .hero p,
  html[lang=ko] .about-page .section__head h2,
  html[lang=ko] .about-page .split h2,
  html[lang=ko] .about-page .split p,
  html[lang=ko] .about-page .ecard h3,
  html[lang=ko] .about-page .ecard p,
  html[lang=ko] .about-page .cta h2,
  html[lang=ko] .about-page .cta p,
  html[lang=ko] .about-page .stat__l {
    word-break: keep-all;
    overflow-wrap: break-word;
    text-wrap: wrap;
  }
  @media (max-width: 1200px) {
    .blog-feed--grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  }
  @media (max-width: 980px) {
    .blog-feed--grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  }

  /* ───── 회원가입 (catalog shell) ───── */
  .catalog-reg-body { background: var(--surface-2); min-height: 100vh; display: flex; flex-direction: column; }
  .header--reg .header__in { justify-content: flex-start; gap: 16px; padding-block: 14px; }
  .header--reg .logo__img { height: 34px; width: auto; }
  .header__regtitle { margin: 0; font-size: 17px; font-weight: 700; color: var(--ink); }
  .catalog-reg { padding: 28px 16px 48px; flex: 1; }
  .catalog-reg__in { max-width: 720px; margin: 0 auto; width: 100%; }
  .catalog-reg__card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
  .catalog-reg__card--form { padding: 0; overflow: hidden; }
  .catalog-reg__lead { margin: 0 0 20px; font-size: 14px; color: var(--ink-2); line-height: 1.6; }
  .catalog-reg__sec { margin-bottom: 22px; }
  .catalog-reg__sec h2 { margin: 0 0 10px; font-size: 15px; font-weight: 700; color: var(--ink); }
  .catalog-reg__ta { width: 100%; min-height: 160px; padding: 12px; border: 1px solid var(--line); border-radius: var(--radius-sm); font-size: 13px; line-height: 1.65; color: var(--ink-2); background: var(--surface-2); resize: vertical; box-sizing: border-box; }
  .catalog-reg__tablewrap { overflow-x: auto; margin-bottom: 10px; }
  .catalog-reg__table { width: 100%; border-collapse: collapse; font-size: 13px; }
  .catalog-reg__table th, .catalog-reg__table td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; vertical-align: top; }
  .catalog-reg__table th { background: var(--surface-2); font-weight: 600; }
  .catalog-reg__agree, .catalog-reg__all { position: static; display: flex; align-items: flex-start; gap: 10px; margin-top: 12px; padding: 12px 14px; font-size: 14px; color: var(--ink-2); background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius-sm); }
  .catalog-reg__all { margin-top: 0; margin-bottom: 8px; font-weight: 600; color: var(--ink); }
  .catalog-reg__actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 24px; flex-wrap: wrap; }
  .catalog-reg__actions .btn { min-width: 120px; justify-content: center; }
  .footer--reg { margin-top: auto; border-top: 1px solid var(--line); background: var(--surface); }
  .footer--reg .footer__bot { display: flex; flex-wrap: wrap; gap: 8px 16px; align-items: center; justify-content: space-between; padding: 16px 20px; font-size: 12px; color: var(--ink-3); }

  .catalog-reg .selec_chk { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
  .catalog-reg .selec_chk + label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; line-height: 1.5; margin: 0; position: relative; padding-left: 28px; min-height: 20px; }
  .catalog-reg .selec_chk + label span { position: absolute; left: 0; top: 2px; width: 18px; height: 18px; border: 1px solid var(--line); border-radius: 4px; background: var(--surface); box-sizing: border-box; }
  .catalog-reg .selec_chk:checked + label span { background: var(--accent); border-color: var(--accent); }
  .catalog-reg .selec_chk:checked + label span::after { content: ""; position: absolute; left: 5px; top: 2px; width: 5px; height: 9px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
  .catalog-reg .selec_chk:focus-visible + label span { outline: 2px solid var(--accent); outline-offset: 2px; }

  .catalog-reg__form { margin: 0; }
  .catalog-reg #register_form { margin: 0; background: transparent; }
  .catalog-reg .register_form_inner { background: transparent; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; margin: 0; }
  .catalog-reg .register_form_inner:last-of-type { border-bottom: 0; }
  .catalog-reg .register_form_inner h2 { margin: 0; padding: 18px 24px; font-size: 15px; font-weight: 700; color: var(--ink); border-bottom: 1px solid var(--line); background: var(--surface-2); }
  .catalog-reg .register_form_inner ul { list-style: none; margin: 0; padding: 20px 24px; }
  .catalog-reg .register_form_inner li { margin: 0 0 16px; }
  .catalog-reg .register_form_inner li:last-child { margin-bottom: 0; }
  .catalog-reg .register_form_inner label { display: block; margin: 0 0 8px; font-size: 13px; font-weight: 600; color: var(--ink); line-height: 1.4; }
  .catalog-reg .frm_input, .catalog-reg input[type=text], .catalog-reg input[type=password], .catalog-reg input[type=email], .catalog-reg select, .catalog-reg textarea {
    width: 100%; max-width: 100%; box-sizing: border-box; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 10px 12px; font-size: 14px; background: var(--surface); color: var(--ink);
  }
  .catalog-reg .frm_input:focus, .catalog-reg input:focus, .catalog-reg select:focus, .catalog-reg textarea:focus { outline: none; border-color: var(--accent); }
  .catalog-reg .half_input { width: 100%; }
  .catalog-reg .tooltip_icon { display: none; }
  .catalog-reg .tooltip { display: block; margin: 4px 0 8px; font-size: 12px; font-weight: 400; color: var(--ink-3); line-height: 1.5; }
  .catalog-reg #msg_mb_id, .catalog-reg #msg_mb_nick, .catalog-reg #msg_mb_email { display: block; margin-top: 6px; font-size: 12px; }
  .catalog-reg .btn_frmline, .catalog-reg .win_sa_cert { display: inline-flex; align-items: center; margin: 0 8px 8px 0; padding: 8px 12px; border: 1.5px solid var(--control-border); border-radius: var(--radius-sm); background: var(--surface); font-size: 13px; font-weight: 600; color: var(--ink-2); box-shadow: var(--shadow-soft); cursor: pointer; }
  .catalog-reg .btn_frmline:hover { border-color: var(--accent); color: var(--accent); }
  .catalog-reg #msg_certify { margin-top: 10px; padding: 10px 12px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface-2); font-size: 13px; }
  .catalog-reg .consent-line { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
  .catalog-reg .js-open-consent { font-size: 12px; color: var(--accent); background: none; border: none; cursor: pointer; text-decoration: underline; padding: 0; }
  .catalog-reg .is_captcha_use { font-size: 13px; color: var(--ink-2); }
  .catalog-reg #captcha { display: block; position: relative; margin-top: 12px; padding: 0; border: 0; }
  .catalog-reg #captcha legend { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
  .catalog-reg #captcha #captcha_img { display: inline-block; height: 40px; min-width: 120px; border: 1px solid var(--line); border-radius: var(--radius-sm); vertical-align: top; background: var(--surface-2); }
  .catalog-reg #captcha #captcha_key { margin: 0 0 0 8px; padding: 0 12px; width: 96px; height: 40px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); font-size: 16px; font-weight: 700; font-family: var(--mono); text-align: center; vertical-align: top; }
  .catalog-reg #captcha #captcha_mp3,
  .catalog-reg #captcha #captcha_reload { margin: 0 0 0 4px; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: var(--radius-sm); background-color: var(--surface-2); background-image: url('../../../img/captcha2.png'); background-repeat: no-repeat; vertical-align: top; cursor: pointer; text-indent: -9999px; overflow: hidden; }
  .catalog-reg #captcha #captcha_reload { background-position: 0 -40px; }
  .catalog-reg #captcha #captcha_info { display: block; margin-top: 8px; font-size: 12px; color: var(--ink-3); line-height: 1.5; }
  .catalog-reg .btn_confirm { float: none; text-align: right; padding: 0 24px 24px; }
  .catalog-reg .btn_confirm .btn_submit, .catalog-reg .btn_confirm .btn_close { float: none; width: auto; height: auto !important; font-size: 14px; font-weight: 600; }
  .catalog-reg__card--login { max-width: 420px; margin: 0 auto; }
  .catalog-reg__loginhead { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 20px; }
  .catalog-reg__logintitle { margin: 0; font-size: 20px; font-weight: 700; color: var(--ink); }
  .catalog-reg__join { font-size: 13px; font-weight: 600; color: var(--accent); text-decoration: none; }
  .catalog-reg__join:hover { text-decoration: underline; }
  .catalog-reg__loginform { display: flex; flex-direction: column; gap: 14px; }
  .catalog-reg__field { display: flex; flex-direction: column; gap: 6px; }
  .catalog-reg__label { font-size: 13px; font-weight: 600; color: var(--ink); }
  .catalog-reg__loginmeta { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: 2px; }
  .catalog-reg__check { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-2); cursor: pointer; margin: 0; }
  .catalog-reg__check .selec_chk { position: absolute; opacity: 0; width: 0; height: 0; }
  .catalog-reg__checkui { width: 18px; height: 18px; border: 1px solid var(--line); border-radius: 4px; background: var(--surface); position: relative; flex-shrink: 0; }
  .catalog-reg__check .selec_chk:checked + .catalog-reg__checkui { background: var(--accent); border-color: var(--accent); }
  .catalog-reg__check .selec_chk:checked + .catalog-reg__checkui::after { content: ""; position: absolute; left: 5px; top: 2px; width: 5px; height: 9px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
  .catalog-reg__lost { font-size: 13px; color: var(--ink-3); text-decoration: none; }
  .catalog-reg__lost:hover { color: var(--accent); }
  .catalog-reg__submit { width: 100%; margin-top: 6px; justify-content: center; }
  @media (min-width: 640px) {
    .catalog-reg .register_form_inner ul { display: grid; gap: 16px; }
    .catalog-reg .register_form_inner > ul > li.half_input.left_input { display: inline-block; width: calc(50% - 8px); vertical-align: top; }
  }

  /* ───── SEO 페이지 ───── */
  .card__link { display: flex; flex-direction: column; flex: 1; color: inherit; text-decoration: none; min-height: 0; }
  .card__link--media { display: block; height: 100%; flex: 1; min-height: 0; }
  .card__link--media .ph { height: 100%; }
  .card__link:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: var(--radius); }
  .util-link,
  .footer-link { background: none; border: none; padding: 0; font: inherit; color: inherit; cursor: pointer; text-decoration: none; }
  .util-link { white-space: nowrap; }
  .util-link:hover { color: #fff; }
  .footer__links .footer-link { display: block; width: 100%; text-align: left; }
  .footer__links .footer-link:hover { color: #fff; }
  .search__clear { background: none; border: none; cursor: pointer; }
  [x-cloak] { display: none !important; }
  .breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin: 0 0 16px; font-size: 13px; color: var(--ink-3); }
  .breadcrumb a { color: var(--ink-2); text-decoration: none; }
  .breadcrumb a:hover { color: var(--accent); }
  .catalog-page__title { margin: 0 0 8px; font-size: clamp(24px, 4vw, 32px); line-height: 1.2; }
  .catalog-page__sub { margin: 0 0 24px; color: var(--ink-3); font-size: 14px; }
  /* 본문 영역만 max-width (body/헤더·푸터는 100%) */
  main.catalog-page,
  main.shell--page,
  main.catalog-page--product {
    display: block;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 28px 24px 48px;
    box-sizing: border-box;
  }
  main.catalog-page--narrow {
    max-width: 760px;
    padding-left: 16px;
    padding-right: 16px;
  }
  main.wrap.catalog-page--product {
    padding-top: 0;
    padding-bottom: 0;
    max-width: var(--maxw);
  }
  /* SEO용 링크 목록 — 화면에는 숨김 */
  .catalog-seo-nav {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .catalog-loadmore { text-align: center; padding: 28px 16px 40px; color: var(--ink-3); font-size: 13px; min-height: 24px; }
  .ph--photo { display:flex; align-items:center; justify-content:center; overflow:hidden; background:var(--surface-2); width:100%; height:100%; }
  .product-media { aspect-ratio: 1 / 1; max-width: 480px; border-radius: var(--radius); overflow: hidden; margin: 0 0 20px; border: 1px solid var(--line); background: var(--surface-2); }
  .drawer__media .ph, .product-media .ph--photo { width:100%; height:100%; }
  .ph--photo img, .card__img { width:100%; height:100%; object-fit:cover; display:block; }

  /* 상품 상세 (SSR) — 드로어와 동일 비율, 사이트 shell 너비 */
  .product-detail {
    display: grid;
    grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
    gap: 40px;
    align-items: start;
    margin-top: 8px;
  }
  .product-detail__media {
    aspect-ratio: 1 / 1;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--surface-2);
  }
  .product-detail__media .product-media,
  .product-detail__media > .ph {
    max-width: none;
    margin: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    border: none;
    border-radius: 0;
  }
  .product-detail__sku { color: var(--ink-3); margin: 0 0 8px; font-size: 11.5px; }
  .product-detail__trade { font-size: 12.5px; color: var(--ink-3); }
  .product-detail__export { font-size: 13.5px; color: var(--ink-2); line-height: 1.7; margin: 0; }
  .product-detail__actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
  @media (max-width: 860px) {
    .product-detail { grid-template-columns: 1fr; gap: 24px; }
    .product-detail__media { max-width: 480px; }
    .header--chrome .header__nav { display: none; }
    .header--catalog .header__nav { display: none; }
    /* 모바일: 로그인/로그아웃은 utilbar·drawer — 견적 버튼 옆 X */
    .header__actions .btn--ghost.header__login { display: none; }
    .header--chrome .header__in {
      flex-wrap: nowrap;
      height: 64px;
      padding: 0 16px;
      gap: 12px;
    }
    .header--chrome .logo { min-width: 0; flex: 1 1 auto; }
    .header--chrome .logo__img { height: 32px; max-width: 100%; }
    .header--chrome .header__actions {
      flex-shrink: 0;
      gap: 6px;
    }
    .header--chrome .header__actions .btn--accent {
      padding: 0 10px;
      font-size: 12.5px;
      gap: 5px;
    }
    .header--chrome .header__actions .btn--accent svg {
      width: 14px;
      height: 14px;
    }
    .header__menu { display: inline-grid; }
  }

  /* ───── Chrome nav drawer (mobile) ───── */
  .navdrawer {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: min(300px, 88vw);
    max-width: 100%;
    background: var(--surface);
    z-index: 62;
    box-shadow: var(--shadow-pop);
    transform: translateX(-100%);
    transition: transform .28s cubic-bezier(.2,.8,.2,1);
    display: flex;
    flex-direction: column;
  }
  .navdrawer.show { transform: translateX(0); }
  .navdrawer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 16px 12px;
    border-bottom: 1px solid var(--line);
  }
  .navdrawer__brand {
    font-weight: 800;
    font-size: 15px;
    letter-spacing: -0.02em;
    color: var(--accent-ink);
  }
  .navdrawer__links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 10px;
    flex: 1;
  }
  .navdrawer__link {
    display: block;
    padding: 14px 14px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    color: var(--ink-2);
    text-decoration: none;
  }
  .navdrawer__link:hover { background: var(--surface-2); color: var(--ink); }
  .navdrawer__link.on { background: var(--accent-soft); color: var(--accent-ink); }
  .navdrawer__foot {
    border-top: 1px solid var(--line);
    padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .navdrawer__sub {
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-2);
    text-decoration: none;
  }
  .navdrawer__sub:hover { background: var(--surface-2); color: var(--ink); }

  /* ───── Site header nav (catalog + chrome 동일 간격) ───── */
  .header__nav { display: flex; gap: 2px; margin-left: 6px; flex-shrink: 0; }
  .header__nav a { font-size: 14.5px; font-weight: 600; color: var(--ink-2); padding: 9px 14px; border-radius: 10px; transition: background .15s, color .15s; white-space: nowrap; }
  .header__nav a:hover { background: var(--surface-2); color: var(--ink); }
  .header__nav a.on { color: var(--accent-ink); }

  /* Catalog home — PC: logo · nav · narrow search · actions */
  @media (min-width: 861px) {
    .header--catalog .header__in { flex-wrap: nowrap; }
    .header--catalog .header__nav { flex: 1; min-width: 0; }
    .header--catalog .search { flex: 0 0 300px; width: 300px; max-width: 300px; }
    .header--catalog .header__actions { margin-left: 12px; flex-shrink: 0; }
    .header--chrome .header__nav { flex: 1; min-width: 0; }
  }

  @media (max-width: 860px) {
    .header--chrome .header__nav,
    .header--catalog .header__nav { display: none; }
  }

  /* ───── Product detail page ───── */
  .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
  .ph { position: relative; border-radius: var(--radius); overflow: hidden; display: grid; place-items: center; }
  .gallery__main .ph__cap { font-family: var(--mono); font-size: 12px; background: oklch(1 0 0 / 0.72); padding: 6px 12px; border-radius: 8px; position: relative; z-index: 1; border: none; letter-spacing: normal; text-transform: none; }
  .crumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-3); padding: 22px 0 6px; flex-wrap: wrap; }
  .crumb a:hover { color: var(--ink-2); }
  .crumb b { color: var(--ink-2); font-weight: 600; }
  .crumb svg { color: var(--line); flex-shrink: 0; }
  .pmain { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 18px 0 56px; align-items: start; }
  .gallery { position: sticky; top: 96px; }
  .gallery__main { aspect-ratio: 1 / 1; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; position: relative; }
  .gallery__main .ph__cap { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 1; }
  .gallery__badges { position: absolute; top: 14px; left: 14px; z-index: 2; display: flex; gap: 6px; flex-wrap: wrap; }
  .badge .dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
  .badge--cat { background: oklch(1 0 0 / 0.82); color: var(--ink-2); border: 1px solid var(--line); }
  .buy__brand { font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--accent-ink); margin: 0; }
  .buy__name { font-size: clamp(26px, 3vw, 34px); font-weight: 800; line-height: 1.15; letter-spacing: -0.03em; margin: 8px 0 14px; text-wrap: balance; }
  .buy__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 22px; }
  .buy__price { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
  .buy__price b { font-size: 36px; font-weight: 800; letter-spacing: -0.02em; }
  .buy__price .unit { font-size: 14px; color: var(--ink-3); font-weight: 600; }
  .buy__price--locked {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .buy__price--locked .price-lock {
    font-size: clamp(15px, 4vw, 18px);
    font-weight: 700;
    color: var(--ink-2);
    line-height: 1.35;
  }
  .buy__pricenote--lock { margin: 0; max-width: 36em; }
  .buy__price-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
  }
  .buy__price-cta .btn {
    height: 40px;
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }
  .buy__pricenote { font-size: 13px; color: var(--ink-3); margin: 6px 0 0; }
  .hr { height: 1px; background: var(--line); margin: 22px 0; }
  .specline { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 22px; margin-bottom: 22px; }
  .specline div { display: flex; justify-content: space-between; gap: 12px; font-size: 13.5px; padding: 8px 0; border-bottom: 1px dashed var(--line); }
  .specline dt { color: var(--ink-3); margin: 0; }
  .specline dd { color: var(--ink); font-weight: 600; margin: 0; text-align: right; }
  .ordbox { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-card); }
  .ordrow { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
  .ordrow + .ordrow { margin-top: 16px; }
  .ordlabel { font-size: 13px; color: var(--ink-2); font-weight: 600; }
  .ordlabel span { display: block; font-size: 11.5px; color: var(--ink-3); font-weight: 500; margin-top: 2px; }
  .esttotal { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line-2); }
  .esttotal .lab { font-size: 13px; color: var(--ink-2); font-weight: 600; }
  .esttotal .val { font-family: var(--mono); font-size: 22px; font-weight: 600; letter-spacing: -0.01em; }
  .esttotal .note { font-size: 11px; color: var(--ink-3); font-weight: 500; }
  .buy__cta { display: flex; align-items: stretch; gap: 10px; margin-top: 20px; }
  .buy__cta .btn--accent { flex: 1; justify-content: center; }
  .buy__cta .icon-btn { flex-shrink: 0; align-self: stretch; }
  .product-page .icon-btn:hover { box-shadow: var(--shadow-card); }
  .icon-btn.wa { color: oklch(0.5 0.13 152); }
  .icon-btn.wa:hover { background: oklch(0.95 0.05 152); border-color: oklch(0.62 0.16 152 / 0.4); }
  .trust { list-style: none; padding: 0; margin: 22px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; }
  .trust li { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; line-height: 1.45; color: var(--ink-2); }
  .trust svg { flex-shrink: 0; margin-top: 1px; color: var(--accent-ink); }
  .sections { display: grid; grid-template-columns: 1.25fr 1fr; gap: 40px; padding: 8px 0 56px; align-items: start; }
  .sections .spectable { border-radius: var(--radius); overflow: hidden; background: var(--surface); border: 1px solid var(--line); }
  .sections .specrow { grid-template-columns: 150px 1fr; font-size: 14px; }
  .sections .specrow dt { padding: 14px 18px; }
  .sections .specrow dd { padding: 14px 18px; font-weight: 400; }
  .seclabel { font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 16px; }
  .infocard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
  .infocard h4 { display: flex; align-items: center; gap: 9px; font-size: 14.5px; font-weight: 700; margin: 0 0 9px; }
  .infocard h4::before { content: ""; width: 7px; height: 7px; border-radius: 2px; background: var(--accent); }
  .infocard p { font-size: 13.5px; line-height: 1.7; color: var(--ink-2); margin: 0 0 18px; }
  .termchips { display: flex; flex-wrap: wrap; gap: 7px; }
  .termchip { font-family: var(--mono); font-size: 12px; font-weight: 600; padding: 6px 11px; border-radius: 8px; background: var(--surface); border: 1.5px solid var(--control-border); color: var(--ink-2); box-shadow: var(--shadow-soft); }

  /* ───── About page (design-import/회사소개.html) ───── */
  body.site-about { --maxw: 1320px; }
  .about-page .hero { padding: 76px 0 56px; border-bottom: 1px solid var(--line); }
  .about-page .eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-ink); margin-bottom: 22px; }
  .about-page .eyebrow::before { content: ""; width: 22px; height: 1.5px; background: var(--accent); }
  .about-page .hero h1 { font-size: clamp(32px, 4.4vw, 52px); line-height: 1.15; font-weight: 800; letter-spacing: -0.035em; margin: 0; max-width: min(100%, 22em); text-wrap: pretty; }
  .about-page .hero p { font-size: clamp(15px, 1.5vw, 18px); line-height: 1.75; color: var(--ink-2); max-width: 62ch; margin: 26px 0 0; text-wrap: pretty; word-break: keep-all; overflow-wrap: break-word; }
  .about-page .stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin: 56px 0; }
  .about-page .stat { background: var(--surface); padding: 28px 26px; }
  .about-page .stat__n { font-family: var(--mono); font-size: 34px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); line-height: 1; }
  .about-page .stat__l { font-size: 13.5px; color: var(--ink-2); margin-top: 12px; line-height: 1.5; }
  .about-page .section { padding: 60px 0; border-top: 1px solid var(--line); }
  .about-page .section__head { max-width: 60ch; margin-bottom: 40px; }
  .about-page .section__kicker { font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); }
  .about-page .section__head h2 { font-size: clamp(24px, 2.6vw, 32px); font-weight: 800; letter-spacing: -0.03em; margin: 12px 0 0; }
  .about-page .cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .about-page .ecard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow-card); }
  .about-page .ecard__no { font-family: var(--mono); font-size: 12px; font-weight: 600; color: var(--accent-ink); }
  .about-page .ecard h3 { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; margin: 16px 0 10px; }
  .about-page .ecard p { font-size: 14px; line-height: 1.7; color: var(--ink-2); margin: 0; text-wrap: pretty; }
  .about-page .ph { position: relative; border-radius: var(--radius); overflow: hidden; background: oklch(0.96 0.022 27); display: grid; place-items: center; min-height: 320px; }
  .about-page .ph__cap { font-family: var(--mono); font-size: 12px; color: oklch(0.50 0.05 27); background: oklch(1 0 0 / 0.7); padding: 6px 12px; border-radius: 8px; position: relative; z-index: 1; }
  .about-page .split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
  .about-page .split p { font-size: 15px; line-height: 1.8; color: var(--ink-2); margin: 0 0 16px; text-wrap: pretty; }
  .about-page .split p:last-child { margin-bottom: 0; }
  .about-page .split h2 { font-size: clamp(24px, 2.6vw, 32px); font-weight: 800; letter-spacing: -0.03em; margin: 12px 0 22px; }
  .about-page .offices { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .about-page .office { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; }
  .about-page .office__city { font-size: 17px; font-weight: 700; letter-spacing: -0.02em; }
  .about-page .office__addr { font-size: 14px; line-height: 1.7; color: var(--ink-2); margin: 12px 0 0; }
  .about-page .office__phone { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 13.5px; color: var(--ink); margin-top: 16px; }
  .about-page .office__phone .wa__ic { width: 22px; height: 22px; border-radius: 6px; background: oklch(0.62 0.16 152); color: #fff; display: grid; place-items: center; }
  .about-page .info-table { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; max-width: 640px; }
  .about-page .info-row { display: grid; grid-template-columns: 200px 1fr; border-bottom: 1px solid var(--line-2); }
  .about-page .info-row:last-child { border-bottom: none; }
  .about-page .info-row dt { padding: 16px 22px; background: var(--surface-2); font-size: 13.5px; font-weight: 600; color: var(--ink-2); margin: 0; }
  .about-page .info-row dd { padding: 16px 22px; font-size: 14px; color: var(--ink); margin: 0; }
  .about-page .cta { margin: 20px 0 0; background: var(--ink); border-radius: var(--radius); padding: 56px 48px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
  .about-page .cta h2 { color: #fff; font-size: clamp(22px, 2.4vw, 30px); font-weight: 800; letter-spacing: -0.03em; margin: 0; max-width: 22ch; text-wrap: balance; }
  .about-page .cta p { color: oklch(0.78 0.01 40); font-size: 14.5px; margin: 14px 0 0; max-width: 40ch; line-height: 1.6; }
  .about-page .cta .btn--accent { padding: 0 14px; }

  @media (max-width: 920px) {
    .pmain { grid-template-columns: 1fr; gap: 28px; }
    .gallery { position: static; }
    .sections { grid-template-columns: 1fr; gap: 28px; }
    .specline { grid-template-columns: 1fr; }
    .trust { grid-template-columns: 1fr; }
  }
  @media (max-width: 860px) {
    .about-page .stats { grid-template-columns: repeat(2, 1fr); }
    .about-page .cards { grid-template-columns: 1fr; }
    .about-page .split { grid-template-columns: 1fr; gap: 28px; }
    .about-page .offices { grid-template-columns: 1fr; }
    .about-page .info-row { grid-template-columns: 120px 1fr; }
    .blog-feed--grid, .blog-feed--related { grid-template-columns: 1fr; }
    .blog-featured { grid-template-columns: 1fr; }
    .blog-featured__body { padding: 22px 20px; }
    .blog-row { grid-template-columns: 1fr; }
    .blog-row__media { aspect-ratio: 16/10; }
    .blog-hero__title { max-width: none; }
    .blog-toolbar { flex-direction: column; align-items: stretch; }
    .blog-views { align-self: flex-start; }
    .blog-page--article .blog-article { padding-left: 16px; padding-right: 16px; }
    .blog-article-shell { grid-template-columns: 1fr; gap: 28px; }
    .blog-rail--right { position: static; order: 2; }
    .blog-article__main { order: 1; }
    .blog-rail .blog-toc--sidebar { display: none; }
    .blog-toc-mobile { display: block; }
    .blog-toc--sidebar { padding: 16px 14px; }
    .blog-toc__list { border-left: none; }
    .blog-toc__item a { padding-left: 0; border-left: none; border-bottom: 1px solid var(--line-2); }
    .blog-toc__item:last-child a { border-bottom: none; }
    .blog-toc__item a.is-active { border-left: none; color: var(--accent-ink); font-weight: 600; }
  }
  @media (max-width: 640px) {
    .footer__grid { grid-template-columns: 1fr; gap: 28px; }
    .footer__contact { min-width: 0; }
    .footer__contact .wa { max-width: 100%; overflow-wrap: anywhere; }
    .footer__office-line { display: block; }
    .about-page .office__addr { overflow-wrap: anywhere; word-break: break-word; }
    .about-page .office__phone { flex-wrap: wrap; max-width: 100%; overflow-wrap: anywhere; }
  }

  .lang-prompt-wrap { z-index: 80; }
  .lang-prompt {
    width: min(420px, 100%);
    max-width: 100%;
    padding: 24px 28px 22px;
    box-sizing: border-box;
  }
  .lang-prompt__head { padding: 0 28px 0 0; }
  .lang-prompt__actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 20px 0 12px;
  }
  .lang-prompt__actions .btn {
    min-height: 46px;
    font-size: 14px;
    font-weight: 700;
  }
  .lang-prompt__continue {
    margin-top: 4px;
    color: var(--ink-3);
    font-weight: 600;
  }

  /* ── Error pages (404 / 500) ── */
  .site-error {
    min-height: calc(100vh - 1px);
    display: flex;
    flex-direction: column;
  }
  .site-error .err-page {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(40px, 8vh, 72px) 24px;
    box-sizing: border-box;
  }
  .err-page__in {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    padding: clamp(40px, 6vw, 64px);
    text-align: center;
    box-sizing: border-box;
  }
  .err-page__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 28px;
    padding: 7px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ink-2);
  }
  .err-page__badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
  }
  .err-page__code {
    margin: 0 0 18px;
    font-size: clamp(96px, 22vw, 156px);
    font-weight: 800;
    line-height: 0.92;
    letter-spacing: -0.045em;
    color: var(--accent);
    background: repeating-linear-gradient(
      -45deg,
      var(--accent) 0 14px,
      color-mix(in oklch, var(--accent) 82%, white) 14px 28px
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .err-page__title {
    margin: 0 0 12px;
    font-size: clamp(22px, 4vw, 28px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
  }
  .err-page__sub {
    margin: 0 auto 28px;
    max-width: 36em;
    font-size: 15px;
    line-height: 1.65;
    color: var(--ink-2);
  }
  .err-page__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .err-page__hr {
    height: 1px;
    border: 0;
    background: var(--line);
    margin: 32px 0 24px;
  }
  .err-page__links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 22px;
    font-size: 14px;
    font-weight: 600;
  }
  .err-page__links a,
  .err-page__link-btn {
    color: var(--ink-2);
    text-decoration: none;
    background: none;
    border: 0;
    padding: 0;
    font: inherit;
    cursor: pointer;
  }
  .err-page__links a:hover,
  .err-page__link-btn:hover {
    color: var(--accent-ink);
  }
  .site-error--standalone {
    min-height: 100vh;
    margin: 0;
    background: var(--bg, #fff);
    color: var(--ink, #111);
  }
  .err-standalone__header {
    padding: 18px 24px;
  }
  .err-standalone__header .logo__img {
    height: 34px;
    width: auto;
  }
  .err-standalone__foot {
    padding: 20px 24px 28px;
    text-align: center;
    font-size: 13px;
    color: var(--ink-3, #666);
  }
  .err-standalone__foot a {
    color: var(--ink-2, #444);
    text-decoration: none;
    font-weight: 600;
  }
  .err-standalone__foot a:hover {
    color: var(--accent-ink, #c41e3a);
  }

  /* ── 500 minimal (server error — no site chrome) ── */
  .err500-minimal {
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
    margin: 0;
    background: #fff;
    color: var(--ink);
    font-family: var(--font-sans);
  }
  .err500-minimal__header {
    padding: 22px clamp(20px, 4vw, 40px);
  }
  .err500-minimal__logo {
    display: inline-block;
    text-decoration: none;
  }
  .err500-minimal__logo img {
    display: block;
    height: 32px;
    width: auto;
  }
  .err500-minimal__main {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(24px, 6vh, 48px) 24px;
    box-sizing: border-box;
  }
  .err500-minimal__in {
    width: 100%;
    max-width: 520px;
    text-align: center;
  }
  .err500-minimal .err-page__sub {
    max-width: 32em;
  }
  .err500-minimal__foot {
    padding: 16px 24px 32px;
    text-align: center;
    font-size: 13px;
    color: var(--ink-3);
    line-height: 1.5;
  }
  .err500-minimal__foot a {
    color: var(--ink-2);
    text-decoration: none;
    font-weight: 600;
  }
  .err500-minimal__foot a:hover {
    color: var(--accent-ink);
  }
