/* ============================================================
   Sapie-Guardian Landing — page styles
   디자인 토큰: tokens/index.css → theme.css 만 참조 (raw 색 리터럴 없음)
   ============================================================ */
/* 호스트 이식: 모든 규칙을 .guardian-v2 래퍼로 스코핑(전역 누출 방지). 본문은 <div class="contents guardian-v2"> 안에 들어간다. */
/* box-sizing: border-box 강제. theme.css 의 `.guardian-v2 *:not(svg, svg *){ all:revert }`(특이도 0,1,2)가
   box-sizing 까지 UA 기본값(content-box)으로 되돌려, `width:100% + padding-inline:gutter` 컨테이너들이
   거터 폭만큼 뷰포트를 넘쳐 overflow-x:clip 에 잘리던 문제 → 같은 특이도(0,1,2)로 맞추고 뒤에 로드돼 승리. */
.guardian-v2,
.guardian-v2 *:not(svg, svg *),
.guardian-v2 *::before,
.guardian-v2 *::after { box-sizing: border-box; }
.guardian-v2 {
  /* 래퍼 본인은 .guardian-v2 * { all: revert } 적용대상이 아니므로 호스트 *{font-size/letter-spacing}을 명시적으로 덮는다 */
  font-size: 16px;
  letter-spacing: normal;
  margin: 0;
  background: var(--color-bg-page);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  /* overflow-x: hidden 은 sticky 파괴(overflow-y가 auto로 계산돼 .guardian-v2가 스크롤 컨테이너가 됨).
     clip 은 시각적으로 잘라내되 스크롤 컨테이너를 만들지 않아 내부 position:sticky 가 정상 동작. */
  overflow-x: clip;
}
.guardian-v2 h1, .guardian-v2 h2, .guardian-v2 h3 { margin: 0; font-family: var(--font-heading); line-height: 1.25; }
.guardian-v2 p { margin: 0; }
.guardian-v2 a { color: inherit; text-decoration: none; }
.guardian-v2 img { max-width: 100%; display: block; }

/* ---- 시각적으로는 숨기되 스크린리더/SEO에는 노출 (헤딩 계층 보완용) ---- */
.guardian-v2 .visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---- 공통 콘텐츠 컨테이너 (모든 밴드 동일 폭/여백) ---- */
.guardian-v2 .intro-wrap, .guardian-v2 .grid6, .guardian-v2 .rows, .guardian-v2 .deploy, .guardian-v2 .stats__grid, .guardian-v2 .cta__dashboard, .guardian-v2 .aisec__grid {
  width: 100%; margin-inline: auto; padding-inline: var(--gutter);
  max-width: calc(var(--container) + 2 * var(--gutter));
}
.guardian-v2 .stats__grid, .guardian-v2 .aisec__grid { max-width: calc(var(--container-narrow) + 2 * var(--gutter)); }

/* ---- Buttons (공통 컴포넌트) ---- */
.guardian-v2 .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--spacing-8);
  font-weight: 700; font-size: 15px; cursor: pointer;
  padding: 14px 26px; border-radius: var(--radius-full);
  color: var(--color-text-primary); white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.guardian-v2 .btn:hover { transform: translateY(-2px); }
.guardian-v2 .btn--primary { background: var(--color-brand-primary); box-shadow: var(--shadow-cta); }
.guardian-v2 .btn--primary:hover { background: var(--color-brand-secondary); }
.guardian-v2 .btn--ghost { background: var(--color-bg-chip); box-shadow: var(--inset-glow); }
.guardian-v2 .btn--pill { background: var(--grad-brand-soft);
  border: 2px solid var(--color-border-brand-soft); box-shadow: var(--inset-glow);
  color: var(--color-text-brand-soft); font-size: 20px; }
.guardian-v2 .btn--lg { padding: 18px 40px; font-size: 17px; }

/* 호버 시 화살표(↗)가 나타나며 버튼 폭이 자연스럽게 확장 — 모든 도입 문의 버튼 공통.
   자식 max-width 보간 → width:auto 버튼이 부드럽게 확장. a.is-reveal 로 .hbtn/.btn gap 무력화. */
.guardian-v2 a.is-reveal { gap: 0; }
.guardian-v2 .btn-reveal {
  display: inline-flex; align-items: center; overflow: hidden;
  max-width: 0; margin-left: 0; opacity: 0;
  transition: max-width .35s cubic-bezier(.2,.7,.2,1),
              margin-left .35s cubic-bezier(.2,.7,.2,1),
              opacity .28s ease;
}
.guardian-v2 .btn-reveal__ico {                       /* 선명한 ↗ (mask + currentColor → 버튼 글자색을 따라감)
   data URI 인라인: file://·실서버 모두에서 동작(외부 SVG는 file:// CORS로 mask 차단됨) */
  width: 1em; height: 1em; flex: none; display: block;
  background-color: currentColor;
  --ico-arrow-ur: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23000'%20stroke-width='2.4'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cline%20x1='7'%20y1='17'%20x2='17'%20y2='7'/%3E%3Cpolyline%20points='8%207%2017%207%2017%2016'/%3E%3C/svg%3E");
  -webkit-mask: var(--ico-arrow-ur) center / contain no-repeat;
          mask: var(--ico-arrow-ur) center / contain no-repeat;
}
/* 제품소개 다운로드 버튼: ↗ 대신 다운로드(⬇) 아이콘으로 mask 교체 — 슬라이드 동작은 공통 */
.guardian-v2 .btn-reveal__ico--dl {
  --ico-arrow-ur: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23000'%20stroke-width='2.4'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cline%20x1='12'%20y1='3'%20x2='12'%20y2='15'/%3E%3Cpolyline%20points='7%2010%2012%2015%2017%2010'/%3E%3Cpath%20d='M5%2016v2a2%202%200%200%200%202%202h10a2%202%200%200%200%202-2v-2'/%3E%3C/svg%3E");
}
.guardian-v2 .is-reveal:hover .btn-reveal,
.guardian-v2 .is-reveal:focus-visible .btn-reveal { max-width: 1.4em; margin-left: .5em; opacity: 1; }
@media (prefers-reduced-motion: reduce) { .guardian-v2 .btn-reveal { transition: none; } }

