@charset "UTF-8";
/* ============================================================
   MasterKi · 음성AI 배리어프리 키오스크 접근성 플랫폼
   Landing Page Stylesheet
   - KWCAG 2.1 / WCAG 2.1 AA 지향 (본문 16px+, 명도비 4.5:1+)
   - 200% 확대 대응, 키보드 포커스 링, 모션 최소화 대응
   ============================================================ */

/* ------------------------------------------------------------
   1. Design Tokens
   ------------------------------------------------------------ */
:root {
  /* Brand */
  --navy-900: #071A2E;
  --navy-800: #0B2440;
  --navy-700: #103356;
  --navy-600: #17456F;
  --navy-500: #23608F;

  --mint-600: #00795E;  /* 텍스트용 (흰 배경 대비 5.3:1) */
  --mint-500: #00A67E;  /* 그래픽/보더용 */
  --mint-400: #19C79A;  /* 어두운 배경 위 강조 */
  --mint-300: #6FE3C1;
  --mint-050: #E7F8F2;

  --gold-500: #B8894B;
  --gold-050: #FBF3E8;

  /* Neutral */
  --ink-900: #0C1622;   /* 본문 최고 대비 */
  --ink-700: #2C3A49;   /* 본문 */
  --ink-500: #55636F;   /* 보조 텍스트 (흰 배경 4.9:1) */
  --ink-400: #646F7B;
  --line-200: #E4E8EA;
  --line-100: #EFF2F2;

  --canvas: #F3F5F3;
  --canvas-2: #EDF0EE;
  --surface: #FFFFFF;

  /* On-dark */
  --on-dark: #FFFFFF;
  --on-dark-soft: #C4D3E1;  /* navy-800 위 8.4:1 */
  --on-dark-line: rgba(255, 255, 255, .14);
  --on-dark-fill: rgba(255, 255, 255, .06);

  /* Type */
  --ff: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
        "Apple SD Gothic Neo", "Malgun Gothic", "맑은 고딕", system-ui, sans-serif;

  /* Radius */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-2xl: 40px;
  --r-pill: 999px;

  /* Shadow */
  --sh-sm: 0 1px 2px rgba(12, 22, 34, .05), 0 2px 8px rgba(12, 22, 34, .04);
  --sh-md: 0 2px 6px rgba(12, 22, 34, .05), 0 12px 32px rgba(12, 22, 34, .07);
  --sh-lg: 0 8px 24px rgba(12, 22, 34, .08), 0 32px 64px rgba(12, 22, 34, .10);

  /* Layout */
  --wrap: 1320px;
  --wrap-narrow: 1060px;
  --gut: clamp(20px, 4vw, 40px);
  --sec-y: clamp(72px, 8.5vw, 132px);
  --shell-x: clamp(0px, 1.6vw, 22px);

  --ease: cubic-bezier(.22, .68, .3, 1);
}

/* ------------------------------------------------------------
   2. Reset & Base
   ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  margin: 0;
  font-family: var(--ff);
  font-size: 17px;          /* 본문 16px 이상 요건 */
  line-height: 1.72;
  color: var(--ink-700);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  word-break: keep-all;
  overflow-wrap: break-word;
}

img, svg { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }
figure { margin: 0; }

h1, h2, h3, h4 {
  margin: 0;
  color: var(--ink-900);
  line-height: 1.28;
  letter-spacing: -.022em;
  font-weight: 800;
}
p { margin: 0; }

a {
  color: var(--mint-600);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
a:hover { text-decoration: underline; }

button, input, select, textarea { font: inherit; color: inherit; }

/* 포커스 링 — 키보드 탐색 필수 요건 */
:focus-visible {
  outline: 3px solid var(--mint-500);
  outline-offset: 3px;
  border-radius: 4px;
}
.on-dark :focus-visible,
.hero :focus-visible,
.footer :focus-visible,
.cta-band :focus-visible { outline-color: var(--mint-300); }

::selection { background: var(--mint-300); color: var(--navy-900); }

/* 건너뛰기 링크 */
.skip {
  position: absolute;
  left: 16px; top: -80px;
  z-index: 200;
  padding: 14px 22px;
  background: var(--navy-800);
  color: #fff;
  font-weight: 700;
  border-radius: var(--r-sm);
  transition: top .2s var(--ease);
}
.skip:focus { top: 16px; text-decoration: none; }

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap; border: 0;
}

/* ------------------------------------------------------------
   3. Layout primitives
   ------------------------------------------------------------ */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}
.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding-block: var(--sec-y); }
.section--canvas { background: var(--canvas); }
.section--surface { background: var(--surface); }

/* 라운드 셸 (레퍼런스: 좌우 여백을 둔 라운드 패널) */
.shell {
  margin-inline: var(--shell-x);
  border-radius: var(--r-2xl);
  overflow: hidden;
}

.grid { display: grid; gap: clamp(16px, 2vw, 24px); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: minmax(0, 1fr); }
}

/* ------------------------------------------------------------
   4. Typography helpers
   ------------------------------------------------------------ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px 8px;
  border: 1.5px solid var(--mint-500);
  border-radius: var(--r-pill);
  color: var(--mint-600);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  line-height: 1;
}
.eyebrow--light {
  border-color: rgba(111, 227, 193, .5);
  color: var(--mint-300);
}
.eyebrow--gold { border-color: var(--gold-500); color: #8E6428; }

.h-display {
  font-size: clamp(34px, 5.4vw, 62px);
  line-height: 1.16;
  letter-spacing: -.032em;
  font-weight: 800;
}
.h-sec {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.24;
  letter-spacing: -.03em;
}
.h-card { font-size: clamp(19px, 1.5vw, 22px); line-height: 1.4; }

.lead {
  font-size: clamp(17px, 1.35vw, 19px);
  line-height: 1.78;
  color: var(--ink-500);
}
.muted { color: var(--ink-500); }
.small { font-size: 15px; line-height: 1.66; }
.tiny { font-size: 13.5px; line-height: 1.6; color: var(--ink-400); }

.sec-head { max-width: 830px; margin-bottom: clamp(36px, 4.4vw, 60px); }
.sec-head .eyebrow { margin-bottom: 22px; }
.sec-head .h-sec + .lead { margin-top: 20px; }
.sec-head--center { margin-inline: auto; text-align: center; }

/* 섹션 인덱스 — 알약 배지 대신 편집 디자인식 번호 + 괘선 */
.sec-index {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  color: var(--ink-500);
}
.sec-index__n {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--mint-600);
  font-variant-numeric: tabular-nums;
}
.sec-index__label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
}
.sec-index__line {
  flex: 1;
  max-width: 96px;
  height: 1px;
  background: linear-gradient(90deg, var(--mint-500), rgba(0, 166, 126, 0));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .8s var(--ease) .1s;
}
.is-in .sec-index__line, .sec-index.is-in .sec-index__line { transform: scaleX(1); }
.sec-head--center .sec-index { justify-content: center; }
.sec-head--center .sec-index__line { max-width: 64px; }
.on-dark .sec-index { color: #A9BFD2; }
.on-dark .sec-index__n { color: var(--mint-300); }
.on-dark .sec-index__line { background: linear-gradient(90deg, var(--mint-400), rgba(25, 199, 154, 0)); }

.hl { color: var(--mint-600); }
.on-dark .hl, .hero .hl { color: var(--mint-300); }
.mark {
  background: linear-gradient(transparent 62%, rgba(25, 199, 154, .28) 62%);
  padding-inline: 2px;
}

.on-dark { color: var(--on-dark-soft); }
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4, .on-dark strong { color: #fff; }
.on-dark .muted, .on-dark .lead { color: var(--on-dark-soft); }
.on-dark .tiny { color: #93A9BE; }

/* ------------------------------------------------------------
   5. Buttons
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 30px;
  border: 1.5px solid transparent;
  border-radius: var(--r-pill);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s var(--ease), background-color .18s var(--ease),
              border-color .18s var(--ease), box-shadow .18s var(--ease), color .18s var(--ease);
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .ico { flex: none; }

.btn--primary {
  background: var(--mint-600);
  color: #fff;
  box-shadow: 0 6px 18px rgba(0, 121, 94, .26);
}
.btn--primary:hover { background: #00694F; box-shadow: 0 10px 26px rgba(0, 121, 94, .32); }

.btn--navy { background: var(--navy-800); color: #fff; }
.btn--navy:hover { background: var(--navy-700); }

.btn--ghost {
  background: transparent;
  border-color: var(--line-200);
  color: var(--ink-900);
}
.btn--ghost:hover { border-color: var(--ink-900); background: rgba(12, 22, 34, .03); }

.btn--ghost-light {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .38);
  color: #fff;
}
.btn--ghost-light:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }

.btn--light { background: #fff; color: var(--navy-900); }
.btn--light:hover { background: var(--mint-050); }

.btn--sm { min-height: 46px; padding: 0 20px; font-size: 15px; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  text-decoration: none;
}
.link-arrow::after {
  content: "→";
  transition: transform .18s var(--ease);
}
.link-arrow:hover::after { transform: translateX(4px); }

/* ------------------------------------------------------------
   6. Header
   ------------------------------------------------------------ */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 14px var(--shell-x) 0;
  transition: padding .3s var(--ease);
}
.header__inner {
  max-width: calc(var(--wrap) + 80px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 12px 10px 22px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(12, 22, 34, .07);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  box-shadow: 0 2px 10px rgba(12, 22, 34, .05);
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease);
}
.header.is-stuck .header__inner { box-shadow: var(--sh-md); background: rgba(255, 255, 255, .94); }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex: none;
}
.brand:hover { text-decoration: none; }
/* 발주자 제공 로고 (assets/img/logo.png) */
.brand__logo {
  height: 22px;
  width: auto;
  flex: none;
  display: block;
}
.brand--invert .brand__logo { filter: brightness(0) invert(1); }   /* 어두운 배경용 흰색 반전 */
.brand__sub {
  position: relative;
  padding-left: 13px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--ink-400);
  text-transform: uppercase;
}
.brand__sub::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 1px; height: 13px;
  margin-top: -7px;
  background: var(--line-200);
}

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 2px; }
.nav__link {
  display: block;
  padding: 10px 15px;
  border-radius: var(--r-pill);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink-700);
  text-decoration: none;
  white-space: nowrap;
  transition: background-color .18s var(--ease), color .18s var(--ease);
}
.nav__link:hover { background: var(--canvas-2); color: var(--navy-900); text-decoration: none; }
.nav__link[aria-current="true"] { color: var(--mint-600); background: var(--mint-050); }

