@charset "utf-8";
/* ==========================================================================
   eMnet — site3 "The System"
   라이트 미니멀 프로덕트. 화이트 + 웜그레이 서피스, 잉크 텍스트, 1px 보더.
   그린 토큰 2종
     --green      #00C853  면·차트·막대 전용 (흰 배경 대비 2.24:1 → 텍스트 금지)
     --green-ink  #007A3D  텍스트·버튼 전용 (흰색 대비 5.45:1 — WCAG AA 충족)
   ========================================================================== */

:root {
  --ink: #0F172A;
  --ink-2: #1E293B;
  --muted: #475569;   /* 흰 배경 대비 7.58:1 */
  --muted-2: #64748B; /* 흰 배경 대비 4.76:1 — 본문 크기 이상에만 */

  --bg: #FFFFFF;
  --surface: #F8F7F4;
  --surface-2: #F2F0EC;

  --line: #E4E2DD;
  --line-2: #D6D3CC;

  --green: #00C853;
  --green-ink: #007A3D;
  --green-ink-h: #00612F;
  --green-soft: #E9F7EF;
  --green-line: #B9E3C9;

  --amber: #B45309;
  --amber-soft: #FEF3E2;

  --r-xs: 4px;
  --r-sm: 6px;
  --r: 8px;
  --r-lg: 10px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .04);
  --shadow: 0 6px 24px -12px rgba(15, 23, 42, .18);

  --container: 1200px;
  --pad: 20px;
  --header-h: 64px;

  --sans: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
    "Apple SD Gothic Neo", "Segoe UI", Roboto, "Noto Sans KR", sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  word-break: keep-all;
  overflow-wrap: anywhere;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; }
img { height: auto; display: block; }
h1, h2, h3, h4 { margin: 0; line-height: 1.28; letter-spacing: -0.02em; font-weight: 700; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
table { border-collapse: collapse; width: 100%; }

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--green-ink);
  outline-offset: 2px;
  border-radius: var(--r-xs);
}

.num, .tabular { font-variant-numeric: tabular-nums; font-feature-settings: "tnum" 1; }

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

/* ---------- layout ---------- */
/* 그리드 아이템의 자동 최소 크기(min-width:auto)는 내부 스크롤 컨테이너의 min-width까지 끌어올려
   페이지 전체를 밀어낸다. 레이아웃 그리드의 자식은 항상 0까지 줄어들 수 있어야 한다. */
.hero__grid > *, .phero__grid > *, .seg__panel-grid > *, .editorial > *, .geo > *,
.bento > *, .modules > *, .refs > *, .inq__grid > *, .cta__grid > *, .pager > * { min-width: 0; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: 84px 0; }
.section--tight { padding: 56px 0; }
.section--surface { background: var(--surface); border-block: 1px solid var(--line); }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: var(--r-sm);
  transition: top .15s ease;
}
.skip-link:focus { top: 12px; }