/* ---- Header / Footer: saltware.css 로 이관 (saltware.co.kr 공통 헤더·풋터) ---- */

/* ---- Section head (Figma node 3390:2955) ----
   원본: 제목 NanumSquare Neo ExtraBold 40px #ebebeb + text-shadow,
        부제 Medium 20px #d9d9d9 한 줄. 폰트 통일(NanumSquare Neo)로 영문 폭이 넓어
        760px에선 부제가 "adoption." 만 둘째 줄로 깨져 → 폭을 원본(≈985px)에 맞춰 넓힘. */
.guardian-v2 .section-head { text-align: center; max-width: 1140px; margin: 0 auto 48px; padding-inline: 24px; }
.guardian-v2 .section-head h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; line-height: 1.5;
  color: var(--color-text-strong); text-shadow: 0 11px 21.4px rgba(65, 62, 62, .8); }
.guardian-v2 .section-head p { margin-top: 8px; font-size: clamp(16px, 1.6vw, 20px); font-weight: 500;
  line-height: 1.5; color: var(--color-text-secondary); text-wrap: balance; }

/* ---- Stats ---- */
.guardian-v2 .stats { padding-block: clamp(60px, 9vw, 120px); }
.guardian-v2 .stats__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr)); gap: 28px; }
.guardian-v2 .stat-card { position: relative; overflow: hidden; padding: 36px;
  border-radius: var(--radius-xl);
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border-subtle); }
.guardian-v2 .stat-card__label { font-size: clamp(22px, 2.4vw, 30px); font-weight: 800; color: var(--color-text-strong); }
.guardian-v2 .stat-card__label small { color: var(--color-text-muted); font-size: 14px; font-weight: 400; }
.guardian-v2 .stat-card__big { font-family: var(--font-numeric);
  font-weight: 500; font-size: clamp(46px, 6.4vw, 72px); margin: 18px 0 4px; line-height: 1; }
.guardian-v2 .stat-card__big span { font-size: .5em; }
.guardian-v2 .stat-card__big .stat-card__sign { font-size: .5em; font-weight: 500; }
.guardian-v2 .stat-card__big--cyan { color: var(--color-text-cyan); text-shadow: var(--text-glow-cyan); }
.guardian-v2 .stat-card__big--red { color: var(--color-text-error); text-shadow: var(--text-glow-error); }
/* 곡선 영역 차트 (인라인 SVG) */
.guardian-v2 .stat-card__chart { position: relative; height: 110px; margin: 8px 0 26px; overflow: visible; }
.guardian-v2 .stat-card__chart .stat-chart { width: 100%; height: 100%; display: block;
  filter: drop-shadow(0 0 4px var(--chart-glow, transparent))
          drop-shadow(0 0 14px var(--chart-glow, transparent)); }
.guardian-v2 .stat-card__chart--blue { --chart-glow: var(--chart-blue-line); }
.guardian-v2 .stat-card__chart--red  { --chart-glow: var(--chart-red-line); }
/* ── stat 차트 진입 애니메이션 (JS가 .is-armed 부여 시에만 활성) ── */
.guardian-v2 .stat-chart__line { transition: stroke-dashoffset 1.3s cubic-bezier(.2,.7,.2,1); }
.guardian-v2 .stat-chart__fill { transition: transform .9s cubic-bezier(.2,.7,.2,1) .15s, opacity .6s ease;
  transform-box: fill-box; transform-origin: bottom; }
/* opt-in 초기 숨김: JS 미동작/reduced-motion이면 이 규칙이 안 붙어 정적 차트 노출.
   라인은 pathLength="1" 정규화 → dash를 비율(0~1)로 다뤄 non-scaling-stroke + 가로 스트레치
   환경에서도 끝까지 정확히 그려진다(유저/화면 좌표 길이 불일치 회피). */
.guardian-v2 .stat-card__chart.is-armed .stat-chart__fill { transform: scaleY(0); opacity: 0; }
.guardian-v2 .stat-card__chart.is-armed.is-inview .stat-chart__fill { transform: none; opacity: 1; }
.guardian-v2 .stat-card__chart.is-armed .stat-chart__line { stroke-dasharray: 1; stroke-dashoffset: 1; }
.guardian-v2 .stat-card__chart.is-armed.is-inview .stat-chart__line { stroke-dashoffset: 0; }
@media (prefers-reduced-motion: reduce) {
  .guardian-v2 .stat-chart__line, .guardian-v2 .stat-chart__fill { transition: none; }
}
.guardian-v2 .stat-card__meta { display: flex; gap: 48px; margin: 0; }
.guardian-v2 .stat-card__meta dt { font-family: var(--font-heading); font-size: 15px; font-weight: 700; color: var(--color-text-secondary); }
.guardian-v2 .stat-card__meta dd { font-family: var(--font-heading); margin: 8px 0 0; font-weight: 700; font-size: 35px; color: var(--color-text-primary); }
.guardian-v2 .stat-card__meta dd span { font-size: 20px; }
.guardian-v2 .stat-card__source { position: absolute; right: 36px; bottom: 22px; margin: 0;
  font-size: 11px; color: var(--color-text-muted); text-align: right; letter-spacing: .2px; }