.header__actions { display: flex; align-items: center; gap: 8px; flex: none; }

/* 언어 토글 */
.lang {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line-200);
  border-radius: var(--r-pill);
  background: var(--canvas);
}
.lang__btn {
  min-width: 44px;
  padding: 7px 12px;
  border: 0;
  border-radius: var(--r-pill);
  background: transparent;
  font-size: 14px;
  font-weight: 800;
  color: var(--ink-500);
  cursor: pointer;
  transition: background-color .18s var(--ease), color .18s var(--ease);
}
.lang__btn:hover { color: var(--navy-900); }
.lang__btn[aria-pressed="true"] {
  background: var(--navy-800);
  color: #fff;
}

.burger {
  display: none;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  border: 1px solid var(--line-200);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}
.burger__bars, .burger__bars::before, .burger__bars::after {
  display: block;
  width: 18px; height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform .22s var(--ease), opacity .18s var(--ease);
}
.burger__bars { position: relative; }
.burger__bars::before, .burger__bars::after { content: ""; position: absolute; left: 0; }
.burger__bars::before { top: -6px; }
.burger__bars::after { top: 6px; }
.burger[aria-expanded="true"] .burger__bars { background: transparent; }
.burger[aria-expanded="true"] .burger__bars::before { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__bars::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1080px) {
  .header__inner { padding-left: 18px; }
  .nav {
    position: absolute;
    left: var(--shell-x); right: var(--shell-x); top: calc(100% + 10px);
    margin: 0;
    padding: 12px;
    border-radius: var(--r-lg);
    background: #fff;
    box-shadow: var(--sh-lg);
    border: 1px solid var(--line-200);
    display: none;
  }
  .nav.is-open { display: block; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav__link { padding: 15px 18px; border-radius: var(--r-sm); font-size: 17px; }
  .burger { display: inline-flex; }
  .header__actions .btn--sm { display: none; }
}
@media (max-width: 560px) {
  .brand__sub { display: none; }
  .brand__logo { height: 20px; }
}

/* ------------------------------------------------------------
   7. Hero
   ------------------------------------------------------------ */
.hero {
  position: relative;
  margin: 96px var(--shell-x) 0;
  padding: clamp(72px, 8vw, 118px) 0 clamp(0px, 3vw, 40px);
  border-radius: var(--r-2xl);
  background:
    radial-gradient(120% 90% at 88% 6%, rgba(0, 166, 126, .30) 0%, rgba(0, 166, 126, 0) 55%),
    radial-gradient(90% 70% at 4% 96%, rgba(35, 96, 143, .48) 0%, rgba(35, 96, 143, 0) 60%),
    linear-gradient(168deg, #0A2137 0%, #071A2E 52%, #05253C 100%);
  color: var(--on-dark-soft);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(120% 100% at 50% 0%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(120% 100% at 50% 0%, #000 20%, transparent 78%);
}

/* --- [테스트] 히어로 배경 사진 -----------------------------------
   .hero 에 hero--photo 클래스를 붙이면 켜지고, 떼면 원래 배경으로
   완전히 돌아갑니다. 기존 그라디언트는 그대로 아래에 남아 있습니다.
   사진이 밝아서 흰 글씨가 묻히므로 위에 어두운 막을 한 겹 덮습니다.
   ---------------------------------------------------------------- */
.hero--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;          /* 격자무늬(::before, -1)보다 뒤 */
  /* 글이 놓이는 왼쪽을 더 어둡게 — 가독성 확보.
     아래 두 줄은 같은 배경이고, image-set 을 모르는 브라우저는
     첫 번째(jpg) 선언을 그대로 씁니다. */
  background:
    linear-gradient(100deg, rgba(5, 20, 36, .93) 0%, rgba(5, 20, 36, .82) 38%,
                            rgba(5, 22, 40, .55) 68%, rgba(5, 22, 40, .42) 100%),
    url("../img/hero-photo.jpg");
  background:
    linear-gradient(100deg, rgba(5, 20, 36, .93) 0%, rgba(5, 20, 36, .82) 38%,
                            rgba(5, 22, 40, .55) 68%, rgba(5, 22, 40, .42) 100%),
    image-set(url("../img/hero-photo.webp") type("image/webp"),
              url("../img/hero-photo.jpg")  type("image/jpeg"));
  background-size: cover, cover;
  background-position: center, center right;
  background-repeat: no-repeat;
}
/* 사진을 켜면 격자무늬는 옅게 — 두 무늬가 겹쳐 지저분해지는 걸 막습니다 */
.hero--photo::before { opacity: .45; }

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  gap: clamp(36px, 5vw, 68px);
  align-items: center;
}
.hero__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 15px;
  border-radius: var(--r-pill);
  background: var(--on-dark-fill);
  border: 1px solid var(--on-dark-line);
  font-size: 13.5px;
  font-weight: 700;
  color: #DDE9F3;
  line-height: 1.3;
}
.badge__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--mint-400);
  flex: none;
}
.badge--solid { background: rgba(25, 199, 154, .16); border-color: rgba(25, 199, 154, .42); color: #A8F0DA; }

.hero h1 { color: #fff; }
.hero__sub {
  margin-top: 26px;
  max-width: 600px;
  font-size: clamp(17px, 1.4vw, 19.5px);
  line-height: 1.76;
  color: #C9DBEA;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}
.hero__note {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  font-size: 14.5px;
  color: #93A9BE;
}
.hero__note span { display: inline-flex; align-items: center; gap: 7px; }
.hero__note svg { flex: none; }

/* 히어로 목업 */
.mock { position: relative; padding: 10px 0 24px; }
.mock__device {
  position: relative;
  border-radius: 26px;
  padding: 14px;
  background: linear-gradient(150deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .04));
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .42);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.mock__screen {
  border-radius: 16px;
  background: #FBFDFC;
  padding: 20px 20px 22px;
  color: var(--ink-700);
}
.mock__bar {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-100);
  margin-bottom: 18px;
}
.mock__bar b { font-size: 15px; color: var(--navy-900); letter-spacing: -.02em; }
.mock__chip {
  font-size: 11.5px; font-weight: 800; letter-spacing: .08em;
  color: var(--mint-600); background: var(--mint-050);
  padding: 5px 10px; border-radius: var(--r-pill);
}
.mock__say {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--navy-800);
  color: #fff;
  font-weight: 700;
  font-size: clamp(15px, 1.3vw, 17px);
  letter-spacing: -.02em;
}
.mock__wave { display: flex; align-items: center; gap: 3px; height: 26px; flex: none; }
.mock__wave i {
  display: block; width: 3px; height: 8px;
  border-radius: 2px;
  background: var(--mint-400);
  animation: wave 1.1s var(--ease) infinite;
}
.mock__wave i:nth-child(2) { animation-delay: .12s; }
.mock__wave i:nth-child(3) { animation-delay: .24s; }
.mock__wave i:nth-child(4) { animation-delay: .36s; }
.mock__wave i:nth-child(5) { animation-delay: .48s; }
@keyframes wave {
  0%, 100% { height: 7px; opacity: .55; }
  50% { height: 22px; opacity: 1; }
}
.mock__arrow {
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  margin: 12px 0;
  min-height: 22px;                 /* 문구 유무와 관계없이 높이 유지 */
  font-size: 12.5px; font-weight: 800; letter-spacing: .1em;
  color: var(--ink-400);
}
.mock__arrow::before, .mock__arrow::after {
  content: ""; height: 1px; flex: 1; background: var(--line-200);
}
.mock__result {
  border: 1.5px solid var(--mint-500);
  border-radius: 14px;
  padding: 16px;
  background: var(--mint-050);
}
.mock__result b {
  display: block;
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--navy-900);
  letter-spacing: -.02em;
}
.mock__result span { display: block; margin-top: 5px; font-size: 14px; color: #2F6B58; }
.mock__ticket {
  display: flex; align-items: baseline; gap: 10px;
  margin-top: 14px; padding-top: 14px;
  border-top: 1px dashed rgba(0, 121, 94, .35);
}
.mock__ticket strong { font-size: 30px; color: var(--mint-600); letter-spacing: -.03em; white-space: nowrap; }
.mock__ticket em { font-style: normal; font-size: 14px; color: var(--ink-500); }

.mock__float {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  border-radius: var(--r-md);
  background: #fff;
  box-shadow: var(--sh-lg);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.35;
}
.mock__float b { display: block; font-size: 19px; letter-spacing: -.02em; color: var(--mint-600); }
.mock__float--a { left: -26px; bottom: 4px; }
.mock__float--b { right: -18px; top: 26px; }

/* 목업이 카피 아래로 내려가는 지점 — 히어로 전체를 가운데 축으로 맞춥니다.
   플로팅 카드도 목업을 가리지 않도록 아래로 내립니다. */
@media (max-width: 1020px) {
  .hero__grid { grid-template-columns: minmax(0, 1fr); }

  /* width:100% 가 반드시 필요합니다. margin-inline:auto 만 주면 그리드
     아이템의 stretch 가 꺼져 fit-content 로 잡히고, 그러면 시연 문구가
     바뀔 때마다 키오스크 가로폭이 같이 움직입니다(309~355px). */
  .mock {
    width: 100%;
    max-width: 560px;
    margin-inline: auto;
    padding: 10px 0 0;
  }
  .mock__float {
    position: static;
    margin-top: 14px;
    box-shadow: var(--sh-md);
    justify-content: center;
    text-align: center;
  }

  .hero__copy { text-align: center; }
  .hero__cta,
  .hero__note { justify-content: center; }
  .hero__sub { margin-inline: auto; }

  /* 배지는 가로로 붙이면 폭이 모자라 어중간하게 줄바꿈되므로 세로로 쌓습니다.
     column 에서는 가로 중앙이 align-items 쪽입니다. */
  .hero__badges {
    flex-direction: column;
    align-items: center;
  }
}

/* ------------------------------------------------------------
   8. Trust strip
   ------------------------------------------------------------ */
.strip { background: var(--surface); border-bottom: 1px solid var(--line-100); }
.strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px clamp(20px, 3vw, 46px);
  padding-block: 26px;
}
.strip__label {
  font-size: 13px; font-weight: 800; letter-spacing: .12em;
  color: var(--ink-400); text-transform: uppercase;
  padding-right: clamp(4px, 2vw, 20px);
  border-right: 1px solid var(--line-200);
}
.strip__item {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 15.5px; font-weight: 700; color: var(--ink-700);
  letter-spacing: -.015em;
}
.strip__item svg { flex: none; color: var(--mint-600); }
@media (max-width: 700px) {
  .strip__label { border-right: 0; width: 100%; padding-right: 0; }
}