/* ---------- 공통 타이포 ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8125rem; font-weight: 600; letter-spacing: .04em;
  color: var(--green-ink); text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 2px; background: var(--green); }
.section-title { font-size: clamp(1.5rem, 1.05rem + 1.6vw, 2.125rem); letter-spacing: -0.03em; }
.section-lead { margin-top: 12px; color: var(--muted); font-size: 1rem; max-width: 62ch; }
.section-head { margin-bottom: 32px; }
.section-head--split { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

/* ---------- 버튼 ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 46px; padding: 0 20px; border-radius: var(--r-sm);
  border: 1px solid transparent; background: none; cursor: pointer;
  font-size: .9375rem; font-weight: 600; letter-spacing: -0.01em;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.btn--primary { background: var(--green-ink); color: #fff; }
.btn--primary:hover { background: var(--green-ink-h); }
.btn--ghost { border-color: var(--line-2); background: #fff; color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--sm { height: 38px; padding: 0 14px; font-size: .875rem; }
.btn--block { width: 100%; }
.btn .arw { transition: transform .15s ease; }
.btn:hover .arw { transform: translateX(2px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .9375rem; font-weight: 600; color: var(--green-ink);
}
.link-arrow:hover { text-decoration: underline; text-underline-offset: 3px; }
.link-arrow .arw { transition: transform .15s ease; }
.link-arrow:hover .arw { transform: translateX(2px); }

/* ---------- 헤더 ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; gap: 24px; height: var(--header-h); }
.logo { display: inline-flex; align-items: baseline; gap: 2px; font-size: 1.375rem; font-weight: 800; letter-spacing: -0.04em; }
.logo b { font-weight: 800; }
.logo .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); align-self: center; margin-left: 3px; }
.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 4px; }
.nav__list a {
  display: inline-flex; align-items: center; height: 36px; padding: 0 12px;
  border-radius: var(--r-sm); font-size: .9375rem; font-weight: 500; color: var(--ink-2);
}
.nav__list a:hover { background: var(--surface-2); }
.nav__list a[aria-current="page"],
.nav__list a.is-section { color: var(--green-ink); font-weight: 600; }
.header__cta { display: inline-flex; }
.nav__cta { display: none; }
.nav-toggle {
  display: none; width: 40px; height: 40px; margin-left: auto;
  border: 1px solid var(--line-2); border-radius: var(--r-sm); background: #fff;
  align-items: center; justify-content: center; cursor: pointer;
}
.nav-toggle span { display: block; width: 16px; height: 1.5px; background: var(--ink); position: relative; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 16px; height: 1.5px; background: var(--ink);
}
.nav-toggle span::before { top: -5px; }
.nav-toggle span::after { top: 5px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* ---------- 푸터 ---------- */
.footer { background: var(--surface); border-top: 1px solid var(--line); padding: 56px 0 40px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer__title { font-size: .8125rem; font-weight: 700; letter-spacing: .02em; color: var(--ink); margin-bottom: 14px; }
.footer__links li + li { margin-top: 8px; }
.footer__links a { font-size: .9375rem; color: var(--muted); }
.footer__links a:hover { color: var(--green-ink); }
.footer__corp { font-size: .875rem; color: var(--muted); line-height: 1.9; }
.footer__corp dt { display: inline; font-weight: 600; color: var(--ink-2); }
.footer__corp dd { display: inline; margin: 0; }
.footer__corp .row + .row { margin-top: 2px; }
.footer__notice {
  margin-top: 20px; padding: 12px 14px; border: 1px solid var(--line-2);
  border-radius: var(--r-sm); background: #fff; font-size: .8125rem; color: var(--muted);
}
.footer__notice b { color: var(--ink); }
.footer__bottom {
  margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .8125rem; color: var(--muted-2);
}

/* ==========================================================================
   패널 / 위젯 공통 (모든 차트·표는 HTML/CSS/inline SVG)
   ========================================================================== */
.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); }
.panel__hd {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  padding: 14px 16px; border-bottom: 1px solid var(--line);
}
.panel__title { font-size: .9375rem; font-weight: 700; letter-spacing: -0.01em; }
.panel__sub { font-size: .8125rem; color: var(--muted-2); }
.panel__bd { padding: 16px; }
.panel__ft { padding: 12px 16px; border-top: 1px solid var(--line); }

.demo-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 8px; border: 1px solid var(--line-2); border-radius: 999px;
  background: var(--surface); font-size: .6875rem; font-weight: 600; color: var(--muted);
  letter-spacing: -0.01em; white-space: nowrap;
}
.demo-tag::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--line-2); }
/* 회사 공개 사실을 담은 패널. 예시 데이터와 구분한다. */
.demo-tag--fact { border-color: var(--green-line); background: var(--green-soft); color: var(--green-ink); }
.demo-tag--fact::before { background: var(--green); }
.demo-note { margin-top: 10px; font-size: .75rem; color: var(--muted-2); }