/* ---- AI 보안 프레임워크 (node 3390:2900) ---- */
.guardian-v2 .aisec { padding-block: clamp(40px, 7vw, 90px); }
.guardian-v2 .aisec__head { margin-bottom: clamp(28px, 4vw, 50px); }
.guardian-v2 .aisec__title { text-align: left; font-weight: 800; font-size: clamp(28px, 4vw, 40px);
  line-height: 1.5; color: var(--color-text-primary); text-shadow: var(--shadow-text); }
/* 부제는 우측 컬럼 맨 위(카드 행 시작선) — 이 높이만큼 방패 카드가 내려가 stagger 형성.
   원본(node 3390:2903)=text/secondary #d9d9d9 전체 불투명. faded(50%)는 원본보다 흐려 보정. */
.guardian-v2 .aisec__sub { font-size: clamp(15px, 1.5vw, 20px); line-height: 1.5; font-weight: 300;
  color: var(--color-text-secondary); margin: 0 0 clamp(12px, 1.4vw, 20px); }
/* 2열 staggered 베ント (Figma node 3390:2900) */
.guardian-v2 .aisec__cols { display: flex; gap: clamp(20px, 3.5vw, 70px); align-items: flex-start; }
.guardian-v2 .aisec__col { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; }
.guardian-v2 .aisec__col--left  { gap: clamp(24px, 3.4vw, 66px); }
.guardian-v2 .aisec__col--right .aicard--shield { margin-bottom: clamp(24px, 3.4vw, 56px); }
/* 카드 공통 */
.guardian-v2 .aicard { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius-lg); }
.guardian-v2 .aicard--visual { background: var(--color-bg-violet); }
.guardian-v2 .aicard--visual img { width: 100%; display: block; }
.guardian-v2 .aicard--text { background: var(--color-bg-surface); padding: clamp(28px, 3vw, 45px);
  display: flex; flex-direction: column; }
.guardian-v2 .aicard--a { min-height: 330px; gap: 16px; }
.guardian-v2 .aicard--d { min-height: 330px; gap: 16px; }
.guardian-v2 .aicard__step { font-size: 12px; color: var(--color-text-tertiary); letter-spacing: .2px; }
.guardian-v2 .aicard__steprow { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.guardian-v2 .aicard__note { font-size: 12px; color: var(--color-text-tertiary); white-space: nowrap; }
.guardian-v2 .aicard--a .aicard__title, .guardian-v2 .aicard--d .aicard__title { margin-top: auto; }
.guardian-v2 .aicard--a .aicard__list { margin-top: 8px; }
.guardian-v2 .aicard__title { font-weight: 800; font-size: clamp(22px, 2.4vw, 30px);
  color: var(--color-text-strong); }
.guardian-v2 .aicard__list { margin: 0; padding-left: 1.4em; display: flex; flex-direction: column; gap: 6px;
  font-family: var(--font-nanum); font-weight: 300; /* NanumSquare Neo로 통일 */
  font-size: clamp(15px, 1.4vw, 18px); line-height: 1.5; color: var(--color-text-primary); }
.guardian-v2 .aicard__body { font-family: var(--font-nanum); font-weight: 300; /* NanumSquare Neo로 통일 */
  font-size: clamp(15px, 1.4vw, 18px); line-height: 1.5; color: var(--color-text-primary); }

/* ---- Intro card (node 3390:2980) ---- */
.guardian-v2 .intro-wrap { padding-block: clamp(40px,7vw,90px); }
.guardian-v2 .intro-card { display: flex; gap: clamp(24px,4vw,112px); align-items: center; justify-content: space-between;
  background: var(--color-bg-elevated); border-radius: var(--radius-lg);
  padding: clamp(28px,4vw,52px); overflow: hidden;
  box-shadow: var(--inset-edge); }
.guardian-v2 .intro-card__copy { flex: 0 1 580px; align-self: stretch; min-height: 300px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 40px; }
.guardian-v2 .intro-card__text { display: flex; flex-direction: column; gap: 20px; }
.guardian-v2 .intro-card__title { font-weight: 800; font-size: clamp(19px,1.8vw,25px); line-height: 1.5;
  color: var(--color-text-strong); text-shadow: var(--shadow-text); }
.guardian-v2 .intro-card__sub { font-weight: 300; font-size: clamp(14px,1.3vw,18px); line-height: 1.5;
  color: var(--color-text-secondary-faded); }
.guardian-v2 .intro-card__badge { align-self: flex-start; display: inline-flex; align-items: center; justify-content: center;
  height: 58px; padding: 0 var(--spacing-32); border-radius: var(--radius-full);
  border: 2px solid var(--color-border-brand-soft);
  background: var(--grad-brand-soft);
  color: var(--color-text-brand-soft); font-weight: 800; font-size: 20px; white-space: nowrap;
  box-shadow: var(--inset-glow); }
.guardian-v2 .intro-card__visual { flex: 0 1 576px; min-width: 0; }
.guardian-v2 .intro-card__visual img { width: 100%; border-radius: var(--radius-md); }

/* ---- Feature grid (6) — node 3390:3006 ---- */
.guardian-v2 .grid6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px,2.5vw,48px);
  padding-block: clamp(20px,3vw,40px); }