/* ------------------------------------------------------------
   9. Cards
   ------------------------------------------------------------ */
.card {
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-lg);
  padding: clamp(24px, 2.6vw, 34px);
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease);
}
.card--hover:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: #D6DEDB; }
.card--flat { box-shadow: none; }
.card__ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  border-radius: 15px;
  background: var(--mint-050);
  color: var(--mint-600);
  margin-bottom: 20px;
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--ink-500); font-size: 16px; }

/* 통계 카드 */
.stat {
  position: relative;          /* .stat__ico 픽토그램 기준점 */
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-lg);
  padding: clamp(22px, 2.4vw, 30px);
}
.stat__num {
  display: flex; align-items: baseline; gap: 2px;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.05;
  color: var(--navy-800);
}
.stat__num em { font-style: normal; font-size: .52em; font-weight: 800; letter-spacing: -.02em; }
.stat__label {
  margin-top: 12px;
  font-size: 16px; font-weight: 700; color: var(--ink-900);
  letter-spacing: -.02em;
}
.stat__sub { margin-top: 5px; font-size: 14px; color: var(--ink-500); line-height: 1.55; }
.stat__src { margin-top: 12px; font-size: 12.5px; color: var(--ink-400); }
.stat--accent .stat__num { color: var(--mint-600); }
.stat--warn .stat__num { color: #B4442E; }

.on-dark .stat {
  background: var(--on-dark-fill);
  border-color: var(--on-dark-line);
}
.on-dark .stat__num { color: #fff; }
.on-dark .stat__label { color: #fff; }
.on-dark .stat__sub { color: var(--on-dark-soft); }
.on-dark .stat--accent .stat__num { color: var(--mint-300); }

/* ------------------------------------------------------------
   10. Problem section
   ------------------------------------------------------------ */
.law {
  position: relative;
  margin-top: clamp(28px, 3vw, 42px);
  padding: clamp(28px, 3.4vw, 44px);
  border-radius: var(--r-xl);
  background: linear-gradient(140deg, var(--navy-800), var(--navy-700) 70%, #14486F);
  color: var(--on-dark-soft);
  overflow: hidden;
}
.law::after {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(25, 199, 154, .30), transparent 68%);
}
.law__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
}
.law h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  color: #fff;
  letter-spacing: -.03em;
}
.law p { margin-top: 12px; max-width: 620px; font-size: 16px; }
.law__dday {
  text-align: center;
  padding: 22px 30px;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, .08);
  border: 1px solid var(--on-dark-line);
  flex: none;
}
.law__dday b {
  display: block;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--mint-300);
  line-height: 1.1;
}
.law__dday span { display: block; margin-top: 8px; font-size: 14px; color: #C4D3E1; }
@media (max-width: 780px) {
  .law__grid { grid-template-columns: minmax(0, 1fr); }
}

.quote {
  margin-top: clamp(28px, 3vw, 42px);
  padding: clamp(26px, 3vw, 38px);
  border-radius: var(--r-xl);
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-left: 5px solid var(--mint-500);
}
.quote p {
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.68;
  color: var(--ink-900);
  font-weight: 600;
  letter-spacing: -.025em;
}
.quote cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-size: 14.5px;
  color: var(--ink-500);
}

