.cubig-proof {
  /* ── CUBIG 디자인 시스템 매핑 (라이트 톤) — 기획안 다크 변수를 사이트 토큰으로 ── */
  --brand-purple: var(--c-accent-violet, #8A77E0);

  --bg: var(--c-bg-white, #ffffff);
  --bg2: var(--c-bg-light, #fafaf9);
  --bg3: var(--c-bg-light-alt, #f3f2f0);
  --text: var(--c-text-dark, #1c1c1c);
  --text2: var(--c-text-body, rgba(28,28,28,0.82));
  --text3: var(--c-text-subtle, rgba(28,28,28,0.5));
  --line: var(--c-border-light, rgba(28,28,28,0.08));
  --line2: var(--c-border-interactive, rgba(28,28,28,0.18));

  --green: var(--c-accent-green, #00c950);
  --green-dim: rgba(0,201,80,.07);
  --amber: #d97706;
  --amber-dim: rgba(217,119,6,.07);
  --blue: var(--c-accent-blue, #175dff);
  --blue-dim: rgba(23,93,255,.06);
  --rose: rgba(255,38,106,.07);

  --sans: var(--font-primary);
  --mono: var(--font-mono);
  --serif: var(--font-display);
}
.cubig-proof * { box-sizing: border-box; margin: 0; padding: 0; }
.cubig-proof { font-family: var(--sans); font-weight: 400; background: var(--bg); color: var(--text2); -webkit-font-smoothing: antialiased; line-height: 1.6; font-size: 16px; }
.cubig-proof a { color: inherit; text-decoration: none; }

/* ═══════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════ */
/* 타이틀 스케일 = 아카이브(blog/glossary)와 동일: 56px cap, 600, lh 1.05 */
.cubig-proof .h1 { font-family: var(--serif); font-size: clamp(36px, 4.5vw, 56px); font-weight: 600; line-height: 1.05; letter-spacing: -1.5px; color: var(--c-text-heading, #1c1c1c); }
.cubig-proof .h1 em { font-style: normal; color: var(--c-text-muted, #5f5f5d); font-weight: 600; }
/* 섹션 타이틀 = --fs-section-title 문법 (40px / 600 / -1px / 1.08) */
.cubig-proof .h2 { font-family: var(--serif); font-size: var(--fs-section-title, 40px); font-weight: var(--fw-section-title, 600); line-height: var(--lh-section-title, 1.08); letter-spacing: var(--ls-section-title, -1px); color: var(--c-text-heading, #1c1c1c); }
.cubig-proof .h2 em { font-style: normal; color: var(--c-text-muted, #5f5f5d); }
.cubig-proof .h3 { font-family: var(--serif); font-size: clamp(20px, 2.2vw, 26px); font-weight: 600; line-height: 1.2; letter-spacing: -0.4px; color: var(--c-text-heading, #1c1c1c); }
/* eyebrow = 사이트 공통 (sans 13px / 500 / .06em / 보라) — mono·슬래시 프리픽스 제거 */
.cubig-proof .eyebrow { font-family: var(--sans); font-size: 13px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--c-accent-violet, #8A77E0); margin-bottom: 16px; }

/* ═══════════════════════════════════
   LAYOUT
═══════════════════════════════════ */
.cubig-proof .section { padding: 96px var(--container-px, 32px); max-width: var(--container-max, 1280px); margin: 0 auto; }
.cubig-proof .section.tight { padding: 60px var(--container-px, 32px); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .5; }
}


/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.cubig-proof .hero-wrap { position: relative; overflow: hidden; }
/* 아카이브(blog/glossary)와 동일한 시그니처 워시 */
.cubig-proof .hero-grid { position: absolute; top: -260px; left: 50%; transform: translateX(-50%); width: 1100px; height: 620px;
  background:
    radial-gradient(circle at 30% 30%, rgba(138, 119, 224, 0.16), transparent 60%),
    radial-gradient(circle at 70% 40%, rgba(136, 146, 250, 0.12), transparent 60%),
    radial-gradient(circle at 50% 80%, rgba(255, 175, 200, 0.07), transparent 55%);
  filter: blur(80px); pointer-events: none; }
.cubig-proof .hero-inner { position: relative; max-width: var(--container-max, 1280px); margin: 0 auto; padding: clamp(120px, 14vw, 160px) var(--container-px, 32px) 72px; }
/* 2열 히어로: 좌 카피 / 우 지표 세로 스택 */
.cubig-proof .hero-cols { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(40px, 5vw, 80px); align-items: center; }
.cubig-proof .hero-sub { font-size: clamp(15.5px, 1.6vw, 17.5px); color: var(--text2); line-height: 1.7; max-width: 560px; margin-top: 24px; }
.cubig-proof .hero-stats { display: flex; flex-direction: column; max-width: 460px; margin-left: auto; }
/* 카드 제거 — 가로 정렬(좌 큰 숫자 / 우 라벨·변화), 헤어라인 구분 */
.cubig-proof .hero-stat {
  display: flex; align-items: center; gap: 18px;
  padding: 20px 0; border-top: 1px solid var(--line);
  animation: fadeUp .95s cubic-bezier(.22,1,.36,1) both;
}
.cubig-proof .hero-stat:last-child { border-bottom: 1px solid var(--line); }
.cubig-proof .hero-stat:nth-child(1) { animation-delay: .25s; }
.cubig-proof .hero-stat:nth-child(2) { animation-delay: .38s; }
.cubig-proof .hero-stat:nth-child(3) { animation-delay: .51s; }
@media (prefers-reduced-motion: reduce) { .cubig-proof .hero-stat { animation: none; } }
.cubig-proof .hs-after {
  flex: 0 0 152px; white-space: nowrap; font-family: var(--serif); font-size: 28px; font-weight: 500;
  color: var(--c-accent-violet-text, #6F50CC); line-height: 1.05; letter-spacing: -.6px;
}
.cubig-proof .hs-info { display: flex; flex-direction: column; gap: 4px; }
.cubig-proof .hs-label { font-family: var(--sans); font-size: 13.5px; font-weight: 600; color: var(--text); }
.cubig-proof .hs-from { font-family: var(--sans); font-size: 12.5px; color: var(--text3); line-height: 1.45; }
.cubig-proof .hs-from strong { color: var(--c-accent-violet-text, #6F50CC); font-weight: 500; }

/* 섹션 스크롤 진입 등장 — .js-reveal(JS on)일 때만 숨겼다 등장 */
.cubig-proof.js-reveal .reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.cubig-proof.js-reveal .reveal.in-view { opacity: 1; transform: none; }

/* ═══════════════════════════════════
   TRUST STRIP (top of page — high visibility)
═══════════════════════════════════ */
.cubig-proof .trust-strip { border-bottom: 1px solid var(--line); background: #fff; padding: 48px 0 96px; overflow-x: clip; }
/* 패딩을 inner로 (hero-inner·section·filter-inner와 동일 패턴) → 좌우 정렬 일치 */
.cubig-proof .trust-strip-inner { max-width: var(--container-max, 1280px); margin: 0 auto; padding: 0 var(--container-px, 32px); }
.cubig-proof .trust-strip-label { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--text3); margin-bottom: 36px; text-align: center; }
.cubig-proof .trust-strip-content { display: flex; flex-direction: column; gap: 44px; }
.cubig-proof .trust-strip-group { display: flex; flex-direction: column; gap: 32px; }
/* 인증·수상 그룹은 고객·파트너(가트너 밴드 포함) 아래로 숨통 더 — 두 번째 그룹에만 적용 */
.cubig-proof .trust-strip-group + .trust-strip-group { margin-top: 40px; }
/* Gartner 애널리스트 밴드 (홈 client-logos__analyst와 동일: 로고 왼쪽 + 텍스트 우측정렬 + 위 헤어라인) */
.cubig-proof .trust-analyst { position: relative; margin-top: 24px; padding-top: 28px; display: flex; align-items: center; justify-content: space-between; gap: clamp(28px, 5vw, 64px); }
.cubig-proof .trust-analyst::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--line); }
.cubig-proof .trust-analyst__logo { height: 34px; width: auto; flex: 0 0 auto; display: block; }
.cubig-proof .trust-analyst__copy { flex: 0 1 auto; min-width: 0; text-align: right; }
.cubig-proof .trust-analyst__cite { font-family: var(--sans); font-size: 13.5px; color: var(--text3); line-height: 1.5; margin: 0; }
.cubig-proof .trust-analyst__award { font-family: var(--sans); font-size: 13.5px; font-weight: 700 !important; letter-spacing: -.1px; color: var(--text2); margin: 4px 0 0; }
@media (max-width: 768px) {
  .cubig-proof .trust-analyst { margin-top: 16px; padding-top: 24px; flex-direction: column; align-items: flex-start; gap: 14px; }
  .cubig-proof .trust-analyst__logo { height: 28px; }
  .cubig-proof .trust-analyst__copy { text-align: left; }
  .cubig-proof .trust-analyst__cite, .cubig-proof .trust-analyst__award { font-size: 12.5px; }
}
/* Gartner 밴드 위 여백 = 고객↔인증 간격(content gap 44)과 동일하게 — 추가 margin-top 제거 */
.cubig-proof .trust-analyst--footer { margin-top: 0; }
.cubig-proof .trust-strip-group-title { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--text3); text-align: center; }

/* ── 고객 2열 (좌 텍스트 / 우 3×2 페이징 그리드, 박스 없이 가볍게) ── */
.cubig-proof .trust-2col { display: grid; grid-template-columns: minmax(200px, 300px) 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.cubig-proof .trust-2col__title { font-family: var(--sans); font-size: clamp(20px, 2.2vw, 28px); font-weight: 700; letter-spacing: -.4px; color: var(--text1); margin: 0 0 12px; }
.cubig-proof .trust-2col__lead { font-family: var(--sans); font-size: 14px; line-height: 1.65; color: var(--text3); margin: 0; }
.cubig-proof .trust-2col__pane { min-width: 0; }
/* 2단 안의 마퀴는 full-bleed 끄고 pane 폭에 맞춤 (main.js 자동스크롤·드래그 + 양옆 그라디언트 페이드 유지) */
.cubig-proof .trust-2col .trust-marquee { width: 100%; max-width: 100%; margin-left: 0; margin-right: 0; }
/* 인증: 미러 — 마퀴 좌 / 타이틀 우 */
.cubig-proof .trust-2col--reverse { grid-template-columns: 1fr minmax(200px, 300px); }
.cubig-proof .trust-2col--reverse .trust-2col__text { text-align: right; }
@media (max-width: 768px) {
  .cubig-proof .trust-2col,
  .cubig-proof .trust-2col--reverse { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .cubig-proof .trust-2col--reverse .trust-2col__text { text-align: left; order: -1; }
}
/* ── 마퀴: 홈 client-logos/built-prod와 동일 — 자동스크롤 + 잡고 끌기(드래그). main.js initMarquee가 구동 ── */
/* full-bleed: 컨테이너(1280)·좌우 패딩(40) 밖 뷰포트 양끝까지 (built-prod 톤) */
.cubig-proof .trust-marquee {
  width: 100vw; max-width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
  overflow-x: auto; overflow-y: hidden;
  cursor: grab; touch-action: pan-y;
  scrollbar-width: none; -ms-overflow-style: none;
  /* 가장자리 페이드: mask-image (overflow-x:auto에선 abs ::before/::after가 콘텐츠와 같이 스크롤돼버림) */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
}
.cubig-proof .trust-marquee::-webkit-scrollbar { display: none; }
.cubig-proof .trust-marquee.is-grabbing { cursor: grabbing; }
.cubig-proof .trust-marquee img { -webkit-user-drag: none; user-select: none; }
.cubig-proof .trust-track { display: flex; align-items: center; gap: 8px; width: max-content; margin: 0; padding: 0; }
.cubig-proof .trust-marquee--certs .trust-track { gap: 20px; }

/* 로고 셀/크기 — 홈 client-logos와 동일 (셀 160 · 로고 80×80) */
.cubig-proof .trust-logo { flex: 0 0 160px; height: 80px; display: flex; align-items: center; justify-content: center; }
.cubig-proof .trust-logo img { max-width: 80px; max-height: 80px; width: auto; object-fit: contain; }
/* 가로로 긴 워드마크 4종 — 홈과 동일하게 1.44x */
.cubig-proof .trust-logo img[alt*="국방부"],
.cubig-proof .trust-logo img[alt*="National Defense"],
.cubig-proof .trust-logo img[alt*="Claroty"],
.cubig-proof .trust-logo img[alt*="신앤김"],
.cubig-proof .trust-logo img[alt*="Shin"],
.cubig-proof .trust-logo img[alt*="삼성"],
.cubig-proof .trust-logo img[alt*="Samsung"] { transform: scale(1.44); }

/* 서트카드 — 기존 크기 유지(드래그 마키 안에서) */
.cubig-proof .trust-cert { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; padding: 20px 28px; }
.cubig-proof .trust-cert img { max-height: 160px; width: auto; object-fit: contain; }

/* ═══════════════════════════════════
   FILTER BAR
═══════════════════════════════════ */
.cubig-proof .filter-wrap { border-bottom: 1px solid var(--line); background: #fff; position: sticky; top: 64px; z-index: 20; }
.cubig-proof .filter-inner { display: flex; gap: 8px; max-width: var(--container-max, 1280px); margin: 0 auto; padding: 18px var(--container-px, 32px); overflow-x: auto; }
.cubig-proof .filter-btn { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border: 1px solid var(--line); border-radius: 999px; font-family: var(--sans); font-size: 13.5px; font-weight: 500; letter-spacing: 0; color: var(--text2); background: #fff; cursor: pointer; transition: all .15s; white-space: nowrap; }
.cubig-proof .filter-btn:hover { border-color: var(--brand-purple); color: var(--text); }
.cubig-proof .filter-btn.active { background: var(--c-accent-violet, #8A77E0); border-color: var(--c-accent-violet, #8A77E0); color: #fff; }
.cubig-proof .filter-dot { width: 6px; height: 6px; border-radius: 50%; }
.cubig-proof .dot-all { background: linear-gradient(135deg, var(--amber), var(--green), var(--c-accent-violet, #8A77E0)); }
.cubig-proof .dot-stable { background: var(--amber); }
.cubig-proof .dot-data { background: var(--green); }
.cubig-proof .dot-secure { background: var(--c-accent-violet, #8A77E0); }

/* ═══════════════════════════════════
   EVIDENCE
═══════════════════════════════════ */
.cubig-proof .evidence-wrap { background: var(--c-bg-light, #fafaf9); border-bottom: 1px solid var(--line); }
/* 2열 구조: 좌 필터 사이드바(세로·sticky) | 우 콘텐츠(헤더+카드) */
.cubig-proof .evidence-layout { display: grid; grid-template-columns: minmax(230px, 280px) 1fr; gap: clamp(32px, 4vw, 56px); align-items: start; }
/* sticky: 고정 헤더(64px) 아래로 여유 */
.cubig-proof .evidence-filter { position: sticky; top: 100px; }
.cubig-proof .evidence-filter .filter-inner { display: flex; flex-direction: column; align-items: stretch; gap: 6px; max-width: none; margin: 0; padding: 0; overflow: visible; }
.cubig-proof .evidence-filter .filter-btn { width: 100%; justify-content: flex-start; }
/* 트리 네비 (카테고리 ▸ 케이스) */
.cubig-proof .ev-tree { display: flex; flex-direction: column; gap: 6px; }
.cubig-proof .ev-tree-catbtn { display: flex; align-items: center; gap: 8px; width: 100%; padding: 10px 14px; border: 0; background: transparent; border-radius: 10px; cursor: pointer; font-family: var(--sans); font-size: 14.5px; font-weight: 600; color: var(--text); text-align: left; transition: background .12s, color .12s; }
.cubig-proof .ev-tree-catbtn:hover { background: var(--c-bg-light-alt, #f3f2f0); color: var(--text); }
/* 활성 카테고리 = 보라 배경 틴트로 통일 (단색 기조) */
.cubig-proof .ev-tree-cat.open .ev-tree-catbtn { color: var(--text); background: rgba(138,119,224,.10); }
/* span이 weight 400으로 강제돼서(ibm/eyebrow span 룰) 카테고리 타이틀이 안 굵음 → span에 직접 700 */
.cubig-proof .ev-tree-label { flex: 1 1 auto; min-width: 0; font-weight: 600 !important; }
.cubig-proof .ev-tree-count { font-family: var(--mono); font-size: 11px; color: var(--text3); }
.cubig-proof .ev-tree-cases { list-style: none; margin: 4px 0 10px; padding: 4px 0 2px; display: none; }
.cubig-proof .ev-tree-cat.open .ev-tree-cases { display: block; }
.cubig-proof .ev-tree-case { width: 100%; text-align: left; border: 0; background: transparent; cursor: pointer; padding: 8px 10px 8px 18px; margin-left: 17px; border-left: 1px solid var(--line); font-family: var(--sans); font-size: 12.5px; font-weight: 400; line-height: 1.45; color: var(--text3); transition: color .12s, border-color .12s; display: block; overflow: visible; }
.cubig-proof .ev-tree-case:hover { color: var(--text); border-left-color: var(--c-accent-violet, #8A77E0); }
/* 카드 열림 = 해당 케이스 활성(검정) */
.cubig-proof .ev-tree-case.active { color: var(--c-text-dark, #1c1c1c); font-weight: 600; border-left-color: var(--c-text-dark, #1c1c1c); }
/* 산업별 색 라벨 — JS가 카드의 산업명+색을 케이스 텍스트 앞에 주입 */
.cubig-proof .ev-tree-ind { font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: .02em; margin-right: 6px; }
.cubig-proof .evidence-main { min-width: 0; }
/* 섹션 헤더(eyebrow+타이틀+서브)는 2열 레이아웃 위로, 본문(트리+카드)만 아래 */
.cubig-proof .evidence-head { margin-bottom: clamp(28px, 4vw, 44px); }
.cubig-proof .evidence-head .h2 { margin-top: 8px; }
.cubig-proof .evidence-sub { font-size: 15px; color: var(--text2); line-height: 1.65; max-width: 600px; margin-top: 16px; }
.cubig-proof .evidence-count { font-family: var(--mono); font-size: 11.5px; color: var(--text3); margin: 0 0 16px; }
/* 콘텐츠 영역은 1열 결과 리스트 (사이드바 옆이라 깔끔) */
.cubig-proof .evidence-grid { display: grid; grid-template-columns: 1fr; gap: 12px; align-items: start; }
/* 모바일: 필터 상단 가로 pill, 콘텐츠 아래 */
@media (max-width: 860px) {
  .cubig-proof .evidence-layout { grid-template-columns: 1fr; gap: 24px; }
  .cubig-proof .evidence-filter { position: static; }
  .cubig-proof .evidence-filter .filter-inner { flex-direction: row; flex-wrap: wrap; }
  .cubig-proof .evidence-filter .filter-btn { width: auto; }
}
/* ibm-overrides의 [class*="-card"] 강제(bg흰색·radius12·border)를 이김 — .cubig-proof .ev-card(0,2,0)!important > ibm(0,1,0)!important */
/* 카드 박스 X → 헤어라인 가로선 구분 리스트 (ibm [class*="-card"] 강제 무력화) */
/* 흰색 카드 (ibm [class*="-card"] 강제를 (0,2,0)!important로 덮음) */
.cubig-proof .ev-card { background: var(--c-bg-white, #fff) !important; border: 1px solid var(--line) !important; border-radius: 12px !important; box-shadow: 0 1px 2px rgba(28,28,28,.03) !important; overflow: hidden; transition: border-color .18s, box-shadow .18s; }
/* 케이스 클릭 점프 시 고정 헤더(64px) 밑으로 안 들어가게 */
.cubig-proof .ev-card { scroll-margin-top: 88px; }
.cubig-proof .ev-card:hover { border-color: rgba(138,119,224,.34) !important; box-shadow: 0 2px 4px rgba(28,28,28,.03), 0 12px 30px rgba(28,28,28,.05) !important; }
.cubig-proof .ev-card.open { border-color: rgba(138,119,224,.28) !important; box-shadow: 0 2px 4px rgba(28,28,28,.03), 0 12px 30px rgba(28,28,28,.05) !important; }
.cubig-proof .ev-card.hidden { display: none; }

/* ev-card-header도 [class*="-card"]에 걸려 ibm이 내부 박스(테두리·radius·흰배경)를 씌움 → 두겹 카드. 박스 강제 해제 */
/* 통합 그리드: [before|산업] 1행 / [after|제목] 2행 / 토글 우측 — baseline 정렬 */
@property --ev-c1 { syntax: "<length>"; inherits: true; initial-value: 140px; }
.cubig-proof .ev-card-header { padding: 22px 26px; cursor: pointer; display: grid; grid-template-columns: var(--ev-c1, 140px) 1fr auto; grid-template-rows: auto auto; column-gap: 24px; row-gap: 7px; align-items: baseline; background: transparent !important; border: 0 !important; border-radius: 0 !important; box-shadow: none !important; transition: --ev-c1 .42s cubic-bezier(.4,0,.2,1), column-gap .42s cubic-bezier(.4,0,.2,1); }
.cubig-proof .ev-head-grid .ev-hl-before { grid-column: 1; grid-row: 1; }
.cubig-proof .ev-head-grid .ev-industry { grid-column: 2; grid-row: 1; margin-bottom: 0 !important; justify-self: start; }
.cubig-proof .ev-head-grid .ev-hl-after { grid-column: 1; grid-row: 2; }
.cubig-proof .ev-head-grid .ev-title { grid-column: 2; grid-row: 2; }
.cubig-proof .ev-head-grid .ev-meta { grid-column: 3; grid-row: 1 / span 2; align-self: center; }
/* 카드 열림: before/after는 본문 메트릭에 중복 → 1열 폭을 0으로 줄이며 페이드, 타이틀이 슥 좌측으로 */
.cubig-proof .ev-card.open .ev-head-grid { --ev-c1: 0px; column-gap: 0px; }
.cubig-proof .ev-card.open .ev-hl-before, .cubig-proof .ev-card.open .ev-hl-after { opacity: 0; }
.cubig-proof .ev-card-header:hover .ev-title { color: var(--brand-purple); }
.cubig-proof .ev-industry { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--text2); margin-bottom: 10px; }
.cubig-proof .ev-industry-dot { width: 6px; height: 6px; border-radius: 50%; }
/* 산업 뱃지 (점 대신 컬러 칩, 산업별 색은 JS 인라인) */
/* 산업 라벨: 박스 없이 컬러 텍스트만 (테두리·배경 X, 굵지 않게) */
.cubig-proof .ev-industry-badge { padding: 0; border: 0; background: transparent; border-radius: 0; color: var(--c-accent-violet-text, #6F50CC); font-size: 11px; font-weight: 500; letter-spacing: .08em; gap: 0; align-self: start; }
/* 접힌 카드에서도 스캔되는 before→after 핵심 지표 칩 (JS가 첫 amber→첫 green 주입) */
/* before(작게·muted) / after(크게·보라) — 통합 그리드 셀 */
.cubig-proof .ev-hl-before { font-family: var(--mono); font-size: 11px; letter-spacing: .04em; color: var(--text3); min-width: 0; overflow: hidden; white-space: nowrap; transition: opacity .28s ease; }
.cubig-proof .ev-hl-before::after { content: "\2193"; margin-left: 6px; color: var(--text3); opacity: .6; }
.cubig-proof .ev-hl-after { font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--c-accent-violet, #8A77E0); letter-spacing: -0.02em; line-height: 1.1; min-width: 0; overflow: hidden; white-space: nowrap; transition: opacity .28s ease; }
.cubig-proof .ev-title { font-family: var(--serif); font-size: 19px; font-weight: 600; color: var(--c-text-heading, #1c1c1c); letter-spacing: -0.3px; line-height: 1.3; }
.cubig-proof .ev-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
/* 카드 카테고리 뱃지는 사이드바 트리와 중복 → 숨김 (data-tag 속성은 필터링에 그대로 사용됨) */
.cubig-proof .ev-tag { display: none; }
.cubig-proof .ev-tag.stable { background: var(--amber-dim); color: var(--amber); border: 1px solid rgba(245,166,35,.2); }
.cubig-proof .ev-tag.data { background: var(--green-dim); color: var(--green); border: 1px solid rgba(13,190,124,.25); }
.cubig-proof .ev-tag.secure { background: rgba(138,119,224,.08); color: var(--c-accent-violet-text, #6F50CC); border: 1px solid rgba(138,119,224,.3); }
/* 아코디언 토글 = chevron 화살표 (접힘 › / 펼침 ⌄). + 아님 */
/* +/− 토글 (접힘 + / 펼침 −) */
.cubig-proof .ev-toggle { position: relative; display: inline-block; width: 20px; height: 20px; color: var(--text3); transition: color .15s; }
.cubig-proof .ev-toggle::before, .cubig-proof .ev-toggle::after { content: ''; position: absolute; top: 50%; left: 50%; width: 12px; height: 1.6px; background: currentColor; transform: translate(-50%, -50%); transition: opacity .2s; }
.cubig-proof .ev-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.cubig-proof .ev-card-header:hover .ev-toggle { color: var(--c-accent-violet, #8A77E0); }
.cubig-proof .ev-card.open .ev-toggle { color: var(--c-accent-violet, #8A77E0); }
.cubig-proof .ev-card.open .ev-toggle::after { opacity: 0; }

.cubig-proof .ev-body { padding: 0 26px 26px; display: none; }
.cubig-proof .ev-card.open .ev-body { display: block; animation: ev-reveal .24s ease both; }
@keyframes ev-reveal { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .cubig-proof .ev-card.open .ev-body { animation: none; } }
/* metrics: 가벼운 보더 스탯 스트립 */
.cubig-proof .ev-metrics { display: flex; flex-wrap: wrap; margin: 6px 0 32px; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.cubig-proof .ev-metric { flex: 1 1 130px; padding: 14px 18px; border-right: 1px solid var(--line); }
.cubig-proof .ev-metric:last-child { border-right: 0; }
.cubig-proof .ev-metric-val { font-family: var(--serif); font-size: 28px; font-weight: 700 !important; display: block; line-height: 1; letter-spacing: -0.02em; }
/* 단일 포인트 컬러 원칙: before=muted(지난 상태), after=violet(개선=우리 가치), 카운트=ink */
.cubig-proof .ev-metric-val.amber { color: var(--c-text-muted, #5f5f5d); }
.cubig-proof .ev-metric-val.green { color: var(--c-accent-violet-text, #6F50CC); }
.cubig-proof .ev-metric-val.blue { color: var(--c-text-dark, #1c1c1c); }
.cubig-proof .ev-metric-label { font-size: 11.5px; color: var(--text2); margin-top: 6px; display: block; line-height: 1.4; }

/* rows: 각 행 블록 + Reproduce 강조(보라 틴트 블록 — moat) */
.cubig-proof .ev-rows { display: grid; grid-template-columns: 1fr 1fr; column-gap: 32px; padding-top: 2px; }
.cubig-proof .ev-row { padding: 20px 0; border-top: 1px solid var(--line); align-items: start; }
/* Before / After = 좌우 2열 비교 (라벨 위 · 텍스트 아래) */
.cubig-proof .ev-row:has(.before-l), .cubig-proof .ev-row:has(.after-l) { display: flex; flex-direction: column; gap: 9px; }
/* What Changed / Reproduce = 전체폭, 라벨 좌측 */
.cubig-proof .ev-row:has(.diff-l), .cubig-proof .ev-row:has(.reproduce-l) { grid-column: 1 / -1; display: grid; grid-template-columns: 104px 1fr; column-gap: 24px; }
.cubig-proof .ev-row-label { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
/* 행 라벨 = 중립 mono (eyebrow 톤). Reproduce만 바이올렛(moat) */
.cubig-proof .ev-row-label.before-l,
.cubig-proof .ev-row-label.diff-l { color: var(--c-text-subtle, rgba(28,28,28,.5)); }
.cubig-proof .ev-row-label.after-l { color: var(--c-accent-violet-text, #6F50CC); font-weight: 700; }
.cubig-proof .ev-row-label.reproduce-l { color: var(--c-accent-violet-text, #6F50CC); font-weight: 700; }
.cubig-proof .ev-row-text { font-size: 14.5px; color: var(--text2); line-height: 1.6; }
.cubig-proof .ev-row-text strong { color: var(--text); font-weight: 500; }
/* Reproduce = 우리 moat → 헤어라인 아래 은은한 보라 그라데이션(박스 X) + 라벨 보라 굵게 */

.cubig-proof .ev-artifacts { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--line); }
.cubig-proof .ev-artifacts-label { font-family: var(--mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--text3); margin-right: 6px; }
.cubig-proof .artifact-pill { font-family: var(--mono); font-size: 10.5px; letter-spacing: .04em; padding: 4px 10px; background: transparent; border: 1px solid var(--line); border-radius: 6px; color: var(--text3); }
/* 카드 하단 '접기' 버튼 — 데스크탑 숨김, 모바일에서만 노출(아래 미디어쿼리) */
.cubig-proof .ev-collapse { display: none; }

/* ── 모바일: evidence 섹션 단순화 ── */
/* 트리(사이드바)는 모바일에서 가로 카테고리 칩 바로 변형 — 긴 케이스 목록은 숨기고
   카테고리 버튼만 칩으로(탭=그 카테고리 카드만 필터, selectCat 재활용).
   필터를 통째로 숨기면 stable 외 카테고리 카드에 접근 불가 → 칩으로 유지해야 함 */
/* 한 줄 밑줄 탭(제품페이지 .anchor-inner 스타일과 동일) — 가로 스크롤, 활성=보라 밑줄, pill 배경 없음 */
@media (max-width: 860px) {
  .cubig-proof .evidence-filter { position: static; min-width: 0; margin-bottom: 10px; border-bottom: 1px solid var(--line); }
  .cubig-proof .ev-tree { flex-direction: row; flex-wrap: nowrap; gap: 22px; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .cubig-proof .ev-tree::-webkit-scrollbar { display: none; }
  .cubig-proof .ev-tree-cases { display: none !important; }
  .cubig-proof .ev-tree-cat { flex: 0 0 auto; }
  .cubig-proof .ev-tree-catbtn { width: auto; gap: 6px; padding: 12px 0; margin-bottom: -1px; border: 0; border-bottom: 2px solid transparent; border-radius: 0; background: transparent !important; font-size: 14px; font-weight: 500; color: var(--text2); white-space: nowrap; }
  .cubig-proof .ev-tree-cat.open .ev-tree-catbtn { background: transparent !important; color: var(--c-accent-violet, #8A77E0); border-bottom-color: var(--c-accent-violet, #8A77E0); }
  .cubig-proof .ev-tree-label { flex: 0 0 auto !important; }
  .cubig-proof .ev-tree-count { color: var(--text3); }
  /* 펼친 카드 하단 '접기' 버튼 */
  .cubig-proof .ev-collapse { display: flex; align-items: center; justify-content: center; gap: 6px; width: 100%; margin-top: 24px; padding: 12px; border: 1px solid var(--line); border-radius: 10px; background: var(--c-bg-white, #fff); font-family: var(--sans); font-size: 13.5px; font-weight: 600; color: var(--text2); cursor: pointer; transition: border-color .15s, color .15s; }
  .cubig-proof .ev-collapse::before { content: "\2191"; font-size: 13px; }
  .cubig-proof .ev-collapse:hover { border-color: rgba(138,119,224,.4); color: var(--text); }
}
/* 폰: 카드 헤더 = [산업+제목 | 토글] 2열로 단순화 (before/after 칩 숨김), 본문 1열 */
@media (max-width: 620px) {
  .cubig-proof .ev-card-header { grid-template-columns: 1fr auto !important; column-gap: 14px; padding: 18px 18px; }
  .cubig-proof .ev-head-grid .ev-hl-before,
  .cubig-proof .ev-head-grid .ev-hl-after { display: none; }
  .cubig-proof .ev-head-grid .ev-industry { grid-column: 1; grid-row: 1; }
  .cubig-proof .ev-head-grid .ev-title { grid-column: 1; grid-row: 2; }
  .cubig-proof .ev-head-grid .ev-meta { grid-column: 2; grid-row: 1 / span 2; align-self: center; }
  .cubig-proof .ev-title { font-size: 17px; }
  .cubig-proof .ev-body { padding: 0 18px 22px; }
  /* 2열 그리드 + 1px gap(배경=line)으로 가로·세로 구분선 자동 생성. 3개 카드는 마지막을 전체폭으로 */
  .cubig-proof .ev-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); margin: 4px 0 22px; }
  .cubig-proof .ev-metric { padding: 12px 14px; border-right: 0; background: var(--c-bg-white, #fff); }
  .cubig-proof .ev-metric:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .cubig-proof .ev-metric-val { font-size: 22px; }
  .cubig-proof .ev-rows { grid-template-columns: 1fr; column-gap: 0; }
  .cubig-proof .ev-row { padding: 16px 0; }
  .cubig-proof .ev-row:has(.diff-l),
  .cubig-proof .ev-row:has(.reproduce-l) { grid-template-columns: 1fr; row-gap: 8px; }
}

/* ═══════════════════════════════════
   TRUST SECTIONS (Cert / Patent / Award / Partner / Press)
═══════════════════════════════════ */
.cubig-proof .trust-section { border-bottom: 1px solid var(--line); }
/* 회색 밴드: 특허 + 수상. 연구는 흰 배경 + 카드 그림자 강화로 띄움. 인증은 흰색. */
.cubig-proof .trust-section:has(.trust-grid--patents),
.cubig-proof .trust-section:has(.trust-grid--awards) { background: var(--c-bg-light, #fafaf9); }
/* 홈 컨벤션: 2열 헤더(타이틀 좌 / 서브타이틀 우, 하단 정렬) + 타이틀 보라 강조 */
.cubig-proof .trust-section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 48px; margin-bottom: clamp(28px, 4vw, 44px); flex-wrap: wrap; }
.cubig-proof .trust-section-head .h2 { margin-top: 8px; }
.cubig-proof .trust-section-head .h2 em { color: var(--c-text-heading, #1c1c1c); }
.cubig-proof .trust-section-head p { flex: 0 1 420px; font-size: 15px; color: var(--text2); max-width: 420px; line-height: 1.6; }

.cubig-proof .trust-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px; }
.cubig-proof .trust-item { background: var(--bg2); border: 1px solid var(--line); border-radius: 8px; padding: 22px; transition: border-color .15s; }
.cubig-proof .trust-item:hover { border-color: var(--line2); }
.cubig-proof .trust-item.tbd { border-style: dashed; opacity: .65; }
.cubig-proof .trust-item .ti-icon { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--brand-purple); margin-bottom: 12px; }
.cubig-proof .trust-item.tbd .ti-icon { color: var(--text3); }
.cubig-proof .trust-item h4 { font-family: var(--serif); font-size: 16px; font-weight: 600; color: var(--c-text-heading, #1c1c1c); margin-bottom: 6px; letter-spacing: -0.2px; line-height: 1.3; }
.cubig-proof .trust-item.tbd h4 { color: var(--text2); font-style: italic; }
.cubig-proof .trust-item .ti-meta { font-family: var(--mono); font-size: 10.5px; color: var(--text3); margin-bottom: 8px; }
.cubig-proof .trust-item .ti-body { font-size: 13.5px; color: var(--text2); line-height: 1.55; }
/* 인증 카드 = 회색 박스(배지) + 박스 아래 설명 (Section 02 한정 스코프) */
/* 캐러셀: 한 줄 가로 스크롤 + 좌우 화살표 */
.cubig-proof .cert-carousel { position: relative; }
.cubig-proof .trust-grid--certs,
.cubig-proof .trust-grid--awards { display: flex; flex-wrap: nowrap; overflow-x: auto; gap: 20px; scroll-behavior: smooth; scrollbar-width: none; -ms-overflow-style: none; padding-bottom: 2px; }
.cubig-proof .trust-grid--certs::-webkit-scrollbar,
.cubig-proof .trust-grid--awards::-webkit-scrollbar { display: none; }
/* 인증·수상 카드 = 완전 동일 스타일(배지 박스 + 제목 + 설명/메타). 수상만 ti-meta 추가. */
.cubig-proof .trust-grid--certs .trust-item,
.cubig-proof .trust-grid--awards .trust-item { flex: 0 0 clamp(238px, 28%, 290px); background: transparent; border: 0; border-radius: 0; padding: 0; text-align: left; transition: none; }
.cubig-proof .cert-arrow { position: absolute; top: 50%; transform: translateY(-50%); display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 999px; border: 1px solid var(--line); background: #fff; color: var(--text); cursor: pointer; box-shadow: 0 4px 14px rgba(28,28,28,.08); transition: border-color .15s, color .15s, opacity .15s; z-index: 2; }
.cubig-proof .cert-arrow svg { width: 18px; height: 18px; }
.cubig-proof .cert-arrow:hover { border-color: var(--c-accent-violet, #8A77E0); color: var(--c-accent-violet, #8A77E0); }
.cubig-proof .cert-arrow--prev { left: -22px; }
.cubig-proof .cert-arrow--next { right: -22px; }
.cubig-proof .cert-arrow:disabled { opacity: .3; cursor: default; box-shadow: none; }
.cubig-proof .cert-carousel.no-scroll .cert-arrow { display: none; }
/* 모바일·터치: 좌우 화살표 숨김 — 손가락 스크롤(overflow-x) 사용 */
@media (max-width: 768px) { .cubig-proof .cert-arrow { display: none; } }
.cubig-proof .trust-grid--certs .trust-item:hover,
.cubig-proof .trust-grid--awards .trust-item:hover { border: 0; box-shadow: none; }
.cubig-proof .trust-grid--certs .ti-badge,
.cubig-proof .trust-grid--awards .ti-badge { display: flex; align-items: center; justify-content: center; background: var(--c-bg-white, #fff); border: 1px solid rgba(28,28,28,.05); border-radius: 16px; box-shadow: 0 6px 24px rgba(28,28,28,.06); padding: 20px 16px; min-height: 242px; margin-bottom: 18px; }
.cubig-proof .trust-grid--certs .ti-badge img,
.cubig-proof .trust-grid--awards .ti-badge img { max-height: 200px; max-width: 100%; width: auto; object-fit: contain; }
.cubig-proof .trust-grid--certs h4,
.cubig-proof .trust-grid--awards h4 { font-family: var(--serif); font-size: 16px; font-weight: 600; color: var(--c-text-heading, #1c1c1c); letter-spacing: -0.2px; line-height: 1.3; margin: 0 0 6px; text-align: left; }
.cubig-proof .trust-grid--certs .ti-body,
.cubig-proof .trust-grid--awards .ti-body { text-align: left; font-size: 13.5px; color: var(--text2); line-height: 1.55; }
.cubig-proof .trust-grid--awards .ti-meta { margin-bottom: 6px; }
/* 수상은 종류가 섞여 있어 배지 아래·제목 위에 카테고리 eyebrow 표기 (인증은 전부 인증이라 생략) */
.cubig-proof .trust-grid--awards .ti-icon { font-family: var(--mono); font-size: 9.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--c-accent-violet-text, #6F50CC); margin-bottom: 6px; }
.cubig-proof .trust-grid--awards .ti-body { font-size: 13.5px; color: var(--text2); line-height: 1.55; }
/* 흰 카드 3종(특허 칩 / 연구 / 수상) eyebrow 톤 통일 — 9.5px·자간·진한 보라 */
.cubig-proof .trust-grid--research .ti-icon { font-size: 9.5px; letter-spacing: .08em; color: var(--c-accent-violet-text, #6F50CC); }
/* 특허 카드 = 흰 카드 + 하단 "특허 보기 →" 링크 (Section 03 한정) · 연구 논문 카드도 동일 스타일 공유 */
.cubig-proof .trust-grid--patents,
.cubig-proof .trust-grid--research { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
@media (max-width: 980px) { .cubig-proof .trust-grid--patents, .cubig-proof .trust-grid--research { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cubig-proof .trust-grid--patents, .cubig-proof .trust-grid--research { grid-template-columns: 1fr; } }
.cubig-proof .trust-grid--patents .trust-item,
.cubig-proof .trust-grid--research .trust-item { background: var(--c-bg-white, #fff); border: 1px solid rgba(28,28,28,.05); border-radius: 14px; box-shadow: 0 2px 6px rgba(28,28,28,.05), 0 14px 34px rgba(28,28,28,.09); padding: 24px; display: flex; flex-direction: column; transition: border-color .15s, box-shadow .15s, transform .15s; }
.cubig-proof .trust-grid--patents .trust-item:hover,
.cubig-proof .trust-grid--research .trust-item:hover { border-color: rgba(138,119,224,.4); box-shadow: 0 4px 10px rgba(28,28,28,.06), 0 20px 46px rgba(28,28,28,.14); transform: translateY(-2px); }
/* 위계: 제목+설명 = 상단 묶음 / 특허번호·저자 메타 = 하단 정렬(구분선 footer) */
/* 상단 그룹(칩·제목·본문)은 자연 높이로 위 정렬, 하단 그룹(헤어라인·메타)은 margin-top:auto로 바닥 정렬.
   → 본문과 헤어라인 사이 간격만 카드별로 늘어나 행 높이를 맞춘다. 제목이 과하게 길 때만 line 캡. */
.cubig-proof .trust-grid--patents h4,
.cubig-proof .trust-grid--research h4 { order: 1; margin-bottom: 13px; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden; }
.cubig-proof .trust-grid--patents .ti-body,
.cubig-proof .trust-grid--research .ti-body { order: 2; margin-bottom: 26px; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden; }
.cubig-proof .trust-grid--patents .ti-meta,
.cubig-proof .trust-grid--research .ti-meta { order: 3; margin-top: auto; margin-bottom: 0; padding-top: 18px; border-top: 1px solid var(--line); }
.cubig-proof .trust-grid--patents .ti-link { order: 4; }
/* 섹션 전체 더보기 — 초기 6개만 노출 */
.cubig-proof .trust-grid--patents.is-collapsed .trust-item:nth-child(n+7),
.cubig-proof .trust-grid--research.is-collapsed .trust-item:nth-child(n+7) { display: none; }
/* 모바일(1열): 연구 논문은 접힘 시 4개만 (JS LIMIT 4와 맞춤) */
@media (max-width: 620px) { .cubig-proof .trust-grid--research.is-collapsed .trust-item:nth-child(n+5) { display: none; } }
/* 접힘 상태: 6장에서 깔끔하게 끊고 "더보기 (+N)" 버튼으로 안내(페이드 오버레이 제거 — 유령카드/버튼 가림 방지). */
.cubig-proof .patent-more-wrap { display: flex; justify-content: center; margin-top: 32px; }
.cubig-proof .patent-more { display: inline-flex; align-items: center; gap: 8px; padding: 11px 24px; border: 1px solid var(--line); border-radius: 999px; background: var(--c-bg-white, #fff); font-family: var(--sans); font-size: 14px; font-weight: 500; color: var(--text); cursor: pointer; transition: border-color .15s, color .15s, box-shadow .15s; }
.cubig-proof .patent-more:hover { border-color: var(--c-accent-violet, #8A77E0); color: var(--c-accent-violet-text, #6F50CC); box-shadow: 0 4px 14px rgba(28,28,28,.06); }
/* 레퍼런스 톤: 아이콘(다크 사각) + 상태 칩 헤더 */
.cubig-proof .trust-grid--patents .ti-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 30px; margin-bottom: 14px; }
.cubig-proof .trust-grid--patents .ti-arrow { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 999px; border: 1px solid var(--line); background: var(--c-bg-white, #fff); color: var(--c-accent-violet-text, #6F50CC); flex: 0 0 auto; transition: border-color .15s, background .15s; }
.cubig-proof .trust-grid--patents .ti-arrow svg { width: 15px; height: 15px; }
.cubig-proof .trust-grid--patents .ti-arrow:hover { border-color: var(--c-accent-violet, #8A77E0); background: rgba(138,119,224,.08); }
.cubig-proof .trust-grid--patents .ti-glyph { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 11px; background: rgba(138,119,224,.12); color: var(--c-accent-violet-text, #6F50CC); flex: 0 0 auto; }
.cubig-proof .trust-grid--patents .ti-glyph svg { width: 19px; height: 19px; }
.cubig-proof .trust-grid--patents .ti-chip { font-family: var(--mono); font-size: 9.5px; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.cubig-proof .trust-grid--patents .ti-chip.is-reg { color: var(--c-accent-violet-text, #6F50CC); }
.cubig-proof .trust-grid--patents .ti-chip.is-pending { color: var(--text3); }
/* 공개 특허만 상태 칩이 링크 — 호버 밑줄 + 작은 ↗로 클릭 가능 표시. 미공개 Pending은 plain 텍스트. */
.cubig-proof .trust-grid--patents .ti-chip-link { display: inline-flex; align-items: center; gap: 2px; color: inherit; text-decoration: none; cursor: pointer; white-space: nowrap; vertical-align: bottom; }
.cubig-proof .trust-grid--patents .ti-chip-link .ti-chip-arrow { display: inline-block; width: 12px; height: 12px; opacity: .9; }
.cubig-proof .trust-grid--patents .ti-chip-link:hover { text-decoration: underline; }
/* footer 링크 (상단 구분선) */
.cubig-proof .trust-grid--patents .ti-link { display: flex; align-items: center; gap: 6px; width: 100%; margin-top: 12px; font-family: var(--sans); font-size: 13px; font-weight: 500; color: var(--c-accent-violet-text, #6F50CC); text-decoration: none; transition: gap .15s; }
.cubig-proof .trust-grid--patents .ti-link:hover { gap: 10px; }

/* Logo strip variant (for customers / partners) */
.cubig-proof .logo-strip { display: flex; flex-wrap: wrap; gap: 10px; }
.cubig-proof .logo-pill { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; background: var(--bg2); border: 1px solid var(--line); border-radius: 6px; font-family: var(--mono); font-size: 11.5px; color: var(--text2); }
.cubig-proof .logo-pill.tbd { border-style: dashed; color: var(--text3); }
/* 파트너 = 2열 풀폭 그라디언트 카드 + 가운데 아이콘형 로고 (모바일도 2열, 미디어쿼리는 base 뒤에) */
.cubig-proof .partner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 8px; }
.cubig-proof .partner-tile { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 13px; padding: 44px 28px; border-radius: 16px; border: 1px solid rgba(28,28,28,.06); background-color: var(--c-bg-white, #fff); background-image: radial-gradient(460px 200px at 50% 0%, rgba(138,119,224,.16), transparent 72%); text-decoration: none; }
.cubig-proof .partner-icon { display: flex; align-items: center; justify-content: center; width: 68px; height: 68px; border-radius: 18px; background: var(--c-bg-white, #fff); border: 1px solid rgba(28,28,28,.06); box-shadow: 0 4px 14px rgba(28,28,28,.08); }
.cubig-proof .partner-icon img { max-width: 42px; max-height: 42px; width: auto; object-fit: contain; }
.cubig-proof .partner-name { font-family: var(--sans); font-weight: 600; font-size: 15px; color: var(--c-text-heading, #1c1c1c); text-align: center; }
.cubig-proof .partner-cap { font-family: var(--mono); font-size: 11px; letter-spacing: .04em; color: var(--text3); text-align: center; }
/* 모바일에서도 2열 유지 — 타일·아이콘·글자 축소 (base 규칙 뒤에 와야 적용) */
@media (max-width: 720px) { .cubig-proof .partner-grid { gap: 12px; } .cubig-proof .partner-tile { padding: 26px 12px; gap: 10px; } .cubig-proof .partner-icon { width: 54px; height: 54px; } .cubig-proof .partner-icon img { max-width: 34px; max-height: 34px; } .cubig-proof .partner-name { font-size: 13.5px; } .cubig-proof .partner-cap { font-size: 10px; letter-spacing: .02em; } }

/* ═══════════════════════════════════
   FAQ
═══════════════════════════════════ */
/* FAQ = 2단(좌 타이틀 sticky / 우 아코디언) */
.cubig-proof .faq-layout { display: grid; grid-template-columns: 320px 1fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.cubig-proof .faq-aside { position: sticky; top: 96px; }
.cubig-proof .faq-aside .h2 { margin-top: 8px; }
.cubig-proof .faq-aside .h2 em { color: var(--c-text-heading, #1c1c1c); }
.cubig-proof .faq-intro { font-size: 14.5px; color: var(--text2); line-height: 1.6; margin-top: 16px; max-width: 280px; }
@media (max-width: 860px) { .cubig-proof .faq-layout { grid-template-columns: 1fr; gap: 24px; } .cubig-proof .faq-aside { position: static; } }
.cubig-proof .faq-list { margin: 0; }
.cubig-proof .faq-item { border-bottom: 1px solid var(--line); }
.cubig-proof .faq-item:first-child { border-top: 1px solid var(--line); }
/* 아코디언 = syntitan 스타일: +/− 토글(보라), 16px sans, 부드러운 max-height 전개 */
.cubig-proof .faq-q { padding: 22px 4px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--sans); font-size: 16px; font-weight: 600; color: var(--c-text-heading, #1c1c1c); letter-spacing: -0.005em; }
.cubig-proof .faq-q:hover { color: var(--brand-purple); }
.cubig-proof .faq-q-toggle { display: none; }
.cubig-proof .faq-q::after { content: "+"; flex: 0 0 22px; font-size: 22px; font-weight: 400; line-height: 1; color: var(--brand-purple); text-align: center; transition: transform .2s ease; }
.cubig-proof .faq-item.open .faq-q::after { content: "\2212"; }
.cubig-proof .faq-a { max-height: 0; overflow: hidden; padding: 0 4px; font-size: 15px; color: var(--text2); line-height: 1.6; max-width: 760px; transition: max-height .25s ease; }
.cubig-proof .faq-item.open .faq-a { max-height: 500px; padding-bottom: 22px; }

/* ═══════════════════════════════════
   FINAL CTA
═══════════════════════════════════ */
/* 최종 CTA = 전 페이지 통일 배너(radial 보라 글로우 + 흰 배경, "5페이지 배너 통일" 규칙) */
.cubig-proof .final-cta { border-top: 1px solid var(--line); background: radial-gradient(900px 500px at 50% 0%, rgba(138,119,224,.30), transparent 70%), var(--c-bg-white, #fff); padding: clamp(64px, 8vw, 104px) var(--container-px, 32px); }
/* 헤어라인을 final-cta로 옮김 — FAQ(마지막 trust-section)는 자기 reveal 때 일찍 떠서 헤어라인만 덜렁 남았음.
   FAQ border-bottom 제거 → 헤어라인이 final-cta의 border-top으로 final-cta와 함께 등장. */
.cubig-proof .trust-section:has(.faq-layout) { border-bottom: 0; }
.cubig-proof .final-inner { max-width: var(--container-max, 1280px); margin: 0 auto; text-align: center; }
.cubig-proof .final-h { font-family: var(--serif); font-size: clamp(28px, 3.4vw, 42px); font-weight: 600; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 16px; color: var(--c-text-heading, #1c1c1c); }
.cubig-proof .final-h em { font-style: normal; color: var(--c-text-heading, #1c1c1c); }
.cubig-proof .final-cta p { font-size: 19px; color: var(--text2); max-width: 640px; margin: 0 auto 40px; line-height: 1.55; }
.cubig-proof .cta-row { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
/* 최종 CTA 버튼 = syntitan 하단 배너와 동일 실측값(15px / padding 10×18 / radius 6px-ibm강제) */
.cubig-proof .final-cta .btn { font-size: 15px; padding: 10px 18px; }
.cubig-proof .btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 26px; border-radius: 10px; font-size: 14.5px; font-weight: 600; font-family: var(--sans); border: 1px solid transparent; transition: all .15s; }
.cubig-proof .btn-primary { background: var(--c-accent-violet, #8A77E0); color: #fff; }
.cubig-proof .btn-primary:hover { background: var(--c-accent-violet-strong, #6f5cd6); }
.cubig-proof .btn-secondary { background: transparent; color: var(--c-text-dark, #1c1c1c); border-color: var(--c-border-interactive, rgba(28,28,28,0.4)); }
.cubig-proof .btn-secondary:hover { border-color: var(--text); }

@media (max-width: 800px) {
  .cubig-proof .section { padding: 64px var(--container-px, 32px); }
  .cubig-proof .hero-inner { padding: 100px var(--container-px, 32px) 56px; }
  .cubig-proof .hero-cols { grid-template-columns: 1fr; gap: 40px; }
  .cubig-proof .hero-stats { max-width: 100%; }
  .cubig-proof .hero-stats { max-width: 100%; }
  .cubig-proof .hero-stats { max-width: 100%; }
  .cubig-proof .ev-rows { grid-template-columns: 1fr; column-gap: 0; }
  .cubig-proof .ev-row:has(.diff-l), .cubig-proof .ev-row:has(.reproduce-l) { grid-template-columns: 1fr; row-gap: 5px; }
  .cubig-proof .filter-inner { padding: 14px var(--container-px, 32px); }
  .cubig-proof .filter-wrap { top: 54px; }
}