.guardian-v2 .fit-section { padding-block: clamp(60px, 9vw, 120px); }
.guardian-v2 .grid6--fit { padding-top: 0; }
/* 6개 기능 카드 — 의사 3D 파랄럭스 + 부유 + 유리 광택으로 "살아있는" 느낌.
   각 카드가 마우스 방향으로 입체적으로 기울고(JS가 --px/--py 주입), 평소엔
   은은히 떠오르내리며, 빛이 표면을 스윽 지나간다. */
.guardian-v2 .fcard { position: relative; height: 320px; overflow: hidden; border-radius: var(--radius-lg);
  background: var(--color-bg-base); border: 1px solid var(--color-border-dark);
  transform: perspective(900px) rotateX(calc(var(--py, 0) * -6deg)) rotateY(calc(var(--px, 0) * 6deg));
  transition: background-color .2s, box-shadow .2s, border-color .2s, transform .25s ease-out;
  animation: fcard-float 6.2s ease-in-out infinite;
  will-change: transform; }
@keyframes fcard-float {
  0%, 100% { translate: 0 0;      scale: 1;     }
  50%      { translate: 0 -1.2%;  scale: 1.012; }
}
.guardian-v2 .fcard:hover { background: var(--color-bg-elevated); border-color: transparent;
  background-image: var(--glow-radial-card);
  box-shadow: var(--inset-edge-glow); }
/* 유리 광택 스윕 — 평소엔 숨고, 호버 시 한 번만 스윽 지나감 (6개 동시 반짝임 방지) */
.guardian-v2 .fcard::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: linear-gradient(115deg,
              transparent 36%,
              var(--overlay-white-18) 48%,
              var(--overlay-white-05) 54%,
              transparent 66%);
  background-size: 250% 100%; background-position: 210% 0;
  mix-blend-mode: screen; opacity: 0;
}
.guardian-v2 .fcard:hover::after { animation: fcard-glint 1.1s ease-out; }
@keyframes fcard-glint {
  0%   { background-position: 210% 0; opacity: 0; }
  15%  { opacity: 1; }
  100% { background-position: -60% 0; opacity: 0; }
}
/* 카드별 부유 주기/위상 분산 — 동기화되지 않게 */
.guardian-v2 .fcard:nth-child(1) { animation-duration: 6.2s; animation-delay: -0.4s; }
.guardian-v2 .fcard:nth-child(2) { animation-duration: 5.6s; animation-delay: -2.1s; }
.guardian-v2 .fcard:nth-child(3) { animation-duration: 6.8s; animation-delay: -1.2s; }
.guardian-v2 .fcard:nth-child(4) { animation-duration: 5.9s; animation-delay: -3.3s; }
.guardian-v2 .fcard:nth-child(5) { animation-duration: 6.5s; animation-delay: -0.9s; }
.guardian-v2 .fcard:nth-child(6) { animation-duration: 7.1s; animation-delay: -2.7s; }
@media (prefers-reduced-motion: reduce) {
  .guardian-v2 .fcard { animation: none; transform: none; }
  .guardian-v2 .fcard::after, .guardian-v2 .fcard:hover::after { animation: none; opacity: 0; }
}
.guardian-v2 .fcard__icon { position: absolute; top: clamp(12px,1.6vw,22px); right: clamp(12px,1.4vw,20px);
  height: auto; pointer-events: none; }
/* 카드별 아이콘 실측 비율 (Figma px ÷ 카드폭 ~477) */
.guardian-v2 .fcard:nth-child(1) .fcard__icon { width: 27%; }  /* 민감정보 보호 130px */
.guardian-v2 .fcard:nth-child(2) .fcard__icon { width: 21%; }  /* 조직 통제 99px */
.guardian-v2 .fcard:nth-child(3) .fcard__icon { width: 27%; }  /* 규제 준수 128px */
.guardian-v2 .fcard:nth-child(4) .fcard__icon { width: 24%; }  /* 정책제어 116px */
.guardian-v2 .fcard:nth-child(5) .fcard__icon { width: 23%; }  /* 보안관리 109px */
.guardian-v2 .fcard:nth-child(6) .fcard__icon { width: 21%; }  /* 운영 복잡도 101px */
.guardian-v2 .fcard__body { position: absolute; left: clamp(22px,3vw,40px); right: clamp(22px,3vw,40px); bottom: clamp(28px,4vw,42px);
  display: flex; flex-direction: column; gap: 16px; }
.guardian-v2 .fcard__title { font-weight: 800; font-size: clamp(20px,2vw,25px); color: var(--color-text-primary); }
.guardian-v2 .fcard__desc { font-weight: 300; font-size: clamp(14px,1.3vw,18px); line-height: 1.5; color: var(--color-text-secondary); } /* 원본 Inter Regular — NanumSquare는 두꺼워 Light(300)로 보정. 크기 18px↑는 한글 폭 초과로 "로" 줄깨짐 → 기존 clamp 유지 */