/* ------------------------------------------------------------
   11. Solution
   ------------------------------------------------------------ */
.split {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 4.5vw, 72px);
  align-items: start;
}
@media (max-width: 940px) { .split { grid-template-columns: minmax(0, 1fr); } }

.notbox {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}
.notbox__item {
  padding: 20px 22px;
  border-radius: var(--r-md);
  border: 1px solid var(--line-200);
  background: var(--surface);
}
.notbox__item h3 {
  display: flex; align-items: center; gap: 9px;
  font-size: 16px; letter-spacing: -.02em; margin-bottom: 8px;
}
.notbox__item p { font-size: 15px; color: var(--ink-500); }
.notbox__item--no { background: #FBF7F6; border-color: #EFDDD9; }
.notbox__item--no h3 { color: #9B3F2A; }
.notbox__item--yes { background: var(--mint-050); border-color: #C6EBDF; }
.notbox__item--yes h3 { color: #056048; }
@media (max-width: 560px) { .notbox { grid-template-columns: minmax(0, 1fr); } }

.feat { display: grid; gap: 2px; }
.feat__row {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 20px;
  padding: 26px 4px;
  border-bottom: 1px solid var(--line-200);
}
.feat__row:first-child { padding-top: 0; }
.feat__row:last-child { border-bottom: 0; padding-bottom: 0; }
.feat__ico {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  border-radius: 15px;
  background: var(--navy-800);
  color: var(--mint-300);
  flex: none;
}
.feat__row h3 { font-size: 19px; margin-bottom: 8px; letter-spacing: -.025em; }
.feat__row p { color: var(--ink-500); font-size: 16px; }
@media (max-width: 460px) {
  .feat__row { grid-template-columns: minmax(0, 1fr); gap: 14px; }
}

/* ------------------------------------------------------------
   12. How it works
   ------------------------------------------------------------ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 28px);
  counter-reset: step;
}
@media (max-width: 860px) { .steps { grid-template-columns: minmax(0, 1fr); } }

.step {
  --step-pad: clamp(26px, 2.8vw, 36px);   /* .step__art 가 음수 마진으로 되돌려 씀 */
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-xl);
  padding: var(--step-pad);
  overflow: hidden;
}
.step::before {
  content: "";
  position: absolute;
  left: 0; top: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--mint-500), var(--navy-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.step.is-in::before { transform: scaleX(1); }
.step__n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy-800);
  color: #fff;
  font-size: 17px; font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 22px;
}
.step h3 { font-size: clamp(20px, 1.7vw, 23px); margin-bottom: 12px; }
.step p { color: var(--ink-500); font-size: 16px; }
.step__detail {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px dashed var(--line-200);
  display: grid;
  gap: 9px;
}
.step__detail li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 14.5px; color: var(--ink-500); line-height: 1.6;
}
.step__detail li::before {
  content: "";
  flex: none;
  width: 6px; height: 6px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--mint-500);
}

.timing {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 26px;
  margin-top: clamp(28px, 3vw, 40px);
  padding: 22px 28px;
  border-radius: var(--r-pill);
  background: var(--navy-800);
  color: #fff;
  text-align: center;
}
.timing b { color: var(--mint-300); font-size: 19px; letter-spacing: -.02em; }
.timing span { font-size: 16px; color: var(--on-dark-soft); }
@media (max-width: 640px) { .timing { border-radius: var(--r-lg); } }

/* ------------------------------------------------------------
   13. Effects (dark shell)
   ------------------------------------------------------------ */
.dark-shell {
  background:
    radial-gradient(90% 80% at 92% 4%, rgba(0, 166, 126, .22), transparent 58%),
    linear-gradient(160deg, #0A2137, #071A2E 60%, #0A2942);
  color: var(--on-dark-soft);
}
.dark-shell .card {
  background: var(--on-dark-fill);
  border-color: var(--on-dark-line);
}
.dark-shell .card p { color: var(--on-dark-soft); }
.dark-shell .card__ico { background: rgba(25, 199, 154, .14); color: var(--mint-300); }

.kpi {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
}
@media (max-width: 940px) { .kpi { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .kpi { grid-template-columns: minmax(0, 1fr); } }

.kpi__item {
  padding: clamp(24px, 2.6vw, 32px);
  border-radius: var(--r-lg);
  background: var(--on-dark-fill);
  border: 1px solid var(--on-dark-line);
}
.kpi__val {
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--mint-300);
  line-height: 1.08;
}
.kpi__val em { font-style: normal; font-size: .5em; }
.kpi__name { margin-top: 14px; font-size: 17px; font-weight: 700; color: #fff; letter-spacing: -.02em; }
.kpi__desc { margin-top: 7px; font-size: 14.5px; color: #A9BFD2; line-height: 1.6; }

.beforeafter {
  margin-top: clamp(28px, 3vw, 44px);
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--r-xl);
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--on-dark-line);
}
.ba__row { display: grid; gap: 12px; }
.ba__row + .ba__row { margin-top: 26px; }
.ba__head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  font-size: 16px; font-weight: 700; color: #fff;
}
.ba__head span { font-size: 14.5px; font-weight: 600; color: #A9BFD2; }
.ba__track {
  position: relative;
  height: 14px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .1);
  overflow: hidden;
}
.ba__fill {
  position: absolute; inset: 0 auto 0 0;
  width: 0;
  border-radius: var(--r-pill);
  background: linear-gradient(90deg, #2C6F92, var(--mint-400));
  transition: width 1.1s var(--ease);
}
.ba__fill--muted { background: rgba(255, 255, 255, .26); }

/* ------------------------------------------------------------
   14. Comparison table
   ------------------------------------------------------------ */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--r-xl);
  border: 1px solid var(--line-200);
  background: var(--surface);
  -webkit-overflow-scrolling: touch;
}
table.cmp {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 16px;
}
table.cmp caption { padding: 20px 24px 0; text-align: left; color: var(--ink-500); font-size: 14.5px; }
table.cmp th, table.cmp td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid var(--line-100);
  vertical-align: middle;
}
table.cmp thead th {
  background: var(--canvas);
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: .02em;
  color: var(--ink-500);
  border-bottom: 1px solid var(--line-200);
  white-space: nowrap;
}
table.cmp thead th.is-us {
  background: var(--navy-800);
  color: #fff;
}
table.cmp tbody th {
  font-weight: 700;
  color: var(--ink-900);
  width: 27%;
  letter-spacing: -.02em;
}
table.cmp td.is-us {
  background: var(--mint-050);
  font-weight: 700;
  color: #05513E;
}
table.cmp tbody tr:last-child th,
table.cmp tbody tr:last-child td { border-bottom: 0; }
.table-note { margin-top: 14px; font-size: 13.5px; color: var(--ink-400); }

/* ------------------------------------------------------------
   15. Trust / credibility
   ------------------------------------------------------------ */
