@font-face {
    font-family: 'NanumSquareNeo';
    src: url(/soloscriptor/baljaguk/NanumSquareNeo-1.woff2) format('woff2');
    font-weight: 400; font-display: swap;
  }
  @font-face {
    font-family: 'NanumSquareNeo';
    src: url(/soloscriptor/baljaguk/NanumSquareNeo-2.woff2) format('woff2');
    font-weight: 700; font-display: swap;
  }
  @font-face {
    font-family: 'NanumSquareNeo';
    src: url(/soloscriptor/baljaguk/NanumSquareNeo-3.woff2) format('woff2');
    font-weight: 800 900; font-display: swap;
  }

  :root {
    --bg: #f3f4f8;
    --bg2: #ffffff;
    --ink: #16171c;
    --ink2: #5a5d70;
    --ink3: #9497a8;
    --line: #e4e5ec;
    --line2: #d3d5e0;
    --accent: #b8792f;
    --accent-ink: #ffffff;
    --accent-tint: #fbf1e3;
    --shadow: 0 1px 2px rgba(28, 30, 50, 0.05), 0 24px 48px -26px rgba(28, 30, 50, 0.28);
    --shadow-sm: 0 1px 2px rgba(28, 30, 50, 0.04), 0 10px 24px -14px rgba(28, 30, 50, 0.22);
    --shadow-lg: 0 2px 4px rgba(28, 30, 50, 0.05), 0 38px 66px -28px rgba(28, 30, 50, 0.32);
  }
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; background: var(--bg); }
  /* 'html body' 로 특이도를 올린다 — 홈(/)은 index.astro 가 DashboardLayout 도 import 해서
     대시보드 global.css 가 이 파일 뒤에 실린다. 그냥 'body' 면 그쪽 규칙이 이겨서
     폰트가 system-ui 로 떨어지고 티커용 아래 여백 33px 까지 붙는다. */
  html body {
    margin: 0; background: var(--bg); color: var(--ink);
    font-family: 'NanumSquareNeo', -apple-system, "Segoe UI", "Malgun Gothic", "Apple SD Gothic Neo", sans-serif;
    -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; line-height: 1.55;
    word-break: keep-all; overflow-wrap: break-word;
    font-size: 16px; padding-bottom: 0;
  }
  p { text-wrap: pretty; }

  /* 스크롤바 — 홈은 대시보드 global.css 가 같이 실려 얇은 맞춤형이 나오는데,
     하위 페이지는 그게 없어 화살표 달린 기본 스크롤바가 나왔다. 여기서 통일한다. */
  /* html 을 붙여 특이도를 올린다 — 홈에는 대시보드 global.css 의 같은 규칙이
     이 파일보다 뒤에 실려서, 맨 선택자면 그쪽이 이겨 홈만 다르게 보였다. */
  html::-webkit-scrollbar { width: 8px; height: 8px; }
  html::-webkit-scrollbar-track { background: var(--bg); }
  html::-webkit-scrollbar-thumb { background: var(--line2); border-radius: 4px; }
  html::-webkit-scrollbar-thumb:hover { background: var(--ink3); }
  html { scrollbar-width: thin; scrollbar-color: var(--line2) var(--bg); }
  .sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
  }
  ::selection { background: var(--accent); color: #fff; }
  a { color: inherit; }
  img { max-width: 100%; display: block; }
  @media (prefers-reduced-motion: reduce) {
    * { transition: none !important; animation: none !important; }
    [data-reveal] { opacity: 1 !important; transform: none !important; }
  }

  .bj-shell { max-width: 1240px; margin: 0 auto; padding-left: clamp(22px, 4vw, 56px); padding-right: clamp(22px, 4vw, 56px); }
  section { padding-top: 104px; padding-bottom: 112px; }
  section[id] { scroll-margin-top: 92px; }
  .eyebrow-row { font-size: 13px; color: var(--ink2); margin: 0 0 20px; }
  .eyebrow-row::before {
    content: ""; display: inline-block; width: 16px; height: 2px; border-radius: 2px;
    background: var(--accent); vertical-align: 0.26em; margin-right: 11px;
  }
  .eyebrow-num { font-weight: 800; color: var(--ink); }
  h2 {
    font-size: clamp(29px, 3.7vw, 43px); font-weight: 800; letter-spacing: -0.028em; line-height: 1.26;
    margin: 0 0 16px; color: var(--ink); text-wrap: balance;
  }
  .lead { font-size: 16px; line-height: 1.78; color: var(--ink2); max-width: 34em; margin: 0; }

  [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 0.62s cubic-bezier(.22,.68,.2,1), transform 0.62s cubic-bezier(.22,.68,.2,1); }
  [data-reveal].in { opacity: 1; transform: none; }
  [data-reveal-d1].in { transition-delay: 0.1s; }
  [data-reveal-d2].in { transition-delay: 0.2s; }

  .pill {
    font-family: inherit; cursor: pointer; border: none; border-radius: 999px;
    font-weight: 700; font-size: 14.5px; padding: 15px 28px; display: inline-flex;
    align-items: center; gap: 8px; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s, background 0.15s;
  }
  .pill-accent { background: var(--accent); color: var(--accent-ink); box-shadow: var(--shadow-sm); }
  .pill-accent:hover { background: #a86c26; transform: translateY(-2px); box-shadow: var(--shadow); }
  .pill-white { background: var(--bg2); color: var(--ink); box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
  .pill-white:hover { transform: translateY(-2px); border-color: var(--line2); box-shadow: var(--shadow); }
  .pill-ghost { background: transparent; color: var(--ink2); border: 1px solid var(--line2); }
  .pill-ghost:hover { color: var(--ink); border-color: var(--ink3); background: rgba(28,30,50,0.03); }
  .pill:active { transform: translateY(0) scale(0.985); box-shadow: var(--shadow-sm); }
  :focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

  /* ---------- nav ---------- */
  .nav { position: sticky; top: 0; z-index: 40; background: rgba(243,244,248,0.86); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px clamp(22px, 4vw, 56px); max-width: 1240px; margin: 0 auto; }
  .wordmark { text-decoration: none; font-size: 17px; font-weight: 800; letter-spacing: -0.01em; display: flex; align-items: center; gap: 8px; }
  .wordmark .mark { width: 30px; height: 30px; border-radius: 9px; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; }
  .wordmark .mark svg { width: 17px; height: 17px; display: block; }
  /* 회사(위) → 제품(아래). 회사 사이트의 얼굴이 되면서 "여기가 어디지?"가 없게 */
  .wm-text { display: flex; flex-direction: column; line-height: 1.12; }
  .wm-co {
    font-size: 9.5px; font-weight: 700; letter-spacing: 0.16em;
    color: var(--ink3); text-transform: uppercase;
  }
  .wm-pd { font-size: 17px; font-weight: 800; letter-spacing: -0.01em; color: var(--ink); }
  .nav-links { display: flex; gap: 26px; font-size: 13.5px; font-weight: 600; color: var(--ink2); }
  .nav-links a { position: relative; padding: 4px 0; text-decoration: none; transition: color 0.16s ease; }
  .nav-links a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 2px; border-radius: 2px;
    background: var(--accent); transform: scaleX(0); transform-origin: left center;
    transition: transform 0.24s cubic-bezier(.22,.68,.2,1);
  }
  .nav-links a:hover { color: var(--ink); }
  .nav-links a.current { color: var(--ink); }
  .nav-links a.current::after { transform: scaleX(1); }
  @media (max-width: 780px) { .nav-links { display: none; } }

  /* ---------- hero ---------- */
  .hero { padding-top: 76px; padding-bottom: 40px; }
  .hero-grid { display: grid; grid-template-columns: 0.95fr 1.15fr; gap: 56px; align-items: center; }
  .hero h1 {
    font-size: clamp(36px, 4.6vw, 54px); font-weight: 800; line-height: 1.16; letter-spacing: -0.025em;
    margin: 0 0 22px; text-wrap: balance; color: var(--ink);
  }
  .hero h1 em { font-style: normal; color: var(--accent); }
  .hero-subtitle { font-size: 19px; font-weight: 700; color: var(--ink2); margin: 0 0 18px; }
  .hero .lead { margin-bottom: 30px; font-size: 16.5px; }
  .hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
  .hero-hint { font-size: 12.5px; color: var(--ink3); }
  @media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; } }

  /* ---------- browser frame (실제 화면 공통) ---------- */
  .frame {
    background: var(--bg2); border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
    box-shadow: var(--shadow);
  }
  .frame-bar { display: flex; align-items: center; gap: 6px; padding: 12px 15px; border-bottom: 1px solid var(--line); }
  .frame-bar .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--line2); }
  .frame-bar .url {
    margin-left: 12px; font-family: "SF Mono", Consolas, monospace; font-size: 10.5px; color: var(--ink3);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0;
  }
  .frame img { width: 100%; height: auto; }

  /* ---------- proof strip (실제 화면 갤러리) ---------- */
  .proof { background: var(--bg2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 44px; }
  .proof-card { display: block; text-decoration: none; color: inherit; }
  .proof-card--wide { grid-column: span 2; }
  .proof-card .frame { transition: transform 0.2s ease, box-shadow 0.2s ease; }
  .proof-card:hover .frame { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
  .proof-cap { display: flex; justify-content: space-between; align-items: baseline; margin-top: 12px; gap: 8px; flex-wrap: wrap; }
  .proof-name { font-size: 13.5px; font-weight: 800; }
  .proof-tag { font-size: 11.5px; color: var(--ink3); }
  @media (max-width: 1040px) { .proof-grid { grid-template-columns: 1fr 1fr; } .proof-card--wide { grid-column: span 2; } }
  @media (max-width: 600px) { .proof-grid { grid-template-columns: 1fr; } .proof-card--wide { grid-column: span 1; } }

  /* ---------- problem ---------- */
  .compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 36px; }
  .compare-card { border-radius: 16px; padding: 28px 28px 26px; border: 1px solid var(--line); background: var(--bg2); }
  .compare-card.bad { background: transparent; }
  .compare-card.good { border-color: color-mix(in srgb, var(--accent) 32%, var(--line)); background: var(--accent-tint); box-shadow: var(--shadow-sm); }
  .compare-label { font-size: 12.5px; font-weight: 700; margin-bottom: 16px; display: inline-block; padding: 5px 12px; border-radius: 20px; background: var(--bg2); border: 1px solid var(--line); color: var(--ink2); }
  .compare-card.good .compare-label { border-color: transparent; }
  .compare-card.good .compare-label { background: var(--accent); color: #fff; }
  .compare-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
  .compare-list li { font-size: 14px; line-height: 1.55; padding-left: 20px; position: relative; color: var(--ink2); }
  .compare-card.bad .compare-list li::before { content: "×"; position: absolute; left: 0; color: var(--ink3); font-weight: 700; }
  .compare-card.good .compare-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
  .compare-card.good .compare-list li { color: var(--ink); }
  @media (max-width: 760px) { .compare-grid { grid-template-columns: 1fr; } }

  /* ---------- how (pill tabs + feature panel) ---------- */
  .how { background: var(--bg2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .tab-row { display: flex; gap: 8px; flex-wrap: wrap; margin: 36px 0 30px; }
  .tab-pill {
    font-family: inherit; cursor: pointer; border: 1px solid var(--line2); background: var(--bg2); color: var(--ink2);
    font-weight: 700; font-size: 13.5px; padding: 11px 20px; border-radius: 999px; transition: all 0.15s;
  }
  .tab-pill.active { background: var(--ink); color: #fff; border-color: var(--ink); }
  .tab-pill:not(.active):hover { border-color: var(--ink3); color: var(--ink); background: rgba(28,30,50,0.02); }
  .tab-pill:active { transform: scale(0.98); }
  .tab-panels { position: relative; }
  .tab-panel { display: none; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
  .tab-panel.active { display: grid; }
  .tab-panel .frame { }
  .tab-copy .num { font-size: 11.5px; font-weight: 800; color: var(--accent); letter-spacing: 0.16em; margin-bottom: 14px; display: block; }
  .tab-copy h3 { font-size: 22px; font-weight: 800; margin: 0 0 12px; letter-spacing: -0.01em; }
  .tab-copy p { font-size: 14.5px; color: var(--ink2); line-height: 1.7; margin: 0; }
  @media (max-width: 860px) { .tab-panel { grid-template-columns: 1fr; } .tab-panel .frame { order: -1; } }

  /* ---------- showcase (가입 단체) ---------- */
  .showcase-note { font-size: 12.5px; color: var(--ink3); margin: 14px 0 0; }
  .usecases { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 18px; }
  .uc {
    font-size: 13px; font-weight: 700; color: var(--ink2); background: var(--bg2);
    border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px;
  }
  .uc-note { font-size: 12.5px; color: var(--ink3); margin-left: 4px; }
  @media (max-width: 600px) { .uc-note { margin-left: 0; width: 100%; } }
  .org-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
  .org-card {
    background: var(--bg2); border: 1px solid var(--line); border-radius: 14px; padding: 22px 20px;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  }
  .org-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--line2); }
  .org-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
  .org-avatar { width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 15px; color: #fff; font-weight: 800; }
  .org-since { font-size: 10.5px; color: var(--ink3); font-family: "SF Mono", Consolas, monospace; font-variant-numeric: tabular-nums; }
  .org-name { font-size: 14.5px; font-weight: 800; margin: 0 0 6px; }
  .org-tag { font-size: 12px; color: var(--ink2); line-height: 1.5; margin: 0 0 16px; }
  .org-foot { display: flex; justify-content: space-between; align-items: center; font-size: 11.5px; color: var(--ink3); border-top: 1px solid var(--line); padding-top: 12px; font-variant-numeric: tabular-nums; }
  .org-foot b { color: var(--ink); font-weight: 700; }
  @media (max-width: 1000px) { .org-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 560px) { .org-grid { grid-template-columns: 1fr; } }

  /* ---------- pricing ---------- */
  .price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
  .price-card { background: var(--bg2); border: 2px solid var(--line); border-radius: 18px; padding: 30px 26px; display: flex; flex-direction: column; }
  .price-card.feat { border-color: var(--accent); position: relative; box-shadow: var(--shadow-sm); }
  .price-card.feat::before {
    content: "가장 추천"; position: absolute; top: -13px; left: 26px; background: var(--accent); color: #fff;
    font-size: 10.5px; font-weight: 700; padding: 5px 12px; border-radius: 999px; letter-spacing: 0.02em;
  }
  .price-name { font-size: 13px; font-weight: 700; color: var(--ink2); margin: 0 0 12px; }
  .price-amt { font-size: 30px; font-weight: 800; margin: 0 0 4px; font-variant-numeric: tabular-nums; }
  .price-amt span { font-size: 13.5px; font-weight: 600; color: var(--ink3); }
  .price-desc { font-size: 13.5px; color: var(--ink2); margin: 10px 0 22px; line-height: 1.65; flex: 1; }
  .price-note { text-align: center; font-size: 12.5px; color: var(--ink3); margin: 32px 0 0; }

  /* 모듈 단가 — 묶음에 없는 것을 낱개로 */
  .addon-h { margin: 54px 0 6px; font-size: 19px; font-weight: 800; letter-spacing: -0.01em; }
  .addon-sub { margin: 0 0 20px; font-size: 13.5px; color: var(--ink2); }
  .mod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .mod-card { background: var(--bg2); border: 1px solid var(--line); border-radius: 16px; padding: 22px 22px 8px; }
  .mod-g {
    margin: 0 0 6px; font-size: 11.5px; font-weight: 700; letter-spacing: 0.06em;
    color: var(--accent); text-transform: none;
  }
  .mod-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); }
  .mod-card .mod-row:last-child { border-bottom: none; }
  .mod-n { font-size: 13.5px; font-weight: 600; color: var(--ink); }
  .mod-n em { display: block; font-style: normal; font-size: 12px; font-weight: 400; color: var(--ink3); margin-top: 2px; line-height: 1.5; }
  .mod-p { font-size: 13.5px; font-weight: 700; white-space: nowrap; font-variant-numeric: tabular-nums; }

  /* 유지보수 — 만든 뒤에 드는 돈 */
  .maint { background: var(--bg2); border: 1px solid var(--line); border-radius: 16px; padding: 26px 26px 12px; margin-top: 18px; }
  .maint-h { margin: 0 0 4px; font-size: 16px; font-weight: 800; }
  .maint-s { margin: 0 0 16px; font-size: 13.5px; color: var(--ink2); line-height: 1.7; }
  .maint-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 32px; }
  .maint-free { color: var(--accent); }
  @media (max-width: 900px) { .mod-grid { grid-template-columns: 1fr; } .maint-grid { grid-template-columns: 1fr; } }
  .price-note a { color: var(--accent); font-weight: 600; }
  @media (max-width: 780px) { .price-grid { grid-template-columns: 1fr; } }

  /* ---------- faq ---------- */
  .faq-list { display: flex; flex-direction: column; gap: 10px; margin-top: 34px; max-width: 760px; }
  details { background: var(--bg2); border: 1px solid var(--line); border-radius: 12px; padding: 2px 22px; transition: border-color 0.18s ease, box-shadow 0.18s ease; }
  details:hover { border-color: var(--line2); }
  details[open] { border-color: var(--line2); box-shadow: var(--shadow-sm); }
  summary { cursor: pointer; padding: 18px 0; font-size: 15px; font-weight: 700; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 14px; }
  summary::-webkit-details-marker { display: none; }
  summary::after {
    content: ""; flex: none; width: 8px; height: 8px; margin-right: 4px;
    border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
    transform: rotate(45deg); transition: transform 0.24s cubic-bezier(.22,.68,.2,1);
  }
  details[open] summary::after { transform: rotate(-135deg); }
  details p { font-size: 14px; color: var(--ink2); line-height: 1.75; margin: 0 0 20px; max-width: 44em; }

  /* ---------- cta band ---------- */
  .cta-band { background: var(--ink); text-align: center; position: relative; overflow: hidden; }
  .cta-band::before {
    content: ""; position: absolute; left: 50%; top: -34%; width: 980px; height: 660px;
    transform: translateX(-50%); pointer-events: none;
    background: radial-gradient(closest-side, rgba(184,121,47,0.17), rgba(184,121,47,0));
  }
  .cta-band > .bj-shell { position: relative; }
  .cta-band h2 { color: #fff; max-width: 18em; margin: 0 auto 14px; }
  .cta-band .lead { color: #a9abbd; max-width: 30em; margin: 0 auto 10px; }
  .cta-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin: 0; }
  .cta-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin: 0; }
  .cta-form input {
    font-family: inherit; font-size: 14.5px; background: #212330; border: 1px solid #34364a;
    color: #fff; border-radius: 999px; padding: 14px 20px; width: 280px;
    transition: border-color 0.16s ease, background 0.16s ease;
  }
  .cta-form input::placeholder { color: #6d7086; }
  .cta-form input:hover { border-color: #464962; }
  .cta-form input:focus { outline: none; border-color: var(--accent); background: #262837; }
  .cta-form input.invalid { border-color: #d08a6b; }
  .cta-msg { min-height: 20px; margin: 16px 0 0; font-size: 13px; color: #a9abbd; }
  .cta-msg.err { color: #e0a184; }
  .cta-msg.ok { color: #e6c79b; }

  /* ---------- footer ---------- */
  footer { padding: 40px 0; }
  .footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
  .footer-tag { font-size: 12.5px; color: var(--ink3); }
  .footer-nav { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 18px; }
  .footer-nav a { text-decoration: none; font-size: 13px; font-weight: 600; color: var(--ink2); }
  .footer-nav a:hover { color: var(--accent); }
  .footer-biz { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line); }
  .footer-biz p { font-size: 11.5px; color: var(--ink3); line-height: 1.85; margin: 0; }

  /* ---------- founder note (왜 만들었나) ---------- */
  .founder { background: var(--bg2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .founder-wrap { display: grid; grid-template-columns: 0.56fr 1.44fr; gap: 56px; align-items: start; }
  .founder-side { position: sticky; top: 100px; }
  .founder-avatar {
    width: 56px; height: 56px; border-radius: 16px; background: var(--ink); color: #fff;
    display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
  }
  .founder-avatar svg { width: 27px; height: 27px; display: block; }
  .founder-side h3 { font-size: 19px; font-weight: 800; margin: 0 0 6px; }
  .founder-side .role { font-size: 13px; color: var(--ink2); line-height: 1.6; }
  .founder-note { border-left: 2px solid var(--line2); padding: 2px 0 2px 40px; max-width: 40em; }
  .founder-note p { font-size: 16.5px; line-height: 1.92; color: var(--ink); margin: 0 0 24px; letter-spacing: -0.004em; }
  .founder-note p:last-child { margin-bottom: 0; }
  .founder-note b { color: var(--accent); font-weight: 800; }
  .founder-sign { margin-top: 22px; font-size: 13.5px; color: var(--ink2); font-weight: 700; }
  @media (max-width: 860px) { .founder-wrap { grid-template-columns: 1fr; gap: 30px; } .founder-side { position: static; display: flex; align-items: center; gap: 14px; } .founder-avatar { margin-bottom: 0; } .founder-note { padding: 2px 0 2px 22px; } }

  /* ---------- quotes woven through sections ---------- */
  .anecdote { margin: 26px 0 0; padding-left: 20px; border-left: 2px solid var(--accent); font-size: 15px; font-style: italic; line-height: 1.78; color: var(--ink2); max-width: 40em; }
  .anecdote cite { display: block; margin-top: 8px; font-size: 12.5px; font-style: normal; font-weight: 700; color: var(--ink3); }
  .tab-copy p.tab-quote { margin: 20px 0 0; padding-left: 16px; border-left: 2px solid var(--line2); font-size: 13.5px; font-style: italic; line-height: 1.7; color: var(--ink3); }
  .price-quote { text-align: center; font-size: 12.5px; font-style: italic; color: var(--ink3); margin: 12px auto 0; max-width: 46em; }
  .cta-quote { margin: 0 0 30px; font-size: 12.5px; color: #8b8ea3; }

  /* ---------- proof carousel (동일 크기 자동 슬라이드) ---------- */
  .proof-carousel-wrap { width: 100%; margin-top: 44px; }
  .carousel { position: relative; }
  .carousel-viewport { overflow: hidden; border-radius: 16px; }
  .carousel-track { display: flex; transition: transform 0.55s cubic-bezier(.4,0,.2,1); }
  .carousel-slide { flex: 0 0 100%; text-decoration: none; color: inherit; }
  .carousel-frame {
    aspect-ratio: 16 / 9.6; background: var(--bg2); border: 1px solid var(--line); overflow: hidden;
    display: flex; flex-direction: column;
  }
  .carousel-frame .frame-bar { flex: 0 0 auto; }
  .carousel-imgwrap { flex: 1; overflow: hidden; background: #0c0e13; }
  .carousel-imgwrap img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
  .carousel-cap { display: flex; justify-content: space-between; align-items: baseline; margin-top: 16px; gap: 10px; flex-wrap: wrap; }
  .carousel-name { font-size: 15px; font-weight: 800; }
  .carousel-tag { font-size: 12px; color: var(--ink3); }
  .carousel-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 22px; }
  .carousel-arrow {
    width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line2); background: var(--bg2);
    color: var(--ink); font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: border-color 0.15s, transform 0.15s;
  }
  .carousel-arrow:hover { border-color: var(--ink3); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
  .carousel-arrow:active { transform: translateY(0) scale(0.95); }
  .carousel-dots { display: flex; gap: 8px; }
  .carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line2); border: none; cursor: pointer; padding: 0; transition: background 0.2s, width 0.2s; }
  .carousel-dot.active { background: var(--accent); width: 22px; border-radius: 5px; }

  /* 계산기(PricingCalculator)는 대시보드 테마 변수 이름을 쓴다.
     이 페이지는 랜딩 팔레트라 여기서 이름을 이어준다. */
  :root {
    --text: var(--ink); --text2: var(--ink2); --text3: var(--ink3);
    --border: var(--line); --border2: var(--line2); --bg3: var(--accent-tint);
  }
  .calc-wrap { margin-top: 26px; }