/* ---- Feature rows (node 3390:2352) ---- */
/* Sticky 카드 쌓기(Stacked): 각 카드가 상단에 pin되고 다음 카드가 위로 겹쳐 쌓인다.
   --i(0~4, index.html 인라인)로 sticky top을 계단식 증가 → 쌓일 때 윗부분이 살짝 보임(peek).
   가려지는 카드는 feature-rows.js가 --stack-scale/--stack-dim 을 주입해 축소·감광.
   등장 애니메이션(.is-in)·스택 변환은 모두 prefers-reduced-motion / ≤860px 에서 비활성화. */
.guardian-v2 .rows { display: flex; flex-direction: column;
  padding-block: clamp(40px,6vw,80px); }
.guardian-v2 .frow { display: grid; grid-template-columns: 382px 1fr; gap: clamp(28px,3.5vw,48px); align-items: stretch;
  padding: clamp(24px,3vw,40px); border-radius: var(--radius-xl);
  background: var(--color-bg-base); border: 1px solid var(--color-border-dark);
  position: sticky;
  top: calc(var(--stack-top, 90px) + var(--i, 0) * clamp(10px,1.4vw,18px));
  z-index: var(--i, 0); /* 나중 카드(높은 --i)가 위에 페인트되어 이전 카드를 확실히 occlude */
  margin-bottom: clamp(20px,4vh,60px);
  transform-origin: center top;
  transform: scale(var(--stack-scale, 1)) translateY(var(--enter-y, 0));
  filter: brightness(var(--stack-dim, 1));
  box-shadow: var(--shadow-dashboard);
  opacity: var(--enter-o, 1);
  transition: transform .3s ease, filter .3s ease, opacity .5s ease; }
/* 등장 전 초기 상태: 아래로 40px 내려가 투명 → IntersectionObserver가 .is-in 부여 시 제자리/불투명 */
.guardian-v2 .rows .frow:not(.is-in) { --enter-y: 40px; --enter-o: 0; }
.guardian-v2 .frow__media { border-radius: var(--radius-lg); overflow: hidden; }
.guardian-v2 .frow__media img { width: 100%; display: block; }
.guardian-v2 .frow__body { display: flex; flex-direction: column; padding-block: 20px; }
.guardian-v2 .frow__title { font-weight: 800; font-size: clamp(20px,2.2vw,28px); color: var(--color-text-primary); }
.guardian-v2 .frow__desc { margin: 16px 0 0; color: var(--color-text-secondary); font-size: clamp(14px,1.3vw,17px); line-height: 1.6; font-weight: 300; }
.guardian-v2 .chips { display: flex; flex-wrap: wrap; gap: 20px; }
.guardian-v2 .frow .chips { margin-top: auto; }
.guardian-v2 .chips span { font-size: clamp(13px,1.2vw,15px); font-weight: 800;
  display: inline-flex; align-items: center; height: 48px; line-height: 1; padding: 0 32px; border-radius: var(--radius-full);
  border: 1px solid transparent; color: var(--color-text-primary);
  background: var(--color-bg-elevated);
  background-image: var(--glow-radial-card);
  box-shadow: var(--inset-edge-glow);
  white-space: nowrap;
  transition: background-color .2s, box-shadow .2s, border-color .2s, color .2s; }
.guardian-v2 .chips span:hover { border-color: var(--color-border-light);
  background: var(--grad-chip);
  box-shadow: var(--inset-glow); }

/* ---- Deployment options (node 3390:2534) ---- */
.guardian-v2 .deploy { display: flex; align-items: center; justify-content: space-between; gap: clamp(28px,5vw,80px);
  padding-block: clamp(50px,7vw,90px); flex-wrap: wrap; }
.guardian-v2 .deploy__copy { flex: 1 1 420px; }
.guardian-v2 .deploy__title { font-weight: 800; font-size: clamp(24px,3vw,34px); color: var(--color-text-primary); }
.guardian-v2 .deploy__desc { margin: 18px 0 28px; color: var(--color-text-secondary); font-size: clamp(14px,1.4vw,18px); line-height: 1.6; font-weight: 300; }
.guardian-v2 .deploy__cards { flex: 1 1 480px; min-width: 0; display: flex; align-items: center;
  justify-content: flex-end; gap: clamp(12px,1.6vw,24px); max-width: 586px; margin-left: auto; }

/* 카드 표면은 CSS 로 그린다(어두움 ↔ 글로우 상태 전환을 위해 색을 이미지에 굽지 않음).
   라벨은 실제 텍스트(상단), 아이콘 그래픽만 투명 PNG(중앙)로 올린다. */
.guardian-v2 .deploy-card { position: relative; flex: 0 1 270px; min-width: 0; aspect-ratio: 253 / 237;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-xl); border: 1px solid var(--color-border-subtle);
  background-color: var(--color-bg-surface); background-image: none; box-shadow: none;
  transform: scale(0.84); transform-origin: center;
  transition: transform .4s cubic-bezier(.2,.7,.2,1),
    background-color .4s ease, box-shadow .4s ease, border-color .4s ease; }
.guardian-v2 .deploy-card__label { position: absolute; top: 14%; left: 0; right: 0; text-align: center;
  font-family: var(--font-heading); font-weight: 700; font-size: clamp(15px,1.7vw,20px);
  color: var(--color-text-strong); letter-spacing: .2px; pointer-events: none; }