/* KPI */
.kpi-row { display: grid; grid-template-columns: repeat(3, 1fr); }
.kpi { min-width: 0; padding: 14px 16px; border-right: 1px solid var(--line); }
.kpi:last-child { border-right: 0; }
.kpi__label { font-size: .75rem; color: var(--muted-2); font-weight: 500; }
.kpi__value { margin-top: 4px; font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; white-space: nowrap; }
.kpi__delta { margin-top: 2px; font-size: .75rem; font-weight: 600; font-variant-numeric: tabular-nums; color: var(--muted); }
.kpi__delta--up { color: var(--green-ink); }
.kpi__delta--down { color: var(--amber); }

/* 라인 차트 */
.chart {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 6px 8px;
}
.chart__y {
  grid-column: 1; grid-row: 1;
  display: flex; flex-direction: column; justify-content: space-between;
  font-size: .6875rem; color: var(--muted-2); text-align: right;
  font-variant-numeric: tabular-nums; padding-block: 2px;
}
.chart__plot { grid-column: 2; grid-row: 1; min-width: 0; }
.chart__plot svg { width: 100%; height: auto; display: block; }
.chart__x {
  grid-column: 2; grid-row: 2;
  display: flex; justify-content: space-between;
  font-size: .6875rem; color: var(--muted-2); font-variant-numeric: tabular-nums;
}
.legend { display: flex; gap: 14px; flex-wrap: wrap; font-size: .75rem; color: var(--muted); }
.legend span { display: inline-flex; align-items: center; gap: 6px; }
.legend i { width: 12px; height: 2px; background: var(--green); border-radius: 2px; }
.legend i.is-prev { background: var(--line-2); }

/* 가로 막대 목록 */
.bars { display: grid; gap: 12px; }
.bars__row { display: grid; grid-template-columns: minmax(72px, auto) minmax(0, 1fr) auto; gap: 10px; align-items: center; }
.bars__label { font-size: .8125rem; color: var(--ink-2); }
.bars__track { height: 8px; border-radius: 999px; background: var(--surface-2); overflow: hidden; }
.bars__fill { display: block; height: 100%; border-radius: 999px; background: var(--green); }
.bars__fill--soft { background: var(--green-line); }
.bars__value { font-size: .8125rem; font-weight: 600; font-variant-numeric: tabular-nums; color: var(--ink); }

/* 세로 막대 */
.vbars { display: flex; align-items: stretch; gap: 10px; height: 132px; }
.vbars__col { flex: 1; min-width: 0; display: grid; grid-template-rows: minmax(0, 1fr) auto; gap: 6px; justify-items: center; }
.vbars__bar { align-self: end; width: 100%; max-width: 34px; border-radius: 4px 4px 0 0; background: var(--green); }
.vbars__bar--soft { background: var(--green-line); }
.vbars__cap { font-size: .6875rem; color: var(--muted-2); text-align: center; }

/* 상태 표 */
.dtable { font-size: .8125rem; }
.dtable th, .dtable td { padding: 9px 10px; text-align: left; border-bottom: 1px solid var(--line); }
.dtable thead th { font-size: .6875rem; font-weight: 600; color: var(--muted-2); background: var(--surface); }
.dtable tbody tr:last-child td { border-bottom: 0; }
.dtable .num { text-align: right; font-variant-numeric: tabular-nums; }
.badge {
  display: inline-flex; align-items: center; gap: 5px; padding: 2px 8px;
  border-radius: 999px; font-size: .6875rem; font-weight: 600; white-space: nowrap;
  background: var(--surface-2); color: var(--muted);
}
.badge::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.badge--on { background: var(--green-soft); color: var(--green-ink); }
.badge--warn { background: var(--amber-soft); color: var(--amber); }