.trust-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-lg);
  padding: clamp(24px, 2.6vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.trust-card__tag {
  display: inline-flex; align-items: center; gap: 6px;
  align-self: flex-start;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  font-size: 12.5px; font-weight: 800; letter-spacing: .04em;
}
.tag--done { background: var(--mint-050); color: #05604A; }
.tag--doing { background: #EAF1F8; color: #14486F; }
.tag--talk { background: var(--gold-050); color: #7C5518; }
.trust-card h3 { font-size: 19px; letter-spacing: -.025em; }
.trust-card p { font-size: 15.5px; color: var(--ink-500); }

.road {
  margin-top: clamp(30px, 3.4vw, 48px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 20px);
}
@media (max-width: 900px) { .road { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .road { grid-template-columns: minmax(0, 1fr); } }
.road__item {
  position: relative;
  padding: 26px 24px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line-200);
}
.road__item--now { background: var(--navy-800); border-color: var(--navy-800); color: var(--on-dark-soft); }
.road__item--now h4, .road__item--now .road__yr { color: #fff; }
.road__yr {
  font-size: 14px; font-weight: 800; letter-spacing: .08em;
  color: var(--mint-600);
}
.road__item--now .road__yr { color: var(--mint-300); }
.road__item h4 { margin: 10px 0 12px; font-size: 18px; letter-spacing: -.025em; }
.road__item li {
  font-size: 14.5px;
  line-height: 1.62;
  color: var(--ink-500);
  padding-left: 14px;
  position: relative;
}
.road__item--now li { color: var(--on-dark-soft); }
.road__item li + li { margin-top: 5px; }
.road__item li::before {
  content: "";
  position: absolute; left: 0; top: 10px;
  width: 5px; height: 5px; border-radius: 50%;
  background: currentColor; opacity: .5;
}

.people { margin-top: clamp(30px, 3.4vw, 48px); }
.person {
  display: flex;
  gap: 18px;
  padding: clamp(22px, 2.4vw, 28px);
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-lg);
}
.person__avatar {
  flex: none;
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy-800);
  color: #fff;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -.02em;
}
.person__role {
  font-size: 12.5px; font-weight: 800; letter-spacing: .1em;
  color: var(--mint-600); text-transform: uppercase;
}
.person h3 { font-size: 19px; margin: 6px 0 10px; letter-spacing: -.025em; }
.person p { font-size: 15px; color: var(--ink-500); }

/* ------------------------------------------------------------
   16. Contact
   ------------------------------------------------------------ */
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}
@media (max-width: 940px) { .contact { grid-template-columns: minmax(0, 1fr); } }

.form {
  padding: clamp(26px, 3vw, 40px);
  border-radius: var(--r-xl);
  background: var(--surface);
  border: 1px solid var(--line-200);
  box-shadow: var(--sh-sm);
}
.field { margin-bottom: 20px; }
.field > label:not(.check) {
  display: block;
  margin-bottom: 9px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -.02em;
}
.form__intro {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-100);
  font-size: 15px;
  color: var(--ink-500);
}
.form__intro .req { margin-left: 0; margin-right: 2px; }
.req { color: #B4442E; margin-left: 3px; font-weight: 800; }
.hint { display: block; margin-top: 7px; font-size: 13.5px; color: var(--ink-400); }

.input, .textarea, .select {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1.5px solid var(--line-200);
  border-radius: var(--r-sm);
  background: #FCFDFD;
  font-size: 16.5px;
  color: var(--ink-900);
  transition: border-color .16s var(--ease), box-shadow .16s var(--ease), background-color .16s var(--ease);
}
.textarea { min-height: 148px; resize: vertical; line-height: 1.7; }
.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%2355636F' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}
.input::placeholder, .textarea::placeholder { color: #6B7683; }
.input:hover, .textarea:hover, .select:hover { border-color: #C9D2D4; }
.input:focus, .textarea:focus, .select:focus {
  outline: none;
  background: #fff;
  border-color: var(--mint-500);
  box-shadow: 0 0 0 4px rgba(0, 166, 126, .16);
}
.input:focus-visible, .textarea:focus-visible, .select:focus-visible { outline: 3px solid var(--mint-500); outline-offset: 2px; }
.input[aria-invalid="true"], .textarea[aria-invalid="true"] {
  border-color: #C24A31;
  background: #FEF8F6;
}
.err {
  display: none;
  margin-top: 7px;
  font-size: 14px;
  font-weight: 600;
  color: #A93C24;
}
.err.is-on { display: block; }

.check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 15px;
  color: var(--ink-500);
  line-height: 1.6;
  cursor: pointer;
}
.check input { width: 22px; height: 22px; margin: 1px 0 0; flex: none; accent-color: var(--mint-600); cursor: pointer; }

.form__status {
  margin-top: 18px;
  padding: 15px 18px;
  border-radius: var(--r-sm);
  font-size: 15.5px;
  font-weight: 600;
  display: none;
}
.form__status.is-on { display: block; }
.form__status.is-ok { background: var(--mint-050); color: #05513E; border: 1px solid #BEE8DA; }
.form__status.is-err { background: #FDF2EF; color: #96361F; border: 1px solid #F1D2C9; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.info-card {
  padding: clamp(26px, 3vw, 36px);
  border-radius: var(--r-xl);
  background: linear-gradient(160deg, var(--navy-800), #0A2942);
  color: var(--on-dark-soft);
}
.info-card h2, .info-card h3, .info-card h4, .info-card strong { color: #fff; }
.info-list { margin-top: 26px; display: grid; gap: 20px; }
.info-list li { display: flex; gap: 15px; align-items: flex-start; }
.info-list .ico {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, .08);
  color: var(--mint-300);
}
.info-list dt { font-size: 13px; font-weight: 800; letter-spacing: .1em; color: #93A9BE; text-transform: uppercase; }
.info-list dd {
  margin: 5px 0 0;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em;
  word-break: break-all;
}
.info-list dd a { color: #fff; text-decoration: none; }
.info-list dd a:hover { color: var(--mint-300); text-decoration: underline; }
.info-note {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--on-dark-line);
  font-size: 14.5px;
  color: #A9BFD2;
  line-height: 1.7;
}

/* ------------------------------------------------------------
   17. CTA band + Footer
   ------------------------------------------------------------ */
.cta-band {
  margin: 0 var(--shell-x);
  border-radius: var(--r-2xl) var(--r-2xl) 0 0;
  background:
    radial-gradient(70% 120% at 82% 8%, rgba(0, 166, 126, .28), transparent 60%),
    linear-gradient(150deg, #071A2E, #0A2942);
  color: var(--on-dark-soft);
  padding-block: clamp(56px, 6vw, 84px);
}
.cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.cta-band h2 { font-size: clamp(26px, 3.2vw, 40px); color: #fff; letter-spacing: -.03em; }
.cta-band p { margin-top: 14px; color: var(--on-dark-soft); font-size: 17px; }
.cta-band__btns { display: flex; flex-wrap: wrap; gap: 12px; }

.footer {
  background: #06172A;
  color: #A9BFD2;
  padding-block: clamp(48px, 5vw, 68px) 34px;
}
.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 3vw, 48px);
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
@media (max-width: 780px) { .footer__top { grid-template-columns: minmax(0, 1fr); } }
.footer .brand__logo { height: 24px; }
.footer__desc { margin-top: 18px; font-size: 15px; line-height: 1.75; max-width: 380px; color: #A9BFD2; }
.footer h3 {
  font-size: 13px; font-weight: 800; letter-spacing: .1em;
  color: #7D93A8; text-transform: uppercase; margin-bottom: 16px;
}
.footer li + li { margin-top: 10px; }
.footer a { color: #C4D3E1; text-decoration: none; font-size: 15.5px; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding-top: 26px;
  font-size: 13.5px;
  color: #7D93A8;
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 8px 20px; }

.to-top {
  position: fixed;
  right: clamp(16px, 2.4vw, 28px);
  bottom: clamp(16px, 2.4vw, 28px);
  z-index: 90;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-200);
  border-radius: 50%;
  background: #fff;
  color: var(--navy-900);
  box-shadow: var(--sh-md);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.to-top.is-on { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }

/* ------------------------------------------------------------
   18. Reveal animation
   ------------------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal--d1 { transition-delay: .08s; }
.reveal--d2 { transition-delay: .16s; }
.reveal--d3 { transition-delay: .24s; }

/* ============================================================
   20. 인터랙션 · 모션 확장
   ============================================================ */

/* --- 상단 스크롤 진행 바 --- */
.progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  z-index: 120;
  background: transparent;
  pointer-events: none;
}
.progress__bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--mint-500), var(--navy-500));
  transform-origin: left;
  transition: width .1s linear;
}

/* --- 히어로 진입 모션 --- */
.hero__copy > * {
  opacity: 0;
  transform: translateY(18px);
  animation: heroIn .9s var(--ease) forwards;
}
.hero__copy > *:nth-child(1) { animation-delay: .05s; }
.hero__copy > *:nth-child(2) { animation-delay: .15s; }
.hero__copy > *:nth-child(3) { animation-delay: .25s; }
.hero__copy > *:nth-child(4) { animation-delay: .35s; }
.hero__copy > *:nth-child(5) { animation-delay: .45s; }
.mock { opacity: 0; animation: heroIn 1.1s var(--ease) .3s forwards; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

/* --- 히어로 라이브 데모 --- */
.mock__device { transition: transform .6s var(--ease); }
.mock__screen { position: relative; overflow: hidden; }
.mock__say { transition: background-color .35s var(--ease); }
.mock__say.is-listening { background: var(--navy-700); }

.demo-text { display: inline-block; min-height: 1.5em; }
.demo-text::after {
  content: "";
  display: inline-block;
  width: 2px; height: 1.05em;
  margin-left: 2px;
  background: var(--mint-400);
  vertical-align: -.16em;
  animation: caret 1s steps(2) infinite;
}
.mock__say.is-done .demo-text::after { display: none; }
@keyframes caret { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }

.mock__result {
  transition: opacity .22s var(--ease), transform .22s var(--ease),
              background-color .4s var(--ease), border-color .4s var(--ease);
}
/* 화면 전환 순간 — 완전히 비우지 않고 살짝 흐려지게 */
.mock__result.is-swap { opacity: .18; transform: translateY(6px); }

/* 발화 전 대기 화면 */
.mock__result.is-idle {
  background: #F7F9F9;
  border-color: var(--line-200);
}
.mock__result.is-idle b { color: var(--ink-500); }
.mock__result.is-idle span { color: var(--ink-400); }
.mock__result.is-idle .mock__ticket { border-top-color: var(--line-200); }
.mock__result.is-idle .mock__ticket strong { color: var(--ink-400); letter-spacing: .1em; }
/* 매칭 문구는 자리를 늘 차지한 채 흐림→선명으로만 바뀝니다 (카드 높이 고정) */
.mock__arrow span { opacity: 0; transition: color .3s var(--ease), opacity .3s var(--ease); }
.mock__arrow.is-hit span { color: var(--mint-600); opacity: 1; }

.mock__wave.is-idle i { animation-play-state: paused; height: 7px; opacity: .4; }

/* 데모 컨트롤 (진행 점 + 일시정지) */
.demo-ctrl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 16px;
  padding: 0 4px;
}
.demo-play {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .06);
  color: #C4D3E1;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease);
}
.demo-play:hover { background: rgba(255, 255, 255, .14); color: #fff; border-color: rgba(255, 255, 255, .45); }
.demo-play__play { display: none; }
.demo-play[aria-pressed="true"] .demo-play__play { display: block; }
.demo-play[aria-pressed="true"] .demo-play__pause { display: none; }

.demo-dots {
  display: flex;
  gap: 7px;
}
.demo-dots button {
  position: relative;
  width: 28px; height: 4px;
  padding: 0;
  border: 0;
  border-radius: 3px;
  background: rgba(255, 255, 255, .38);
  cursor: pointer;
  transition: background-color .3s var(--ease), width .3s var(--ease);
}
.demo-dots button.is-on { width: 40px; }
/* 터치 영역 확보 */
.demo-dots button::after { content: ""; position: absolute; inset: -12px -4px; }
.demo-dots button.is-on { background: var(--mint-400); }
.demo-dots button:hover { background: rgba(255, 255, 255, .45); }

/* --- 버튼 · 링크 마이크로 인터랙션 --- */
.btn { position: relative; overflow: hidden; }
.btn > * { position: relative; z-index: 1; }
.btn--primary::after,
.btn--navy::after,
.btn--light::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 160% at var(--mx, 50%) 120%, rgba(255, 255, 255, .22), transparent 60%);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.btn--primary:hover::after,
.btn--navy:hover::after,
.btn--light:hover::after { opacity: 1; }
.btn .ico { transition: transform .22s var(--ease); }
.btn:hover .ico { transform: translateX(4px); }

/* --- 카드 호버 --- */
.card, .trust-card, .road__item, .person, .stat, .step {
  transition: transform .3s var(--ease), box-shadow .3s var(--ease),
              border-color .3s var(--ease), background-color .3s var(--ease);
}
.stat:hover, .trust-card:hover, .person:hover, .road__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
  border-color: #D2DCD9;
}
.road__item--now:hover { border-color: var(--navy-700); }

/* --- 통계 벤토 (좌우 비대칭) --- */
.bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 20px);
}
.bento > * { grid-column: span 4; }
.bento .stat--feature {
  grid-column: span 5;
  padding: clamp(28px, 3vw, 40px);
  background: linear-gradient(158deg, #FFFFFF, #F2F8F6);
  border-color: #D8E7E1;
}
.bento .stat--feature .stat__num { font-size: clamp(44px, 5.6vw, 72px); }
.bento .stat--wide { grid-column: span 7; }
.bento .stat--half { grid-column: span 6; }
.bento .stat--narrow { grid-column: span 3; }
@media (max-width: 900px) {
  .bento > *, .bento .stat--feature, .bento .stat--wide,
  .bento .stat--half, .bento .stat--narrow { grid-column: span 6; }
}
@media (max-width: 560px) {
  .bento > *, .bento .stat--feature, .bento .stat--wide,
  .bento .stat--half, .bento .stat--narrow { grid-column: span 12; }
}

/* 인용 안 통계 (풀 스탯) */
.pullstat {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line-200);
}
.pullstat b {
  font-size: clamp(30px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -.04em;
  color: #B4442E;
  line-height: 1;
}
.pullstat > span { font-size: 15.5px; color: var(--ink-500); }
.pullstat > span strong { color: var(--ink-900); font-weight: 700; }

/* --- 포지셔닝 블록 (기존 notbox 대체) --- */
.stance {
  margin-top: 32px;
  border: 1px solid var(--line-200);
  border-radius: var(--r-lg);
  background: var(--surface);
  overflow: hidden;
}
.stance__row { padding: 22px clamp(20px, 2.2vw, 26px); }
.stance__row + .stance__row { border-top: 1px solid var(--line-100); }
.stance__row--yes { background: linear-gradient(120deg, #F4FBF8, #FFFFFF); }
.stance__k {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  margin-bottom: 10px;
}
.stance__row--no .stance__k { color: #9B3F2A; }
.stance__row--yes .stance__k { color: #05604A; }
.stance__v { font-size: 16px; line-height: 1.7; color: var(--ink-700); }
.stance__row--no .stance__v { color: var(--ink-500); text-decoration: line-through; text-decoration-color: rgba(155, 63, 42, .45); }
.stance__row--yes .stance__v { font-weight: 600; color: var(--ink-900); }

/* --- 기능 목록 (아이콘 박스 제거 · 괘선 편집형) --- */
.feat__row {
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  transition: background-color .3s var(--ease);
}
.feat__ico {
  width: 30px; height: 30px;
  border-radius: 0;
  background: none;
  color: var(--navy-800);
  margin-top: 2px;
}
.feat__row:hover .feat__ico { color: var(--mint-600); }
.feat__row h3 { transition: color .25s var(--ease); }
.feat__row:hover h3 { color: var(--mint-600); }

/* --- 단계 카드 계단 배치 + 연결선 ---
   위·아래 여백 합을 세 카드 모두 68px 로 맞춰, 계단으로 내려가면서도
   카드 높이는 서로 같아지도록 했습니다(align-items 기본값 stretch 유지). */
@media (min-width: 861px) {
  .steps { position: relative; }
  .steps::before {
    content: "";
    position: absolute;
    left: 8%; right: 8%; top: 62px;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--line-200) 0 8px, transparent 8px 16px);
    z-index: 0;
  }
  .step { position: relative; z-index: 1; }
  .step:nth-child(1) { margin-bottom: 68px; }
  .step:nth-child(2) { margin-top: 34px; margin-bottom: 34px; }
  .step:nth-child(3) { margin-top: 68px; }
  .steps::before { top: 96px; }
}
.step__n {
  position: relative;
  transition: transform .4s var(--ease), background-color .3s var(--ease);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.step:hover .step__n { background: var(--mint-600); transform: scale(1.06); }
.step.is-in .step__n::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid var(--mint-500);
  opacity: 0;
  animation: ping 2.6s var(--ease) infinite;
}
.step:nth-child(2).is-in .step__n::after { animation-delay: .5s; }
.step:nth-child(3).is-in .step__n::after { animation-delay: 1s; }
@keyframes ping {
  0% { transform: scale(.86); opacity: .8; }
  60%, 100% { transform: scale(1.35); opacity: 0; }
}

/* --- 적용 현장 탭 --- */
.tabs { margin-top: clamp(40px, 4.6vw, 64px); }
.tabs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 6px;
  border-radius: var(--r-pill);
  background: var(--canvas-2);
  border: 1px solid var(--line-200);
  width: fit-content;
  max-width: 100%;
}
.tabs__btn {
  padding: 12px 22px;
  border: 0;
  border-radius: var(--r-pill);
  background: transparent;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink-500);
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
}
.tabs__btn:hover { color: var(--navy-900); }
.tabs__btn[aria-selected="true"] {
  background: var(--navy-800);
  color: #fff;
  box-shadow: 0 4px 14px rgba(11, 36, 64, .22);
}
/* 좁은 화면 — 줄바꿈 대신 가로 스크롤 (페이지 자체는 가로 스크롤 없음) */
@media (max-width: 620px) {
  .tabs__list {
    flex-wrap: nowrap;
    width: 100%;
    overflow-x: auto;
    border-radius: var(--r-md);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .tabs__list::-webkit-scrollbar { display: none; }
  .tabs__btn { padding: 11px 16px; font-size: 15px; }
}

.tabs__panels { margin-top: 24px; }
.tabs__panel[hidden] { display: none; }
.tabs__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(24px, 3vw, 44px);
  align-items: center;
  padding: clamp(26px, 3vw, 40px);
  border-radius: var(--r-xl);
  background: var(--surface);
  border: 1px solid var(--line-200);
  animation: panelIn .45s var(--ease);
}
@keyframes panelIn { from { opacity: 0; transform: translateY(10px); } }
@media (max-width: 860px) { .tabs__panel { grid-template-columns: minmax(0, 1fr); } }
.tabs__panel h3 { font-size: clamp(21px, 2vw, 26px); margin-bottom: 12px; }
.tabs__panel p { color: var(--ink-500); font-size: 16px; }
.tabs__meta { display: grid; gap: 14px; margin-top: 24px; }
.tabs__meta div { display: flex; gap: 12px; align-items: baseline; }
.tabs__meta dt {
  flex: none;
  width: 84px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--mint-600);
}
.tabs__meta dd { margin: 0; font-size: 15.5px; color: var(--ink-700); }