.guardian-v2 .deploy-card__icon { height: auto; display: block; transition: filter .4s ease; }
.guardian-v2 .deploy-card--build .deploy-card__icon { width: 30%; }   /* 서버 아이콘 ~29% */
.guardian-v2 .deploy-card--saas  .deploy-card__icon { width: 42%; }   /* 클라우드 ~42% */

/* 호버 시 카드 전체가 둥실 떠오르는 플로팅 모션 + 아이콘 브랜드 글로우 */
@keyframes deploy-card-float {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -4%; }
}
.guardian-v2 .deploy-card:hover {
  animation: deploy-card-float 1.8s ease-in-out infinite; }
.guardian-v2 .deploy-card:hover .deploy-card__icon {
  filter: drop-shadow(0 8px 16px var(--glow-brand-40)); }
@media (prefers-reduced-motion: reduce) {
  .guardian-v2 .deploy-card:hover { animation: none; }
}

/* 활성(크고 + SaaS 컬러/글로우) — 기본값은 SaaS형, 그리고 구축형 호버 시 구축형 */
.guardian-v2 .deploy-card--saas,
.guardian-v2 .deploy-card--build:hover {
  transform: scale(1);
  background-color: var(--color-bg-elevated);
  background-image: var(--glow-radial-card);
  border-color: var(--color-border-brand-soft);
  box-shadow: var(--inset-edge-glow), var(--shadow-cta); }

/* 구축형 호버 시 SaaS형은 원래 구축형처럼 작고 어두워진다 */
.guardian-v2 .deploy-card--build:hover ~ .deploy-card--saas {
  transform: scale(0.84);
  background-color: var(--color-bg-surface);
  background-image: none;
  border-color: var(--color-border-subtle);
  box-shadow: none; }

/* ---- 솔루션 도입 절차 (node 3390:2048) ---- */
.guardian-v2 .process { position: relative; overflow: hidden;
  padding-block: clamp(60px,10vw,150px); padding-inline: var(--gutter);
  background: transparent; }
/* 글로우는 별도 레이어로 분리: 추출 PNG의 검정(비-빔) 영역을 screen 합성으로
   무력화 → 섹션 자체는 투명, 파란 빔만 가산광으로 페이지 위에 뜬다(원본 동일) */