.scroll-x { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.scroll-x table { min-width: 560px; }
/* 위젯 안의 작은 표. 데스크톱에서는 스크롤 없이 들어가고 좁은 화면에서만 표 안에서 넘어간다. */
.scroll-x--mini table { min-width: 420px; }
.scroll-hint { margin-top: 8px; font-size: .75rem; color: var(--muted-2); }

/* 퍼널 */
.funnel { display: grid; gap: 8px; }
.funnel__step { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 12px; }
.funnel__bar {
  height: 40px; border-radius: var(--r-sm); background: var(--green);
  display: flex; align-items: center; padding: 0 12px;
  font-size: .8125rem; font-weight: 600; color: #0B3D22; /* #00C853 대비 5.51:1 */
}
.funnel__step:nth-child(2) .funnel__bar { background: #33D375; color: #0B3D22; }
.funnel__step:nth-child(3) .funnel__bar { background: var(--green-line); color: #0B3D22; }
.funnel__meta { text-align: right; font-size: .8125rem; font-variant-numeric: tabular-nums; }
.funnel__meta b { display: block; font-weight: 700; }
.funnel__meta span { color: var(--muted-2); font-size: .75rem; }

/* 게이지 */
.gauge { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.gauge__svg { width: 132px; flex: none; position: relative; }
.gauge__svg svg { width: 100%; height: auto; }
.gauge__center {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
}
.gauge__val { font-size: 1.5rem; font-weight: 700; font-variant-numeric: tabular-nums; line-height: 1.1; }
.gauge__cap { font-size: .6875rem; color: var(--muted-2); }

/* 스파크라인 */
.spark svg { width: 100%; height: auto; display: block; }
.spark__meta { display: flex; justify-content: space-between; gap: 12px; margin-top: 8px; font-size: .75rem; color: var(--muted-2); font-variant-numeric: tabular-nums; }

/* 미니 매트릭스 */
.matrix { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.matrix__cell { border: 1px solid var(--line); border-radius: var(--r-sm); padding: 10px 12px; background: #fff; }
.matrix__cell b { display: block; font-size: .875rem; font-weight: 600; }
.matrix__cell span { display: block; margin-top: 3px; font-size: .75rem; color: var(--muted-2); }

/* A/B 비교 */
.ab { display: grid; gap: 12px; }
.ab__row { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 10px; align-items: center; }
.ab__key { width: 22px; height: 22px; border-radius: var(--r-xs); display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 700; background: var(--surface-2); color: var(--muted); }
.ab__row--win .ab__key { background: var(--green-soft); color: var(--green-ink); }
.gauge__list { font-size: .8125rem; color: var(--muted); display: grid; gap: 6px; min-width: 0; }
.gauge__list div { display: flex; justify-content: space-between; gap: 12px; }
.gauge__list b { color: var(--ink); font-weight: 600; font-variant-numeric: tabular-nums; }

/* 상태 목록 */
.statlist { display: grid; gap: 10px; }
.statlist li { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 10px; align-items: baseline; font-size: .8125rem; }
.statlist .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); transform: translateY(-1px); }
.statlist .dot--idle { background: var(--line-2); }
.statlist .when { color: var(--muted-2); font-size: .75rem; white-space: nowrap; font-variant-numeric: tabular-nums; }

/* 칩 */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex; align-items: center; padding: 5px 10px;
  border: 1px solid var(--line-2); border-radius: 999px;
  font-size: .8125rem; color: var(--ink-2); background: #fff;
}
.chip--soft { background: var(--surface); }

/* 데이터 정의 목록 */
.speclist { display: grid; gap: 0; }
.speclist > div { display: grid; grid-template-columns: 128px minmax(0, 1fr); gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.speclist > div:last-child { border-bottom: 0; }
.speclist dt { font-size: .8125rem; font-weight: 600; color: var(--muted); }
.speclist dd { margin: 0; font-size: .9375rem; }

/* ---------- 프로세스 (메인·상품 공용) ---------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process__step { padding: 0 24px 0 0; position: relative; }
.process__no {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%; background: #fff;
  border: 1px solid var(--line-2); font-size: .8125rem; font-weight: 700;
  font-variant-numeric: tabular-nums; color: var(--green-ink); position: relative; z-index: 1;
}
.process__step::before {
  content: ""; position: absolute; left: 38px; right: 0; top: 19px; height: 1px; background: var(--line-2);
}
.process__step:last-child::before { display: none; }
.process__step h3 { margin-top: 16px; font-size: 1.0625rem; }
.process__step p { margin-top: 8px; font-size: .875rem; color: var(--muted); }
.process__step ul { margin-top: 12px; display: grid; gap: 5px; }
.process__step li { font-size: .8125rem; color: var(--muted-2); padding-left: 11px; position: relative; }
.process__step li::before { content: ""; position: absolute; left: 0; top: 10px; width: 4px; height: 1px; background: var(--line-2); }

/* ---------- 성과 밴드 ---------- */
.factband { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff; overflow: hidden; }
.factband__item { padding: 26px 24px; border-right: 1px solid var(--line); }
.factband__item:last-child { border-right: 0; }
.factband__value { font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.125rem); font-weight: 800; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.factband__value small { font-size: .55em; font-weight: 700; margin-left: 2px; letter-spacing: -0.01em; }
.factband__label { margin-top: 6px; font-size: .875rem; color: var(--muted); }

/* ---------- CTA ---------- */
.cta { background: var(--ink); color: #fff; border-radius: var(--r-lg); padding: 48px; }
.cta__grid { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta h2 { font-size: clamp(1.375rem, 1rem + 1.4vw, 1.875rem); letter-spacing: -0.03em; }
.cta p { margin-top: 10px; color: #CBD5E1; font-size: .9375rem; }
.cta .btn--primary { background: var(--green); color: #06301A; }
.cta .btn--primary:hover { background: #00E060; }
.cta .btn--ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .32); }
.cta .btn--ghost:hover { border-color: #fff; }

/* ---------- 이미지 ---------- */
.figure { margin: 0; }
.figure img { width: 100%; border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--surface-2); }
.figure--strip img { aspect-ratio: 3 / 1; object-fit: cover; }
@media (max-width: 860px) { .figure--strip img { aspect-ratio: 16 / 9; } }
.figure figcaption { margin-top: 8px; font-size: .75rem; color: var(--muted-2); }

/* ==========================================================================
   반응형
   ========================================================================== */
@media (max-width: 1100px) {
  .process { grid-template-columns: 1fr 1fr; gap: 28px 0; }
  .process__step:nth-child(2n)::before { display: none; }
}

@media (max-width: 1023px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__corp { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  :root { --pad: 16px; }
  .section { padding: 56px 0; }
  .section--tight { padding: 40px 0; }
  .nav-toggle { display: inline-flex; }
  .header__cta { display: none; }
  .nav {
    display: none;
    position: absolute; left: 0; right: 0; top: var(--header-h);
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 12px var(--pad) 20px; margin: 0;
    box-shadow: var(--shadow);
    max-height: calc(100svh - var(--header-h)); overflow-y: auto;
  }
  .nav.is-open { display: block; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav__list a { height: 46px; padding: 0 12px; font-size: 1rem; }
  .nav__cta { display: block; margin-top: 12px; }
  .nav__cta .btn { width: 100%; }
  .factband { grid-template-columns: 1fr 1fr; }
  .factband__item { padding: 20px 18px; }
  .factband__item:nth-child(2n) { border-right: 0; }
  .factband__item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .cta { padding: 32px 24px; }
  .speclist > div { grid-template-columns: 1fr; gap: 4px; }
}

@media (max-width: 560px) {
  .process { grid-template-columns: 1fr; gap: 24px; }
  .process__step::before { display: none; }
  .process__step { padding-right: 0; }
  .kpi-row { grid-template-columns: 1fr 1fr; }
  .kpi { padding: 12px 14px; }
  /* 좁은 화면에서는 nowrap이 그리드 자동 최소폭을 밀어 올린다. 줄바꿈을 허용한다. */
  .kpi__value { font-size: 1.0625rem; white-space: normal; }
  .kpi:nth-child(2n) { border-right: 0; }
  .kpi:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .kpi:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .gauge { gap: 14px; }
  .gauge__svg { width: 110px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