.say-card {
  padding: clamp(22px, 2.4vw, 30px);
  border-radius: var(--r-lg);
  background: linear-gradient(150deg, var(--navy-800), #0A2942);
  color: #fff;
}
/* .tabs__panel p 규칙보다 우선하도록 명시 (어두운 배경 대비 확보) */
.tabs__panel .say-card__q { color: #fff; }
.tabs__panel .say-card__arrow { color: #A9BFD2; }
.tabs__panel .say-card__a { color: #A8F0DA; }
.say-card__q {
  font-size: clamp(19px, 1.9vw, 24px);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.5;
}
.say-card__arrow {
  display: flex; align-items: center; gap: 10px;
  margin: 18px 0;
  font-size: 12.5px; font-weight: 800; letter-spacing: .1em;
  color: #8FA6BB;
}
.say-card__arrow::after { content: ""; flex: 1; height: 1px; background: var(--on-dark-line); }
.say-card__a {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 20px;
  border-radius: var(--r-md);
  background: rgba(25, 199, 154, .14);
  border: 1px solid rgba(25, 199, 154, .4);
  color: #A8F0DA;
  font-weight: 700;
  font-size: 16.5px;
}

/* --- FAQ 아코디언 --- */
.faq { display: grid; gap: 0; border-top: 1px solid var(--line-200); }
.faq__item { border-bottom: 1px solid var(--line-200); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 4px;
  border: 0;
  background: none;
  text-align: left;
  font-size: clamp(17px, 1.5vw, 19px);
  font-weight: 700;
  letter-spacing: -.025em;
  color: var(--ink-900);
  cursor: pointer;
  transition: color .22s var(--ease);
}
.faq__q:hover { color: var(--mint-600); }
.faq__mark {
  flex: none;
  width: 30px; height: 30px;
  margin-top: 2px;
  border-radius: 50%;
  border: 1.5px solid var(--line-200);
  position: relative;
  transition: transform .35s var(--ease), border-color .25s var(--ease), background-color .25s var(--ease);
}
.faq__mark::before, .faq__mark::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 12px; height: 1.8px;
  margin: -.9px 0 0 -6px;
  background: var(--ink-700);
  border-radius: 2px;
  transition: transform .35s var(--ease), background-color .25s var(--ease);
}
.faq__mark::after { transform: rotate(90deg); }
.faq__q:hover .faq__mark { border-color: var(--mint-500); }
.faq__q[aria-expanded="true"] .faq__mark {
  background: var(--mint-600);
  border-color: var(--mint-600);
  transform: rotate(180deg);
}
.faq__q[aria-expanded="true"] .faq__mark::before,
.faq__q[aria-expanded="true"] .faq__mark::after { background: #fff; }
.faq__q[aria-expanded="true"] .faq__mark::after { transform: rotate(0); }

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .4s var(--ease);
}
.faq__a > div { overflow: hidden; visibility: hidden; transition: visibility .4s; }
.faq__item.is-open .faq__a > div { visibility: visible; }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a p {
  padding: 0 44px 28px 4px;
  max-width: 74ch;               /* 컨테이너는 넓히되 읽기 길이는 유지 */
  font-size: 16px;
  line-height: 1.78;
  color: var(--ink-500);
}
/* 질문 텍스트 (앞에 .faq__ico 가 붙으므로 :first-child 로 잡지 않습니다)
   margin-right:auto 로 남는 공간을 흡수해야 space-between 이 아이콘과
   텍스트 사이를 벌리지 않고 +/- 마크만 오른쪽 끝에 붙습니다 */
.faq__q > span:not(.faq__mark) { max-width: 52ch; margin-right: auto; }

/* --- 다크 섹션 커서 스포트라이트 --- */
.dark-shell { position: relative; overflow: hidden; }
.dark-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(360px circle at var(--sx, 50%) var(--sy, 30%), rgba(25, 199, 154, .12), transparent 70%);
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.dark-shell.is-hot::after { opacity: 1; }

/* --- 등장 모션 변형 --- */
.reveal--left { transform: translateX(-26px); }
.reveal--right { transform: translateX(26px); }
.reveal--scale { transform: scale(.965); }
.reveal--left.is-in, .reveal--right.is-in, .reveal--scale.is-in { transform: none; }

/* 자식 요소 순차 등장 */
.stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.stagger.is-in > * { opacity: 1; transform: none; }
.stagger.is-in > *:nth-child(1) { transition-delay: .05s; }
.stagger.is-in > *:nth-child(2) { transition-delay: .13s; }
.stagger.is-in > *:nth-child(3) { transition-delay: .21s; }
.stagger.is-in > *:nth-child(4) { transition-delay: .29s; }
.stagger.is-in > *:nth-child(5) { transition-delay: .37s; }
.stagger.is-in > *:nth-child(6) { transition-delay: .45s; }

/* 제목 줄 단위 등장 */
.lines span {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.lines.is-in span { opacity: 1; transform: none; }
.lines.is-in span:nth-child(2) { transition-delay: .1s; }
.lines.is-in span:nth-child(3) { transition-delay: .2s; }

/* 표 행 하이라이트 */
table.cmp tbody tr { transition: background-color .22s var(--ease); }
table.cmp tbody tr:hover { background: #FAFCFB; }
table.cmp tbody tr:last-child:hover { background: transparent; }

/* 링크 밑줄 스윕 */
.link-sweep {
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: left bottom;
  text-decoration: none;
  transition: background-size .3s var(--ease);
}
.link-sweep:hover { background-size: 100% 1px; text-decoration: none; }

/* ------------------------------------------------------------
   18-b. 픽토그램 (라인 일러스트)
   - 전부 인라인 SVG · 외부 요청 0 · 레이아웃 시프트 0
   - 기본선 stroke, 강조 .pi-ac, 배경선 .pi-soft, 점 .pi-dot
   - 모두 장식 요소이므로 마크업에서 aria-hidden="true" 처리
     (담고 있는 정보는 옆 제목·본문에 그대로 있습니다)
   ------------------------------------------------------------ */
.pict {
  display: block;
  width: 100%;
  height: auto;
  fill: none;
  stroke: var(--navy-600);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pict          { stroke: var(--pi-line, var(--navy-600)); }
.pict .pi-ac   { stroke: var(--pi-accent, var(--mint-500)); }
.pict .pi-soft { stroke: var(--pi-muted, #AFBDC6); }
.pict .pi-dot  { fill: var(--pi-accent, var(--mint-500)); stroke: none; }

/* 어두운 배경 컨텍스트 — 토큰만 바꾸면 안쪽 픽토그램이 모두 따라옵니다 */
.on-dark, .law, .say-card, .road__item--now {
  --pi-line: rgba(255, 255, 255, .55);
  --pi-accent: var(--mint-300);
  --pi-muted: rgba(255, 255, 255, .3);
}
/* 경고 톤 카드는 강조색을 카드 색에 맞춥니다 */
.stat--warn { --pi-accent: #B4442E; }

/* 확대 배율이 큰 씬(viewBox 112×64)은 선을 얇게 잡아 두께를 맞춥니다 */
.pict--scene { stroke-width: 1.3; }

/* --- 단계 카드 상단 씬 --- */
.step__art {
  margin: calc(var(--step-pad) * -1) calc(var(--step-pad) * -1) 24px;
  padding: 26px var(--step-pad) 22px;
  background: linear-gradient(165deg, var(--canvas-2), var(--canvas));
  border-bottom: 1px solid var(--line-200);
}
.step__art .pict {
  max-width: 212px;
  margin-inline: auto;
  transition: transform .35s var(--ease);
}
.step:hover .step__art .pict { transform: translateY(-3px); }
@media (max-width: 560px) { .step__art .pict { max-width: 186px; } }

/* --- 통계 카드 (우측 상단) --- */
.stat__ico {
  position: absolute;
  top: clamp(18px, 2vw, 24px);
  right: clamp(18px, 2vw, 24px);
  width: clamp(46px, 4.6vw, 58px);
}
.stat__ico .pict { stroke-width: 2.4; }

/* --- 적용 현장 탭 (어두운 say-card 위) --- */
.say-card__ico {
  display: flex; align-items: center; justify-content: center;
  width: 54px; height: 54px;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid var(--on-dark-line);
}
.say-card__ico .pict { stroke-width: 2.6; }

/* --- 법령 박스 (어두운 네이비) --- */
.law__ico {
  width: 52px;
  margin-bottom: 18px;
}
.law__ico .pict { stroke-width: 2.2; }

/* --- 도입 효과 KPI (어두운 배경) --- */
.kpi__ico {
  width: 40px;
  margin-bottom: 18px;
}
.kpi__ico .pict { stroke-width: 2.4; }

/* --- 비교표 행 구분 ---
   th 는 table-cell 로 유지해야 열 너비·정렬이 살아 있으므로
   아이콘만 인라인으로 띄웁니다(flex 컨테이너로 바꾸지 않습니다). */
.cmp__ico {
  display: inline-block;
  vertical-align: -5px;
  width: 23px;
  margin-right: 9px;
  stroke-width: 1.7;
}
table.cmp tbody th.is-us { --pi-line: #05513E; --pi-accent: var(--mint-600); }

/* --- 신뢰 요소 카드 (우측 상단) --- */
.trust-card__ico {
  position: absolute;
  top: clamp(20px, 2.2vw, 26px);
  right: clamp(20px, 2.2vw, 26px);
  width: 46px;
}
.trust-card__ico .pict { stroke-width: 2.2; }

/* --- 로드맵 --- */
.road__ico {
  width: 32px;
  margin-bottom: 14px;
}
.road__ico .pict { stroke-width: 2; }

/* --- 팀: 이니셜 아바타 위 역할 배지 --- */
.person__avatar { position: relative; }
/* 이니셜은 별도 span 으로 감쌉니다 — 배지 주변 공백이 익명 플렉스 항목에
   섞여 들어가면 가운데 정렬이 어긋납니다.
   color 를 다시 지정하는 이유: `.person p`(0,1,1) 가 `.person__avatar`(0,1,0)
   의 #fff 를 이겨서 이니셜이 회색으로 깔리고 있었습니다(네이비 위 2.4:1). */
.person__initial { line-height: 1; color: #fff; }
.person__badge {
  position: absolute;
  right: -2px; bottom: -2px;
  width: 22px; height: 22px;
  padding: 4.5px;
  border-radius: 50%;
  background: var(--mint-050);
  border: 2px solid var(--surface);
  display: flex; align-items: center; justify-content: center;
}
.person__badge .pict { stroke: var(--mint-600); stroke-width: 2.2; }

/* --- FAQ 질문 앞 아이콘 --- */
.faq__ico {
  flex: none;
  width: 23px;
  margin-top: 3px;
  margin-right: -6px;      /* .faq__q 의 gap 20px 을 아이콘 쪽만 좁힙니다 */
  stroke-width: 1.7;
  transition: opacity .22s var(--ease);
  opacity: .75;
}
.faq__q:hover .faq__ico,
.faq__q[aria-expanded="true"] .faq__ico { opacity: 1; }
.faq__q[aria-expanded="true"] .faq__ico { --pi-line: var(--mint-600); }

/* ------------------------------------------------------------
   19. 접근성 · 사용자 환경 대응
   ------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .step::before { transform: scaleX(1); }

  /* 확장 모션도 모두 정지 — 콘텐츠는 그대로 노출 */
  .hero__copy > *, .mock { opacity: 1; transform: none; animation: none; }
  .stagger > * { opacity: 1; transform: none; }
  .lines span { opacity: 1; transform: none; }
  .sec-index__line { transform: scaleX(1); }
  .step.is-in .step__n::after { animation: none; display: none; }
  .demo-text::after { animation: none; opacity: 1; }
  .dark-shell::after { display: none; }
  .tabs__panel { animation: none; }
  .faq__a { transition: none; }
  .btn:hover .ico, .btn:hover, .step:hover, .stat:hover,
  .trust-card:hover, .person:hover, .road__item:hover { transform: none; }
  .step:hover .step__art .pict { transform: none; }
}

/* 고대비 모드 */
@media (prefers-contrast: more) {
  :root {
    --ink-500: #384552;
    --ink-400: #47525E;
    --line-200: #B9C2C6;
  }
  .card, .stat, .step, .trust-card, .road__item, .person { border-width: 1.5px; }

  /* 픽토그램 배경선도 본문 수준 대비로 끌어올립니다 */
  .pict .pi-soft { stroke: var(--ink-500); }
  .say-card__ico .pict { stroke: rgba(255, 255, 255, .85); }
  .say-card__ico .pict .pi-soft { stroke: rgba(255, 255, 255, .6); }
}

/* 인쇄 */
@media print {
  .header, .to-top, .cta-band, .hero__cta, .form { display: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; }
  .hero, .dark-shell, .info-card, .law { background: #fff !important; color: #000 !important; }
  .hero h1, .on-dark h2, .on-dark h3 { color: #000 !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