.guardian-v2 .process::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("../assets/process/bg-glow-ellipses.png"), url("../assets/process/bg-glow.png");
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  background-size: cover, cover;
  background-blend-mode: screen;
  mix-blend-mode: screen;
  /* 섹션 가장자리에서 빔을 어둠으로 페이드 → 하단(상단) 하드 경계선 제거
     (#000은 마스크 알파용 관용값; cta__dashboard·hero 마스크와 동일 패턴) */
  -webkit-mask-image: linear-gradient(180deg,
    transparent 0%, #000 12%, #000 70%, transparent 100%);
          mask-image: linear-gradient(180deg,
    transparent 0%, #000 12%, #000 70%, transparent 100%); }
.guardian-v2 .process__panel { position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  width: 100%; margin-inline: auto; max-width: var(--container-narrow);
  gap: var(--spacing-32); padding: var(--spacing-48);
  border-radius: var(--radius-xl);
  /* Figma 패널 값: 반투명 네이비 (글로우가 패널 너머로 비침) */
  background: var(--color-bg-navy-veil); }
.guardian-v2 .process__title { font-weight: 800; font-size: clamp(22px,2.6vw,30px); text-align: center;
  color: var(--color-text-strong); text-shadow: var(--shadow-text); }
.guardian-v2 .process__steps { list-style: none; margin: 0; padding: 0;
  display: flex; align-items: flex-start; justify-content: center;
  flex-wrap: wrap; gap: clamp(6px,1.4vw,24px); width: 100%; }
.guardian-v2 .pstep { display: flex; flex-direction: column; align-items: center; gap: 18px;
  flex: 0 1 140px; text-align: center; }
.guardian-v2 .pstep__icon { width: clamp(64px,6.5vw,90px); height: clamp(64px,6.5vw,90px);
  object-fit: contain; }
.guardian-v2 .pstep__label { font-size: clamp(13px,1.2vw,15px); line-height: 1.4;
  color: var(--color-text-secondary-alt); }
.guardian-v2 .pstep__arrow { display: flex; align-items: center; align-self: center; margin-top: 26px;
  opacity: .5; flex: 0 0 auto; }
.guardian-v2 .pstep__arrow img { width: 24px; height: auto; }

/* ---- CTA (faithful — node 3524:2096) ---- */
.guardian-v2 .cta { position: relative; text-align: center; overflow: hidden;
  padding: clamp(70px, 10vw, 140px) var(--gutter) clamp(80px, 12vw, 160px);
  background: var(--glow-radial-cta), var(--color-bg-page); }

/* 대시보드 (하단 AI 검색바는 dashboard.png 에 포함됨)
   png 하단에 이미 ~0.18×폭 여백이 내장되어 추가 margin 없이 Figma(≈0.16×폭)와 일치.
   png 내장 여백이 원본보다 살짝 넓어 소폭 음수로 미세 보정(0 상한이라 양수 여백 없음). */
.guardian-v2 .cta__dashboard { margin-bottom: clamp(-40px, -2.5vw, 0px); }
.guardian-v2 .cta__dashboard > img { width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-dashboard);
  /* 상단 가장자리를 검정으로 녹여 어둠에서 떠오르듯 — 테두리 라인 대신 자연스러운 페이드
     (#000은 마스크 알파용 관용값; hero-marquee 마스크와 동일 패턴) */
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 9%, #000 100%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 9%, #000 100%); }

/* ── 대시보드 캐러셀 (비행기 클릭 → 위쪽 "화면"만 슬라이드, 하단 바는 고정) ──────
   원본 dashboard.png 를 실제로 두 파일로 잘라 단순히 위/아래로 쌓는다(깨짐 없음):
     · .cta__screens 의 .cta__slide > img(dash-screens.png) = 대시보드 화면 → 가로 슬라이드
     · .cta__bar > img(dash-bar.png)                       = 검은 바·비행기·문구 → 고정
   두 이미지가 같은 가로 픽셀에서 잘려 같은 폭으로 쌓이므로 이음매가 정확하다. */
.guardian-v2 .cta__dashboard { position: relative; cursor: pointer; }

/* 슬라이드 뷰포트: 높이는 활성 슬라이드(in-flow)가 정한다. overflow:hidden 으로 좌우로
   드나드는 슬라이드를 클립. 상단 가장자리는 기존처럼 검정으로 페이드. */
.guardian-v2 .cta__screens {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 9%, #000 100%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 9%, #000 100%); }

.guardian-v2 .cta__slides { position: relative; margin: 0; padding: 0; list-style: none; }

/* 활성 슬라이드는 in-flow(relative)로 화면 높이를 정하고, 나머지는 오른쪽 밖에서 대기 →
   클릭 시 오른쪽에서 슬라이드 인, 나가는 건 왼쪽으로. */
.guardian-v2 .cta__slide {
  position: absolute; inset: 0; pointer-events: none;
  transform: translateX(100%);
  transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.guardian-v2 .cta__slide.is-active { position: relative; transform: none; pointer-events: auto; }
.guardian-v2 .cta__slide.is-leaving { transform: translateX(-100%); }
.guardian-v2 .cta__slide > img { width: 100%; display: block; }

/* 고정 하단 바 (슬라이드 안 함). 화면 바로 아래에 붙는다.
   container-type: 바 폭 기준 cqw 단위로 문구 크기를 정해 원본과 동일 비율 유지. */
.guardian-v2 .cta__bar { position: relative; container-type: inline-size; }
.guardian-v2 .cta__bar > img { width: 100%; display: block; }

/* 바에 그려진 비행기 위에 겹치는 투명 클릭 영역 (.cta__bar 기준 좌표) */
.guardian-v2 .cta__send-hotspot {
  position: absolute; right: 1%; top: 4%; width: 9%; height: 22%;
  z-index: 3; padding: 0; border: 0; background: transparent;
  border-radius: var(--radius-full); cursor: pointer; }
.guardian-v2 .cta__send-hotspot:focus-visible { outline: 2px solid var(--color-border-mint); outline-offset: 2px; }

/* 슬라이드마다 바뀌는 바 문구 — dash-bar.png 의 (지워진) 글자 자리에 겹쳐 흰 글씨로.
   원본 텍스트 측정: 좌 11.5%, 세로중심 13.5%(of bar), 글자높이 18/1433≈1.26% 폭.
   폰트는 NanumSquare Neo로 통일. */
.guardian-v2 .cta__bar-text {
  position: absolute; left: 11.5%; top: 13.5%; transform: translateY(-50%);
  z-index: 2; margin: 0; max-width: 72%;
  font-family: var(--font-nanum);
  color: #fff; font-weight: 500; font-size: 1.35cqw; letter-spacing: -.01em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  transition: opacity .25s ease; }
.guardian-v2 .cta__bar-text.is-swap { opacity: 0; }

/* ── 임시 표식 (실제 대시보드 화면 이미지가 준비되면 이 블록과 data-tint 제거) ──
   같은 dash-screens.png 라도 슬라이드마다 "화면"이 확연히 달라 보이도록 강한 색 워시. */
.guardian-v2 .cta__slide[data-tint="1"] > img { filter: hue-rotate(150deg) saturate(1.25); }
.guardian-v2 .cta__slide[data-tint="2"] > img { filter: hue-rotate(280deg) saturate(1.3) brightness(1.02); }

@media (prefers-reduced-motion: reduce) {
  .guardian-v2 .cta__slide, .guardian-v2 .cta__send-hotspot { transition: none; }
}

/* 카피 (node 3390:2897) */
/* 대시보드 이미지가 mask-image로 stacking context를 만들어 음수 마진 겹침 구간에서
   제목 위를 덮으므로, 카피/버튼을 위 레이어로 올려 텍스트가 가려지지 않게 함 */
.guardian-v2 .cta__title {
  position: relative; z-index: 1;
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.6vw, 30px); font-weight: 700; line-height: 1.9;
  color: var(--color-text-strong); text-shadow: var(--shadow-text);
  max-width: var(--container-text); margin: 0 auto; }
.guardian-v2 .cta__title b { font-weight: 800; }

/* mint 아웃라인 버튼 (node 3390:2898) */
.guardian-v2 .cta__btn {
  position: relative; z-index: 1;
  margin-top: 50px; height: 65px; padding: 0 var(--spacing-32);
  border: 2px solid var(--color-border-mint); border-radius: var(--radius-full);
  background: var(--grad-cta-btn); box-shadow: var(--inset-glow);
  color: var(--color-text-mint); font-weight: 800; font-size: 20px; }
.guardian-v2 .cta__btn:hover { transform: translateY(-2px); }

/* ---- Responsive ---- */
@media (max-width: 980px) { .guardian-v2 .grid6 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 860px) {
  .guardian-v2 .frow { grid-template-columns: 1fr;
    /* 모바일: sticky 스택 비활성화 → 일반 세로 나열로 폴백 */
    position: static; transform: none; filter: none; opacity: 1; margin-bottom: clamp(28px,5vw,40px); }
  .guardian-v2 .frow__media { max-width: 420px; }
  /* 세로 스택 시 margin-top:auto가 0이 되어 칩이 설명 바로 밑에 붙음 → 고정 간격으로 띄움. */
  .guardian-v2 .frow .chips { margin-top: clamp(18px, 3vw, 28px); }
  .guardian-v2 .intro-card { flex-direction: column; align-items: stretch; }
  /* 세로 스택 시 flex-basis(580px)가 '높이'로 작동 + space-between 때문에
     텍스트와 배지 사이에 거대한 빈 공간 발생 → 콘텐츠 높이로 접고 위에서부터 정렬. */
  .guardian-v2 .intro-card__copy { min-height: 0; flex: 0 1 auto; justify-content: flex-start; gap: 28px; }
  .guardian-v2 .intro-card__visual { flex: 0 1 auto; }
  .guardian-v2 .aisec__cols { flex-direction: column; gap: 24px; }
  .guardian-v2 .aisec__col--left { gap: 24px; }
  .guardian-v2 .aisec__col--right .aicard--shield { margin-bottom: 24px; }
  /* 레이아웃이 모바일로 쌓이는 시점부터 버튼도 함께 축소 (데스크톱 20px·58~65px → 16px·50~52px).
     560px 이하에선 아래 블록이 한 번 더 줄인다. */
  .guardian-v2 .intro-card__badge { height: 50px; font-size: 18px; padding-inline: 22px; }
  .guardian-v2 .btn--pill { font-size: 16px; padding: 11px 22px; }
  .guardian-v2 .cta__btn { height: 52px; font-size: 16px; margin-top: 36px; padding: 0 22px; }
}
@media (max-width: 720px) {
  .guardian-v2 .process__steps { gap: clamp(20px,6vw,32px); }
  .guardian-v2 .pstep__arrow { display: none; }
  .guardian-v2 .pstep { flex-basis: 40%; }
}
@media (max-width: 640px) {
  .guardian-v2 .grid6 { grid-template-columns: 1fr; }
  /* 긴 칩(예: "기업형 워크스페이스 ID 기반 인증을 통한 이중 방어 체계")이 nowrap +
     고정 height 48px라 좁은 폭에서 화면을 넘쳐 잘렸다 → 줄바꿈 허용 + 높이 auto. */
  .guardian-v2 .chips span { white-space: normal; height: auto; min-height: 40px; padding: 10px 20px; line-height: 1.4; }
  /* stats: minmax(320px,1fr)의 320px 하한이 360px 미만 화면에서 카드를 넘치게 함 → 단일 컬럼. */
  .guardian-v2 .stats__grid { grid-template-columns: 1fr; }
  /* CTA 제목: 강제 <br>가 모바일에서 마지막 줄에 "다"만 떨구는 고아 텍스트를 만듦 →
     줄바꿈을 자연 흐름에 맡기고(한글 단어 안 끊김 + 균형 배치). */
  .guardian-v2 .cta__title br { display: none; }
  .guardian-v2 .cta__title { word-break: keep-all; text-wrap: balance; }
  /* aicard 메모(긴 영문)가 nowrap이라 좁은 폭에서 카드를 가로로 밀어냄 → 줄바꿈 허용. */
  .guardian-v2 .aicard__note { white-space: normal; }
  .guardian-v2 .aicard__steprow { flex-wrap: wrap; }
}
/* 휴대폰: deploy 카드 2개가 함께 과도히 축소돼 라벨/아이콘이 작아짐 → 세로 스택. */
@media (max-width: 560px) {
  .guardian-v2 .deploy__cards { flex-direction: column; align-items: stretch; max-width: 360px; margin-inline: auto; }
  .guardian-v2 .deploy-card { flex: 0 0 auto; width: 100%; max-width: 320px; margin-inline: auto; }
  /* intro 배지("Ask For Sapie-Guardian")가 nowrap이라 ~320px에서 카드(overflow:hidden) 밖으로
     잘림 → 폰트를 폭에 맞춰 한 번 더 축소해 한 줄로 들어오게 함(860 블록 18px 기준에서 추가 축소). */
  .guardian-v2 .intro-card__badge { font-size: clamp(15px, 4.4vw, 18px); padding-inline: 20px; }
}

/* 모션 최소화 선호 시: 기능 카드 sticky 스택/등장 애니메이션 전부 끄고 정적 나열로 폴백 */
@media (prefers-reduced-motion: reduce) {
  .guardian-v2 .frow { position: static; transform: none; filter: none; opacity: 1; transition: none;
    margin-bottom: clamp(28px,4vw,56px); }
  .guardian-v2 .rows .frow:not(.is-in) { --enter-y: 0; --enter-o: 1; }
}
