:root {
  --color-green-950: #071f1c;
  --color-green-900: #0c352f;
  --color-green-800: #154d43;
  --color-green-700: #1d695c;
  --color-green-600: #2a7d6c;
  --color-line: #e6eaec;
  --color-line-strong: #d5dde2;
  --color-bg: #f3f6f7;
  --color-bg-elevated: #fafcfc;
  --color-surface: #ffffff;
  --color-surface-alt: #f5f9f8;
  --color-text: #10181c;
  --color-muted: #5c6a72;
  --color-muted-2: #8a969c;

  --shadow-sm: 0 1px 0 rgba(16, 37, 32, 0.04);
  --shadow-md: 0 10px 30px rgba(10, 35, 30, 0.06);
  --shadow-lg: 0 20px 50px rgba(10, 35, 30, 0.08);
  --shadow-header: 0 12px 32px rgba(10, 35, 30, 0.05);

  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --page-max: 1200px;
  --header-height: 76px;

  --font-sans: "Pretendard", "Noto Sans KR", system-ui, sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.8125rem;
  --text-base: 0.9375rem;
  --text-lg: 1.0625rem;
  --text-xl: 1.25rem;
  --text-2xl: clamp(1.5rem, 2.5vw, 1.75rem);
  --text-hero: clamp(2.125rem, 5vw, 3.25rem);

  /* EVOS multipage (body.evos-site), ex-styles.css tokens */
  --bg: #f3f4f2;
  --paper: #ffffff;
  --ink: #1b2623;
  --muted: #66746f;
  --line: #d8dfdb;
  --deep: #0c352f;
  --deep2: #164b42;
  --soft: #eef2f0;
  --accent: #2f7a68;
  --shadow: 0 14px 36px rgba(12, 53, 47, 0.07);
  --max: 1240px;
  --radius: 22px;

  /* Shared motion (landing + evos-site) */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --duration-fast: 0.2s;
  --duration-med: 0.28s;
  --lift-hover: -2px;
  --lift-card: -3px;

  /* Spacing scale — 섹션·그리드·카드 공통 */
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 20px;
  --space-5: 24px;
  --space-6: 32px;
  --section-pad-y: 72px;

  /* EVOS 본문 캡션 대비 (muted보다 한 단계 진하게) */
  --text-subtle: #4a5754;
  /* Eyebrow / 라벨 (멀티페이지) */
  --evos-eyebrow-ls: 0.06em;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

body.is-nav-open {
  overflow: hidden;
}

/* index.html 랜딩 — motion 토큰과 동일 타임라인 사용 */
body.index-landing {
  --btn-lift-hover: var(--lift-hover);
}

body.index-landing .btn--primary:hover,
body.index-landing .btn--secondary:hover,
body.index-landing .btn--header-primary:hover {
  transform: translateY(var(--lift-hover));
}

body.index-landing .btn--primary:active,
body.index-landing .btn--secondary:active {
  transform: translateY(0);
}

/* 랜딩 서브페이지 — eyebrow 라벨 리듬 통일 */
body.index-landing .page-hero__box > .eyebrow:first-child {
  letter-spacing: var(--evos-eyebrow-ls);
  text-transform: uppercase;
  font-size: var(--text-xs);
  font-weight: 800;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 200;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--color-green-900);
  color: #fff;
}

.skip-link:focus {
  top: 16px;
}

/* Design system: badges */
.ds-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ds-badge--live {
  background: rgba(42, 125, 108, 0.14);
  color: var(--color-green-800);
  border: 1px solid rgba(29, 105, 92, 0.22);
}

.ds-badge--soft {
  background: rgba(12, 53, 47, 0.06);
  color: var(--color-green-900);
  border: 1px solid rgba(12, 53, 47, 0.1);
}

.ds-badge--neutral {
  background: #eef2f4;
  color: #4a565c;
  border: 1px solid var(--color-line);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  /* CI 로고(순백 배경 PNG)와 톤 맞춤 — 반투명 제거로 ‘흰 상자’ 현상 완화 */
  background: #ffffff;
  border-bottom: 1px solid rgba(230, 234, 236, 0.95);
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  background: #ffffff;
  border-bottom-color: rgba(220, 227, 230, 0.9);
  box-shadow: var(--shadow-header);
}

.site-header__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  min-height: var(--header-height);
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand__mark {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, var(--color-green-900), var(--color-green-700));
  box-shadow: 0 8px 20px rgba(12, 53, 47, 0.22);
}

.brand__mark--logo {
  width: auto;
  height: auto;
  padding: 2px 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.brand__logo-img {
  height: 36px;
  width: auto;
  max-width: 148px;
  object-fit: contain;
  display: block;
}

.brand--lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-lockup__mark {
  height: 38px;
  width: auto;
  max-width: min(42vw, 140px);
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.brand-lockup__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-green-900);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.site-header .brand-lockup__title {
  color: var(--color-green-900);
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand__eyebrow {
  font-size: 10px;
  color: var(--color-muted-2);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.brand__name {
  font-size: 18px;
  color: var(--color-text);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.site-header__nav-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  flex: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 8px;
}

.site-nav a {
  position: relative;
  padding: 8px 12px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: #3d4a50;
  letter-spacing: -0.01em;
  border-radius: var(--radius-xs);
  transition: color 0.15s ease, background 0.15s ease;
}

.site-nav a:hover {
  color: var(--color-green-900);
  background: rgba(12, 53, 47, 0.04);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-green-900);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions,
.hero__actions,
.button-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-line-strong);
  background: var(--color-surface);
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: border-color var(--duration-fast) var(--ease-out),
    background-color var(--duration-fast) var(--ease-out), color var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out), transform 0.12s var(--ease-out);
}

.btn:hover {
  border-color: #c5d0d6;
  background: var(--color-bg-elevated);
}

.btn:active {
  transform: translateY(1px);
}

.btn:focus-visible {
  outline: 2px solid var(--color-green-700);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--color-green-900);
  border-color: var(--color-green-900);
  color: #fff;
  box-shadow: 0 8px 22px rgba(12, 53, 47, 0.2);
}

.btn--primary:hover {
  background: var(--color-green-800);
  border-color: var(--color-green-800);
  box-shadow: 0 10px 26px rgba(12, 53, 47, 0.22);
}

.btn--secondary {
  background: #fff;
  border-color: rgba(12, 53, 47, 0.22);
  color: var(--color-green-900);
  box-shadow: var(--shadow-sm);
}

.btn--secondary:hover {
  border-color: var(--color-green-700);
  background: rgba(12, 53, 47, 0.03);
}

.btn--ghost {
  background: transparent;
  border-color: transparent;
  color: #3d4a50;
  box-shadow: none;
}

.btn--ghost:hover {
  background: rgba(12, 53, 47, 0.06);
  border-color: transparent;
}

.btn--lg {
  min-height: 50px;
  padding: 0 22px;
  font-size: var(--text-base);
  border-radius: var(--radius-md);
}

.btn--header-primary {
  min-height: 40px;
  padding: 0 16px;
  font-size: var(--text-sm);
  font-weight: 700;
  border-radius: 999px;
  background: var(--color-green-900);
  border-color: var(--color-green-900);
  color: #fff;
  box-shadow: 0 6px 16px rgba(12, 53, 47, 0.18);
}

.btn--header-primary:hover {
  background: var(--color-green-800);
  border-color: var(--color-green-800);
}

.btn--header-secondary {
  min-height: 40px;
  padding: 0 14px;
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: #4a565c;
  box-shadow: none;
}

.btn--header-secondary:hover {
  background: rgba(12, 53, 47, 0.06);
  color: var(--color-green-900);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--color-green-900);
  border-radius: 1px;
}

.site-main {
  min-height: calc(100vh - var(--header-height));
}

.page {
  display: none;
}

.page.is-active {
  display: block;
}

.hero-shell,
.section,
.page-hero,
.floating-card-grid {
  max-width: var(--page-max);
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

.hero-shell {
  position: relative;
  padding-top: 64px;
  padding-bottom: 56px;
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100vw, 1600px);
  background:
    radial-gradient(ellipse 90% 70% at 18% 12%, rgba(29, 105, 92, 0.09), transparent 55%),
    radial-gradient(ellipse 70% 55% at 88% 0%, rgba(12, 53, 47, 0.06), transparent 50%),
    linear-gradient(180deg, #eef5f3 0%, var(--color-bg) 42%, var(--color-bg) 100%);
  z-index: -1;
  pointer-events: none;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(12, 53, 47, 0.07);
  color: var(--color-green-900);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero__title,
.section-head h2,
.page-hero__box h1 {
  margin: 0;
  letter-spacing: -0.045em;
}

.hero__title {
  margin-top: 20px;
  font-size: var(--text-hero);
  font-weight: 800;
  line-height: 1.05;
  color: var(--color-text);
}

.hero__lead {
  margin: 20px 0 0;
  max-width: 32rem;
  font-size: var(--text-lg);
  line-height: 1.65;
  color: var(--color-muted);
  font-weight: 500;
}

.hero__actions {
  margin-top: 28px;
  gap: 12px;
}

.hero__meta {
  margin: 24px 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  font-size: var(--text-sm);
  color: var(--color-muted);
  font-weight: 500;
}

.hero__meta-divider {
  width: 1px;
  height: 14px;
  background: rgba(12, 53, 47, 0.15);
}

/* Landing home (#page-home) — 블록 중앙 정렬 */
#page-home .hero__content {
  text-align: center;
}

#page-home .hero .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

#page-home .hero__title {
  margin-left: auto;
  margin-right: auto;
}

#page-home .hero__lead {
  margin-left: auto;
  margin-right: auto;
  max-width: 36rem;
}

#page-home .hero__actions {
  justify-content: center;
}

#page-home .hero__meta {
  justify-content: center;
}

#page-home .floating-card__body {
  text-align: center;
}

#page-home .floating-card__kicker {
  text-align: center;
}

#page-home .section-head {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#page-home .section-head > div {
  max-width: 48rem;
}

#page-home .section-head p {
  margin-left: auto;
  margin-right: auto;
}

/* Hero panel (product visual) */
.hero-panel {
  position: relative;
}

.hero-panel__shell {
  border-radius: var(--radius-xl);
  padding: 1px;
  background: linear-gradient(145deg, rgba(12, 53, 47, 0.12), rgba(255, 255, 255, 0.4));
  box-shadow: var(--shadow-lg);
}

.hero-panel__chrome {
  border-radius: calc(var(--radius-xl) - 1px);
  background: var(--color-surface);
  border: 1px solid rgba(230, 234, 236, 0.95);
  overflow: hidden;
}

.hero-panel__titlebar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--color-line);
  background: linear-gradient(180deg, #fbfcfc, #f5f8f7);
}

.hero-panel__dots {
  display: inline-flex;
  gap: 6px;
}

.hero-panel__dots i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d5dde2;
}

.hero-panel__dots i:nth-child(1) {
  background: #e8a5a5;
}

.hero-panel__dots i:nth-child(2) {
  background: #e8d48b;
}

.hero-panel__dots i:nth-child(3) {
  background: #9bc9a8;
}

.hero-panel__product {
  flex: 1;
  font-size: var(--text-sm);
  font-weight: 700;
  color: #3d4a50;
  letter-spacing: -0.02em;
}

.hero-panel__stage {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  min-height: 280px;
}

.hero-panel__aside {
  padding: 18px;
  border-right: 1px solid var(--color-line);
  background: var(--color-bg-elevated);
}

.hero-panel__label {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted-2);
}

.hero-panel__map {
  position: relative;
  height: 112px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(12, 53, 47, 0.06), rgba(42, 125, 108, 0.08)),
    radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.5), transparent 55%);
  border: 1px solid rgba(12, 53, 47, 0.08);
  overflow: hidden;
}

.hero-panel__pin {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--color-green-700);
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(12, 53, 47, 0.2);
}

.hero-panel__pin--a {
  top: 28%;
  left: 32%;
}

.hero-panel__pin--b {
  top: 52%;
  left: 58%;
  background: var(--color-green-600);
}

.hero-panel__pin--c {
  top: 38%;
  left: 72%;
  background: #3d8f7a;
}

.hero-panel__dl {
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
}

.hero-panel__dl div {
  display: grid;
  gap: 2px;
}

.hero-panel__dl dt {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-muted-2);
}

.hero-panel__dl dd {
  margin: 0;
  font-size: var(--text-sm);
  font-weight: 700;
  color: #2c383e;
}

.hero-panel__canvas {
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: stretch;
  background: linear-gradient(180deg, #fff, #f7faf9);
}

.hero-panel__chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #0f3f37, #154d43);
  border: 1px solid rgba(12, 53, 47, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-panel__bar {
  position: relative;
  flex: 1;
  height: 100%;
  min-height: 96px;
  border-radius: 6px 6px 3px 3px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06));
}

.hero-panel__bar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--h);
  border-radius: 4px;
  background: linear-gradient(180deg, #7ecfbb, #3d9d86);
  opacity: 0.95;
}

.hero-panel__device {
  padding: 14px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-panel__device-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  color: #4a565c;
}

.hero-panel__device-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-panel__device-rows span {
  height: 8px;
  border-radius: 999px;
  background: rgba(12, 53, 47, 0.08);
}

.hero-panel__device-rows span:nth-child(1) {
  width: 92%;
}

.hero-panel__device-rows span:nth-child(2) {
  width: 76%;
}

.hero-panel__device-rows span:nth-child(3) {
  width: 64%;
}

.hero-panel__device-wide {
  height: 36px !important;
  border-radius: var(--radius-sm) !important;
  width: 100% !important;
  background: linear-gradient(90deg, rgba(12, 53, 47, 0.06), rgba(42, 125, 108, 0.1)) !important;
}

.hero-panel__kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--color-line);
  background: #fafcfb;
}

.hero-kpi {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid var(--color-line);
}

.hero-kpi:last-child {
  border-right: 0;
}

.hero-kpi__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted-2);
}

.hero-kpi__value {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-green-900);
}

/* Floating intro cards */
.floating-card-grid {
  padding-top: 8px;
  padding-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.floating-card {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.floating-card:hover {
  border-color: rgba(12, 53, 47, 0.14);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.floating-card__body {
  min-height: 188px;
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
}

.floating-card__kicker {
  margin: 0 0 10px;
  color: var(--color-green-800);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.floating-card h2 {
  margin: 0 0 8px;
  min-height: auto;
  font-size: var(--text-xl);
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--color-text);
}

.floating-card p:last-child {
  margin: 0;
  min-height: auto;
  color: var(--color-muted);
  font-size: var(--text-sm);
  line-height: 1.65;
}

.floating-card__line {
  height: 4px;
  background: linear-gradient(90deg, var(--color-green-900), #3d9d86);
}

.section {
  padding-top: 56px;
}

.section--page-space {
  padding-bottom: 28px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head h2 {
  font-size: clamp(1.625rem, 3.2vw, 2.375rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--color-text);
}

.section-head p {
  max-width: 28rem;
  margin: 0;
  color: var(--color-muted);
  font-size: var(--text-base);
  line-height: 1.7;
}

.portfolio-grid,
.mini-grid,
.form-grid {
  display: grid;
  gap: 20px;
}

.portfolio-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.portfolio-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tile,
.form-card,
.page-hero__box,
.table-card {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
  transition: border-color var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out);
}

.tile {
  padding: 26px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.tile:hover {
  border-color: rgba(12, 53, 47, 0.12);
  box-shadow: var(--shadow-lg);
}

.tile__kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 12px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(12, 53, 47, 0.06);
  color: var(--color-green-900);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.tile h3,
.tile h4 {
  margin: 0 0 8px;
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--color-text);
}

.tile__sub {
  margin: 0 0 12px;
  color: #4a565c;
  font-size: var(--text-sm);
  font-weight: 700;
}

.tile__lead {
  margin: 0 0 14px;
  color: var(--color-muted);
  font-size: var(--text-base);
  line-height: 1.65;
}

.tile p,
.tile li {
  color: var(--color-muted);
  font-size: var(--text-base);
  line-height: 1.65;
}

.tile ul {
  margin: 0;
  padding-left: 18px;
}

.tile--product {
  padding-bottom: 22px;
  position: relative;
}

.tile--product::before {
  content: "";
  position: absolute;
  top: 0;
  left: 26px;
  right: 26px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  opacity: 0.9;
}

.tile--product-evosa::before {
  background: linear-gradient(90deg, var(--color-green-900), #3d9d86);
}

.tile--product-evost::before {
  background: linear-gradient(90deg, #1d695c, #5eb9a4);
  left: 26px;
  right: 26px;
}

.tile--product-hub::before {
  background: linear-gradient(90deg, #0c352f, #2a5c52);
}

.tile__evos-icon {
  margin: 0 0 12px;
}

.tile__evos-icon img {
  height: 44px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  opacity: 0.95;
}

.list-clean {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.list-clean li {
  position: relative;
  padding-left: 16px;
  font-size: var(--text-sm);
}

.list-clean li + li {
  margin-top: 8px;
}

.list-clean li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(12, 53, 47, 0.35);
}

/* Product shot blocks (unified) */
.product-shot {
  margin-top: auto;
  padding: 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  background: linear-gradient(180deg, var(--color-bg-elevated), #fff);
  min-height: 168px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-shot__hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 800;
  color: #4a565c;
  letter-spacing: 0.02em;
}

.product-shot__map {
  flex: 1;
  min-height: 88px;
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 28% 42%, rgba(42, 125, 108, 0.2), transparent 45%),
    radial-gradient(circle at 72% 58%, rgba(12, 53, 47, 0.12), transparent 40%),
    linear-gradient(145deg, #e8f2ef, #f7faf9);
  border: 1px solid rgba(12, 53, 47, 0.08);
}

.product-shot__legend {
  display: flex;
  gap: 8px;
}

.product-shot__legend span {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: rgba(12, 53, 47, 0.12);
}

.product-shot__legend span:nth-child(2) {
  background: rgba(29, 105, 92, 0.35);
}

.product-shot__legend span:nth-child(3) {
  background: rgba(12, 53, 47, 0.22);
}

.product-shot__bars {
  flex: 1;
  min-height: 88px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  padding: 12px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #123d36, #1d695c);
}

.product-shot__bars i {
  flex: 1;
  display: block;
  height: var(--h);
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.08));
}

.product-shot__rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-shot__rows span {
  height: 6px;
  border-radius: 999px;
  background: rgba(12, 53, 47, 0.1);
}

.product-shot__rows span:nth-child(1) {
  width: 100%;
}

.product-shot__rows span:nth-child(2) {
  width: 78%;
}

.product-shot__rows span:nth-child(3) {
  width: 56%;
}

.product-shot__hub {
  flex: 1;
  min-height: 88px;
  position: relative;
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 50% 50%, rgba(12, 53, 47, 0.06), transparent 65%),
    #f3f7f6;
  border: 1px dashed rgba(12, 53, 47, 0.12);
}

.product-shot__node {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-md);
  top: 50%;
  left: 22%;
  transform: translate(-50%, -50%);
}

.product-shot__node--lg {
  width: 56px;
  height: 56px;
  left: 50%;
  border-color: rgba(12, 53, 47, 0.16);
  background: linear-gradient(145deg, #fff, #f0f6f4);
}

.product-shot__node:last-child {
  left: 78%;
  width: 40px;
  height: 40px;
}

.placeholder-card {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-surface-alt);
  color: var(--color-muted);
}

.placeholder-card strong {
  display: block;
  margin-bottom: 8px;
  color: #2c383e;
  font-size: var(--text-sm);
  font-weight: 800;
}

.placeholder-card p {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.65;
}

.mini-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
  gap: 12px;
}

.mini-card {
  padding: 16px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-bg-elevated);
  color: var(--color-muted);
  font-size: var(--text-sm);
  line-height: 1.6;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.mini-card:hover {
  border-color: rgba(12, 53, 47, 0.12);
  background: #fff;
}

.mini-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--color-text);
  font-size: var(--text-sm);
  font-weight: 800;
}

.page-hero {
  padding-top: 48px;
}

.page-hero__box {
  padding: 36px;
  background: linear-gradient(135deg, #ffffff 0%, #f3f8f6 100%);
}

.page-hero__box h1 {
  margin-bottom: 14px;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  line-height: 1.08;
  font-weight: 800;
}

.page-hero__box p:last-child {
  margin: 0;
  color: var(--color-muted);
  font-size: var(--text-base);
  line-height: 1.75;
}

/* 회사 소개 — 본사 외관 사진 히어로 (index.html #page-company) */
#page-company .page-hero--company {
  padding-top: 44px;
  max-width: var(--page-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 28px;
  padding-right: 28px;
}

#page-company .page-hero--company .page-hero__box {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: transparent;
  border: none;
  box-shadow: var(--shadow-lg);
  min-height: min(52vh, 380px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#page-company .page-hero--company .page-hero__box::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  /* 사진이 보이도록 톤다운 오버레이(이전 0.38/0.22는 너무 짙음) */
  background:
    linear-gradient(135deg, rgba(6, 22, 26, 0.14), rgba(12, 53, 47, 0.07)),
    linear-gradient(to top, rgba(4, 16, 14, 0.42) 0%, transparent 55%),
    url("../images/evlink-office-hero.png") center / cover no-repeat;
}

#page-company .page-hero--company .page-hero__box::after {
  content: "";
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: min(42vw, 240px);
  height: min(20vw, 110px);
  z-index: 0;
  background: url("../images/evos-logo.png") center / contain no-repeat;
  opacity: 0.2;
  pointer-events: none;
}

#page-company .page-hero--company .page-hero__box > * {
  position: relative;
  z-index: 1;
}

#page-company .page-hero__box .eyebrow {
  background: rgba(255, 255, 255, 0.14);
  color: #e8f4f0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

#page-company .page-hero__box h1 {
  color: #fff;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45), 0 1px 4px rgba(0, 0, 0, 0.4);
}

#page-company .page-hero__box p:last-child {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.4);
}

/* 회사 소개 — index.html #about 상단 (EVOS 멀티페이지) */
body.evos-site #about.section--company {
  padding-top: 0;
  align-items: stretch;
}

/* 홈·서브 공통: 본문 폭은 .wrap 과 동일 — 풀블리드 배경이 아니라 같은 좌우 기준선 유지 */
body.evos-site .company-page-hero {
  position: relative;
  box-sizing: border-box;
  width: calc(100% - 40px);
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding: 56px 0 52px;
  margin-bottom: 8px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

body.evos-site .company-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(6, 22, 26, 0.14), rgba(12, 53, 47, 0.07)),
    linear-gradient(to top, rgba(4, 16, 14, 0.42) 0%, transparent 55%),
    url("../images/evlink-office-hero.png") center / cover no-repeat;
}

body.evos-site .company-page-hero::after {
  content: "";
  position: absolute;
  right: 6%;
  bottom: 14%;
  width: min(38vw, 220px);
  height: min(18vw, 100px);
  z-index: 0;
  background: url("../images/evos-logo.png") center / contain no-repeat;
  opacity: 0.18;
  pointer-events: none;
}

body.evos-site .company-page-hero .wrap {
  position: relative;
  z-index: 1;
}

body.evos-site .company-page-hero .section-title .small {
  color: rgba(232, 244, 240, 0.98);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

body.evos-site .company-page-hero .section-title h2 {
  color: #fff;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45), 0 1px 4px rgba(0, 0, 0, 0.4);
}

body.evos-site .company-page-hero .section-title p {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.4);
}

.form-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 28px 28px 0;
}

.form-card {
  padding: 28px;
}

.section-label-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.section-label-row--spaced {
  justify-content: space-between;
}

.mock-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid var(--color-line);
  background: var(--color-bg-elevated);
  color: var(--color-muted);
  font-size: var(--text-xs);
  font-weight: 700;
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.span-2 {
  grid-column: span 2;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: var(--text-sm);
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--color-text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(12, 53, 47, 0.35);
  box-shadow: 0 0 0 3px rgba(12, 53, 47, 0.08);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.helper-text {
  margin: 12px 0 0;
  color: var(--color-muted);
  font-size: var(--text-sm);
  line-height: 1.65;
}

.table-card {
  margin-top: 20px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 18px;
  border-bottom: 1px solid #edf1f3;
  text-align: left;
  font-size: var(--text-sm);
}

th {
  background: #f7faf9;
  color: #415158;
  font-weight: 800;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: var(--text-xs);
  font-weight: 800;
}

.status-badge--ok {
  background: rgba(12, 53, 47, 0.08);
  color: var(--color-green-900);
}

.status-badge--wait {
  background: rgba(180, 140, 0, 0.12);
  color: #946f00;
}

/* Footer */
.site-footer {
  margin-top: 72px;
  background: var(--color-green-950);
  color: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 48px 28px 32px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.site-footer__brand {
  max-width: 26rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand__mark {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, var(--color-green-700), var(--color-green-600));
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

.footer-brand__mark--logo {
  width: auto;
  height: auto;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  display: flex;
  align-items: center;
}

.footer-brand__logo-img {
  height: 40px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  display: block;
}

.site-footer .brand--lockup {
  margin-bottom: 16px;
}

.site-footer .brand-lockup__mark {
  height: 32px;
}

.site-footer .brand-lockup__title {
  color: #fff;
}

.footer-brand__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-brand__name {
  font-size: 1.125rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.footer-brand__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}

.site-footer__lead {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__title {
  margin: 0 0 14px;
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: color 0.15s ease;
}

.footer-list a:hover {
  color: #fff;
}

.site-footer__contact {
  margin: 20px 0 0;
  font-size: var(--text-sm);
  line-height: 1.6;
}

.site-footer__contact-label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 6px;
}

.site-footer__contact a {
  color: #fff;
  font-weight: 600;
}

.site-footer__bar {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 18px 28px 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__bar p {
  margin: 0;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-panel {
    max-width: 560px;
    margin: 0 auto;
  }

  .floating-card-grid,
  .portfolio-grid--three,
  .site-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-header__inner {
    min-height: auto;
    padding-top: 14px;
    padding-bottom: 14px;
    flex-wrap: wrap;
  }

  .site-header__nav-wrap {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding-top: 8px;
  }

  .site-header__nav-wrap.is-open {
    display: flex;
  }

  .site-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .site-nav a::after {
    bottom: 6px;
  }

  .header-actions {
    width: 100%;
  }

  .header-actions .btn {
    flex: 1;
    justify-content: center;
  }

  .floating-card-grid,
  .portfolio-grid--three,
  .portfolio-grid--two,
  .hero-panel__stage,
  .hero-panel__canvas,
  .hero-panel__kpis,
  .mini-grid,
  .form-grid,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .hero-panel__stage {
    grid-template-columns: 1fr;
  }

  .hero-panel__aside {
    border-right: 0;
    border-bottom: 1px solid var(--color-line);
  }

  .hero-panel__canvas {
    grid-template-columns: 1fr;
  }

  .hero-kpi {
    border-right: 0;
    border-bottom: 1px solid var(--color-line);
  }

  .hero-kpi:last-child {
    border-bottom: 0;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-label-row--spaced {
    justify-content: flex-start;
  }

  .span-2 {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .hero-shell,
  .section,
  .page-hero,
  .floating-card-grid,
  .form-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-shell {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .page-hero__box,
  .tile,
  .form-card {
    padding: 22px;
  }

  th,
  td {
    padding: 12px;
  }
}

/* ========== EVOS multipage (body.evos-site) — merged from styles.css ========== */
body.evos-site {
  margin: 0;
  font-family: "Pretendard", "Noto Sans KR", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}
body.evos-site a { text-decoration: none; color: inherit; }
body.evos-site img { display: block; max-width: 100%; }

/* 멀티페이지 본문 폭: 뷰포트 기준 중앙 정렬 */
body.evos-site main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
}

body.evos-site main > section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

body.evos-site .wrap {
  box-sizing: border-box;
  width: calc(100% - 40px);
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

body.evos-site header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

body.evos-site header .wrap {
  flex: 0 1 var(--max);
}

body.evos-site footer {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 0 54px;
}

body.evos-site footer .wrap {
  flex: 0 1 var(--max);
}
body.evos-site .header-inner {min-height:78px;display:flex;align-items:center;justify-content:space-between;gap:20px}
body.evos-site .brand {display:flex;align-items:center;gap:12px}
body.evos-site .brand--lockup {display:inline-flex;align-items:center;gap:12px;text-decoration:none}
body.evos-site .brand-lockup__mark {height:40px;width:auto;max-width:min(46vw,150px);object-fit:contain;display:block;flex-shrink:0}
body.evos-site .brand-lockup__title {font-size:clamp(15px,2.8vw,18px);font-weight:800;color:var(--deep);letter-spacing:-.04em;line-height:1.2}
body.evos-site .brand-mark {width:auto;height:auto;min-width:0;border-radius:0;background:transparent;color:inherit;display:flex;align-items:center;justify-content:center;padding:0}
body.evos-site .brand-logo-img {height:40px;width:auto;max-width:136px;object-fit:contain;display:block}
body.evos-site .hero-side__top {display:flex;align-items:center;justify-content:center;gap:14px;margin-bottom:10px;flex-wrap:wrap}
body.evos-site .hero-side__brand {text-align:center;max-width:22rem;margin:0 auto}
body.evos-site .hero-side__evos-name {display:block;font-size:clamp(1.5rem,3.2vw,1.9rem);font-weight:800;letter-spacing:-.06em;color:#fff;line-height:1.15;margin:0 0 8px}
body.evos-site .hero-side__evos-line {margin:0;font-size:14px;line-height:1.65;font-weight:600;color:rgba(255,255,255,.93)}
body.evos-site .product-hero-icon {width:56px;height:56px;object-fit:contain;display:block;margin:0 auto 12px}
body.evos-site .hero-box:has(.product-hero-icon) {text-align:center}
body.evos-site .hero-box:has(.product-hero-icon) p {margin-left:auto;margin-right:auto;max-width:720px}
/* evos-a.html 히어로: 녹색 밴드 + 흰색 타이틀 */
body.evos-site .hero-copy--evos-a .product-hero-kicker-wrap {
  width: 100%;
  max-width: 100%;
  margin: 0 0 22px;
  padding: 0 clamp(12px, 3vw, 22px) clamp(14px, 2vw, 20px);
  border-radius: 14px;
  min-height: clamp(5.5rem, 12vw, 7.5rem);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  box-sizing: border-box;
  background: linear-gradient(165deg, #187a6b 0%, #0f4a42 42%, #0a352f 100%);
  border: 1px solid rgba(0, 0, 0, 0.22);
  box-shadow:
    inset 0 3px 14px rgba(0, 0, 0, 0.38),
    inset 0 -2px 1px rgba(255, 255, 255, 0.05);
}
body.evos-site .hero-copy--evos-a .product-hero-kicker--engraved {
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: clamp(1.35rem, 2.1vw + 0.95rem, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.22;
  text-align: center;
  color: #ffffff;
  word-break: keep-all;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}
body.evos-site .hero-copy--evos-a .product-hero-kicker__line {
  display: inline-block;
}
body.evos-site .hero-copy--evos-a .product-hero-kicker__line--sub {
  margin-top: 0.12em;
  font-size: 0.88em;
  font-weight: 800;
  letter-spacing: -0.03em;
}
body.evos-site .hero-copy--evos-a .metric-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  row-gap: 8px;
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 100%;
}
body.evos-site .hero-copy--evos-a .metric-pill {
  width: fit-content;
  max-width: 100%;
  flex: 0 1 auto;
  box-sizing: border-box;
  min-height: clamp(44px, 7vw, 64px);
  padding: 0 clamp(14px, 3vw, 22px);
  font-size: clamp(14px, 2.4vw, 20px);
  border-radius: 999px;
}
body.evos-site .hero-copy--evos-a .hero-actions.hero-actions--primary {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(8px, 2vw, 14px);
  margin-top: 14px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
body.evos-site .hero-copy--evos-a .hero-actions.hero-actions--primary .btn {
  width: fit-content;
  max-width: 100%;
  min-height: clamp(52px, 9vw, 80px);
  padding: 0 clamp(20px, 4vw, 40px);
  font-size: clamp(15px, 2.6vw, 22px);
  border-radius: 999px;
}
body.evos-site .evos-product-head {margin:0 0 4px;text-align:center}
body.evos-site .evos-product-head__row--product {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-bottom: 10px;
}
body.evos-site .evos-product-head .evos-card-icon {margin:0;display:flex;align-items:center;justify-content:center;flex-shrink:0}
body.evos-site .evos-product-head .evos-card-icon img {height:44px;width:auto;object-fit:contain}
body.evos-site .evos-product-name {margin:0;font-size:clamp(1.35rem,2.4vw,1.85rem);font-weight:800;letter-spacing:-.06em;color:var(--deep);line-height:1.12}
body.evos-site .evos-product-head__row--product .evos-product-name {flex:0 0 auto}
body.evos-site .evos-product-head__row--product .badge {
  margin: 0;
  min-width: 0;
  min-height: 26px;
  padding: 3px 10px;
  justify-content: center;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

body.evos-site .product-ui-figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
}

body.evos-site .product-ui-figure__img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

body.evos-site .product-ui-figure__cap {
  margin: 0;
  padding: 14px 18px 16px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  border-top: 1px solid var(--line);
  text-align: center;
}

body.evos-site .section--product-ui {
  padding-top: 20px;
  padding-bottom: 36px;
}
body.evos-site .brand-copy strong {display:block;font-size:19px;color:var(--deep);line-height:1.1;letter-spacing:-.03em}
body.evos-site .brand-copy span {display:block;margin-top:4px;font-size:12px;color:var(--muted)}
body.evos-site nav {display:flex;gap:24px;align-items:center;flex-wrap:wrap}
body.evos-site nav a {font-size:14px;font-weight:700;color:#31413d}
body.evos-site .head-actions {display:flex;gap:10px;align-items:center;flex-wrap:wrap}
body.evos-site .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.03em;
  border: 1px solid transparent;
  transition: transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out),
    background var(--duration-fast) var(--ease-out), border-color var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out), filter var(--duration-fast) var(--ease-out);
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
}
body.evos-site .btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
body.evos-site .btn:hover {
  transform: translateY(-2px);
}
body.evos-site .btn:active {
  transform: translateY(0);
  filter: brightness(0.97);
}
body.evos-site .btn-dark {
  background: linear-gradient(180deg, #154d43 0%, #0c352f 55%, #0a2e28 100%);
  color: #fff;
  border-color: rgba(12, 53, 47, 0.35);
  box-shadow: 0 10px 26px rgba(12, 53, 47, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
body.evos-site .btn-dark:hover {
  box-shadow: 0 14px 34px rgba(12, 53, 47, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  filter: brightness(1.04);
}
body.evos-site .btn-line {
  background: #fff;
  color: var(--deep);
  border: 2px solid rgba(12, 53, 47, 0.14);
  box-shadow: 0 6px 18px rgba(12, 53, 47, 0.06);
}
body.evos-site .btn-line:hover {
  background: rgba(12, 53, 47, 0.04);
  border-color: rgba(12, 53, 47, 0.28);
  box-shadow: 0 10px 24px rgba(12, 53, 47, 0.1);
}
body.evos-site .btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}
body.evos-site .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.55);
}
body.evos-site .btn-white {
  background: #fff;
  color: var(--deep);
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}
body.evos-site .btn-white:hover {
  filter: brightness(1.03);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
}

/* 고객센터 허브 4카드 — 상단 액센트·중앙 정렬·하단 바로가기(어포던스) */
body.evos-site .grid-4--cc-nav {
  align-items: stretch;
  gap: var(--space-3);
}
body.evos-site .quick-card--cc {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-3) var(--space-2);
  margin: 0;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-md);
  border: 1px solid rgba(12, 53, 47, 0.11);
  border-top: 4px solid var(--cc-accent, #0c352f);
  background: linear-gradient(168deg, #ffffff 0%, #f4faf7 55%, #ecf5f1 100%);
  box-shadow: var(--shadow-md);
  min-height: 0;
  transition: transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out), filter var(--duration-fast) var(--ease-out);
}
body.evos-site a.quick-card--cc:hover {
  transform: translateY(var(--lift-card));
  box-shadow: var(--shadow-lg);
  border-color: rgba(12, 53, 47, 0.16);
}
body.evos-site a.quick-card--cc:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
body.evos-site .quick-card__cc-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
}
body.evos-site .quick-card--cc-notice {
  --cc-accent: #0c352f;
}
body.evos-site .quick-card--cc-library {
  --cc-accent: #134a42;
}
body.evos-site .quick-card--cc-faq {
  --cc-accent: #1d695c;
}
body.evos-site .quick-card--cc-qna {
  --cc-accent: #2f7a68;
}
body.evos-site .quick-card__cc-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(12, 53, 47, 0.08);
}
body.evos-site .quick-card--cc-notice .quick-card__cc-icon {
  background: linear-gradient(145deg, #e8f3ef, #d0e8df);
  color: #0c352f;
  border: 1px solid rgba(12, 53, 47, 0.12);
}
body.evos-site .quick-card--cc-library .quick-card__cc-icon {
  background: linear-gradient(145deg, #e5f4ef, #cce8de);
  color: #134a42;
  border: 1px solid rgba(19, 74, 66, 0.14);
}
body.evos-site .quick-card--cc-faq .quick-card__cc-icon {
  background: linear-gradient(145deg, #e8f7f2, #d4efe6);
  color: #1a5c52;
  border: 1px solid rgba(29, 105, 92, 0.15);
}
body.evos-site .quick-card--cc-qna .quick-card__cc-icon {
  background: linear-gradient(145deg, #ecf8f4, #daf0ea);
  color: #17624f;
  border: 1px solid rgba(47, 122, 104, 0.16);
}
body.evos-site .quick-card__cc-svg {
  width: 24px;
  height: 24px;
}
body.evos-site .quick-card__cc-title {
  display: block;
  margin: 0;
  font-size: 1.14rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.25;
  color: var(--deep);
}
body.evos-site .quick-card__cc-desc {
  display: block;
  margin: 0;
  font-size: 13px;
  line-height: 1.68;
  color: var(--text-subtle);
  max-width: 22em;
}
body.evos-site .quick-card__cc-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  width: 100%;
  margin-top: 2px;
  padding-top: var(--space-2);
  border-top: 1px solid rgba(12, 53, 47, 0.1);
}
body.evos-site .quick-card__cc-cta {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--accent);
}
body.evos-site .quick-card__cc-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: currentColor;
  color: var(--accent);
  transition: transform var(--duration-fast) var(--ease-out);
}
body.evos-site a.quick-card--cc:hover .quick-card__cc-arrow {
  transform: translateX(4px);
}
body.evos-site .quick-card__cc-footer--static {
  border-top-style: dashed;
}
body.evos-site .quick-card__cc-footer--static .quick-card__cc-cta {
  color: var(--muted);
  font-weight: 700;
}
body.evos-site .quick-card__cc-footer--static .quick-card__cc-arrow {
  display: none;
}
/* Q&A — 행동 CTA 강조 (링크 전용) */
body.evos-site a.quick-card--cc.quick-card--cc--primary {
  background: linear-gradient(168deg, #164b42 0%, #0c352f 52%, #071f1c 100%);
  border-color: rgba(12, 53, 47, 0.28);
  border-top-color: #3d9a82;
  color: #fff;
  box-shadow: 0 16px 44px rgba(12, 53, 47, 0.24);
}
body.evos-site a.quick-card--cc.quick-card--cc--primary:hover {
  box-shadow: 0 22px 52px rgba(12, 53, 47, 0.3);
  filter: brightness(1.03);
}
body.evos-site a.quick-card--cc.quick-card--cc--primary .quick-card__cc-title {
  color: #fff;
}
body.evos-site a.quick-card--cc.quick-card--cc--primary .quick-card__cc-desc {
  color: rgba(255, 255, 255, 0.9);
}
body.evos-site a.quick-card--cc.quick-card--cc--primary .quick-card__cc-icon {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}
body.evos-site a.quick-card--cc.quick-card--cc--primary .quick-card__cc-footer {
  border-top-color: rgba(255, 255, 255, 0.22);
}
body.evos-site a.quick-card--cc.quick-card--cc--primary .quick-card__cc-cta {
  color: #fff;
}
body.evos-site a.quick-card--cc.quick-card--cc--primary .quick-card__cc-arrow {
  color: #fff;
}
body.evos-site div.quick-card--cc {
  cursor: default;
}
body.evos-site button.mypage-tab.quick-card--cc {
  cursor: pointer;
  font: inherit;
  text-align: center;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
body.evos-site button.mypage-tab.quick-card--cc:hover {
  transform: translateY(var(--lift-card));
  box-shadow: var(--shadow-lg);
  border-color: rgba(12, 53, 47, 0.16);
}
body.evos-site button.mypage-tab.quick-card--cc:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
body.evos-site button.mypage-tab.quick-card--cc.is-active {
  border-color: rgba(29, 105, 92, 0.42);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(168deg, #e4f5ef 0%, #f6fbf9 50%, #ecf5f1 100%);
}
body.evos-site .login-options-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
body.evos-site .login-options-row label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--deep);
  cursor: pointer;
}
body.evos-site .login-options-row .login-forgot {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
body.evos-site .login-options-row .login-forgot:hover {
  color: #155a4d;
}
body.evos-site .hero {padding:34px 0 20px}
body.evos-site #home.hero {background:#fff}
body.evos-site .panel, body.evos-site .hero-box, body.evos-site .site-box {background:var(--paper);border:1px solid var(--line);box-shadow:var(--shadow)}
body.evos-site .hero-box, body.evos-site .panel, body.evos-site .site-box {padding:30px}
body.evos-site .eyebrow {display:inline-block;padding:8px 14px;border-radius:999px;background:var(--soft);color:#5d6b67;font-size:12px;font-weight:800;letter-spacing:var(--evos-eyebrow-ls);text-transform:uppercase;margin-bottom:14px}
body.evos-site .hero-grid {display:grid;grid-template-columns:1.15fr .85fr;gap:26px;align-items:start}
body.evos-site h1 {margin:0;font-size:clamp(28px,3.2vw,42px);font-weight:800;line-height:1.14;letter-spacing:-.05em;color:var(--deep)}
body.evos-site .hero-copy p, body.evos-site .lead {margin:16px 0 0;max-width:760px;font-size:16px;color:#4e5d59;line-height:1.85}
body.evos-site .hero-side {background:linear-gradient(135deg,#143d37 0%,#24584d 100%);color:#fff;padding:24px;border-radius:24px;min-height:220px;display:flex;flex-direction:column;justify-content:space-between;position:relative;overflow:hidden}
body.evos-site .hero-side:after {content:"";position:absolute;right:-70px;bottom:-70px;width:210px;height:210px;border-radius:50%;background:rgba(255,255,255,.08)}
body.evos-site .hero-side>* {position:relative;z-index:1}
body.evos-site .hero-side p {margin:0;font-size:14px;line-height:1.8;color:rgba(255,255,255,.9)}
body.evos-site .hero-side .hero-side__guide-title {
  display: block;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  color: #fff;
  line-height: 1.25;
}
body.evos-site .hero-side .hero-side__guide-title + p {
  margin-top: 0;
}
body.evos-site .kpi-strip {display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:24px}
body.evos-site .kpi-card, body.evos-site .quick-card, body.evos-site .info-card, body.evos-site .grid-card {background:#fff;border:1px solid var(--line);border-radius:18px;padding:18px;box-shadow:0 8px 18px rgba(12,53,47,.04)}
body.evos-site .kpi-card strong, body.evos-site .quick-card:not(.quick-card--cta):not(.quick-card--cc) strong, body.evos-site .info-card strong, body.evos-site .grid-card strong {display:block;margin-bottom:6px;font-size:16px;color:var(--deep);letter-spacing:-.03em}
body.evos-site .kpi-card span, body.evos-site .quick-card:not(.quick-card--cta):not(.quick-card--cc) span, body.evos-site .info-card span, body.evos-site .grid-card span {display:block;font-size:13px;color:var(--muted);line-height:1.7}

/* 히어로 3신청 카드 — 색대비·큰 타이틀·아이콘 바 (home #home .kpi-strip--cta 전용) */
body.evos-site .quick-card--cta {
  padding: 0;
  overflow: hidden;
  border: none;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 14px 36px rgba(12, 53, 47, 0.12);
  transition: transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out);
}
body.evos-site .quick-card--cta:hover {
  transform: translateY(var(--lift-card));
  box-shadow: 0 20px 48px rgba(12, 53, 47, 0.18);
}
body.evos-site .quick-card__cta-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  color: #fff;
  flex-shrink: 0;
}
body.evos-site .quick-card__cta-ico {
  flex-shrink: 0;
  opacity: 0.95;
}
body.evos-site .quick-card--cta .quick-card__cta-title {
  margin: 0;
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.2;
  color: #fff;
}
body.evos-site .quick-card--cta .quick-card__cta-desc {
  display: block;
  margin: 0;
  padding: 16px 20px 20px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
}
body.evos-site .quick-card--cta-consult .quick-card__cta-bar {
  background: linear-gradient(135deg, #0a2e28 0%, #0c352f 42%, #154d43 100%);
}
body.evos-site .quick-card--cta-consult .quick-card__cta-desc {
  background: #eef5f2;
}
body.evos-site .quick-card--cta-product .quick-card__cta-bar {
  background: linear-gradient(135deg, #0f3d36 0%, #134a42 45%, #1d695c 100%);
}
body.evos-site .quick-card--cta-product .quick-card__cta-desc {
  background: #ecf6f3;
}
body.evos-site .quick-card--cta-signup .quick-card__cta-bar {
  background: linear-gradient(135deg, #164b42 0%, #1d695c 40%, #2f7a68 100%);
}
body.evos-site .quick-card--cta-signup .quick-card__cta-desc {
  background: #f0f8f5;
}

body.evos-site .section {padding:var(--section-pad-y) 0}
body.evos-site .section-title {
  margin-bottom: 24px;
  text-align: center;
}
body.evos-site .section-title .small {font-size:12px;font-weight:800;letter-spacing:0.08em;color:var(--accent);text-transform:uppercase;margin-bottom:10px}
body.evos-site .section-title h2 {margin:0;font-size:clamp(24px,2.6vw,32px);font-weight:800;line-height:1.18;letter-spacing:-.05em;color:var(--deep)}
body.evos-site .section-title p {
  margin: 12px auto 0;
  max-width: 760px;
  font-size: 16px;
  color: #4f5e59;
  line-height: 1.8;
}

/* 히어로 상단 카피·EVOS 박스 문단 중앙 정렬 */
body.evos-site #home .hero-copy,
body.evos-site #home .hero-side {
  text-align: center;
}

body.evos-site #home .hero-copy h1 {
  margin-left: auto;
  margin-right: auto;
}

body.evos-site #home .hero-copy p {
  margin: 16px auto 0;
  max-width: 760px;
}
body.evos-site .grid-2 {display:grid;grid-template-columns:1fr 1fr;gap:24px}
body.evos-site .grid-3 {display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
body.evos-site .grid-4 {display:grid;grid-template-columns:repeat(4,1fr);gap:var(--space-4)}
body.evos-site .card {background:var(--paper);border:1px solid var(--line);box-shadow:var(--shadow);padding:28px}
body.evos-site .card h3 {margin:0 0 12px;font-size:22px;line-height:1.3;color:var(--deep);letter-spacing:-.03em}

/* 회사소개 3축 카드 — 아이콘·색조 (index #about) */
body.evos-site .grid-3--about-pillars {align-items:stretch}
body.evos-site .card--about-pillar {
  display: flex;
  flex-direction: column;
  padding-top: 22px;
  text-align: left;
  align-items: stretch;
}
body.evos-site .grid-3--about-pillars .card--about-pillar .card__pillar-icon {
  align-self: center;
  width: 100%;
  height: 88px;
  min-height: 88px;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
body.evos-site .card__pillar-icon {
  border-radius: 16px;
  flex-shrink: 0;
  box-shadow: 0 10px 24px rgba(12, 53, 47, 0.07);
}
body.evos-site .card__pillar-svg {
  width: 28px;
  height: 28px;
}
/* 벤처 마크 / EVOS 로고 / 데이터 아이콘 — 동일 슬롯 높이(88px) 안에서 정렬 */
body.evos-site .card--about-pillar--cert .card__pillar-icon--venture {
  width: 100%;
  max-width: 100%;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
}
body.evos-site .card--about-pillar--cert .card__pillar-icon--venture img {
  width: auto;
  height: auto;
  max-height: 80px;
  max-width: min(100%, 160px);
  display: block;
  object-fit: contain;
}
body.evos-site .card--about-pillar--tech .card__pillar-icon--img {
  width: 100%;
  max-width: 220px;
  height: 88px;
  min-height: 88px;
  padding: 8px 14px;
  background: linear-gradient(145deg, #f4fbf8, #e5f4ed);
  border: 1px solid rgba(12, 53, 47, 0.1);
}
body.evos-site .card--about-pillar--tech .card__pillar-icon--img img {
  max-height: 72px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
body.evos-site .card--about-pillar--data .card__pillar-icon--img {
  width: 100%;
  max-width: 120px;
  height: 88px;
  min-height: 88px;
  padding: 8px;
  background: linear-gradient(145deg, #f0f8f5, #dff5ec);
  border: 1px solid rgba(29, 105, 92, 0.2);
  margin-left: auto;
  margin-right: auto;
}
body.evos-site .card--about-pillar--data .card__pillar-icon--img img {
  width: auto;
  height: auto;
  max-height: 72px;
  max-width: 72px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
body.evos-site .grid-3--about-pillars .card--about-pillar h3 {
  margin: 0 0 12px;
  width: 100%;
  padding: 10px 14px;
  font-size: clamp(18px, 1.9vw, 22px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.04em;
  color: #ffffff;
  text-align: center;
  border-radius: 10px;
  box-sizing: border-box;
  background: linear-gradient(165deg, #187a6b 0%, #0f4a42 48%, #082a25 100%);
  border: 1px solid rgba(0, 0, 0, 0.22);
  box-shadow:
    inset 0 3px 12px rgba(0, 0, 0, 0.4),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}
body.evos-site .grid-3--about-pillars .card--about-pillar .list {
  font-size: 16px;
  width: 100%;
  text-align: left;
  list-style-position: outside;
  padding-left: 1.2em;
  margin: 0;
  align-self: stretch;
}

/* Consulting / Reference 2열 카드 — 아이콘 + 좌측 액센트 박스 */
body.evos-site .grid-2--feature-cards {
  align-items: stretch;
  gap: 22px;
}
body.evos-site .card--feature-card {
  margin: 0;
  padding: 0;
  border: 1px solid rgba(12, 53, 47, 0.11);
  border-left: 5px solid var(--feature-accent, #0c352f);
  border-radius: 20px;
  background: linear-gradient(168deg, #ffffff 0%, #f7fbf9 45%, #eef6f2 100%);
  box-shadow: 0 14px 40px rgba(12, 53, 47, 0.08);
  overflow: hidden;
}
body.evos-site .card--feature-card--consult {
  --feature-accent: #0c352f;
}
body.evos-site .card--feature-card--ops {
  --feature-accent: #1d695c;
}
body.evos-site .card--feature-card--ref {
  --feature-accent: #2f7a68;
}
body.evos-site .card--feature-card--network {
  --feature-accent: #134a42;
}
body.evos-site .card--feature-card .card__feature-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 22px 10px 20px;
}
body.evos-site .card--feature-card .card__feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(12, 53, 47, 0.08);
}
body.evos-site .card--feature-card--consult .card__feature-icon {
  background: linear-gradient(145deg, #e8f3ef, #d2e8df);
  color: #0c352f;
  border: 1px solid rgba(12, 53, 47, 0.12);
}
body.evos-site .card--feature-card--ops .card__feature-icon {
  background: linear-gradient(145deg, #e5f5f0, #d0ebe3);
  color: #134a42;
  border: 1px solid rgba(29, 105, 92, 0.14);
}
body.evos-site .card--feature-card--ref .card__feature-icon {
  background: linear-gradient(145deg, #ecf8f4, #daf0ea);
  color: #1a5c52;
  border: 1px solid rgba(47, 122, 104, 0.15);
}
body.evos-site .card--feature-card--network .card__feature-icon {
  background: linear-gradient(145deg, #e8f2ef, #d3e8e2);
  color: #0f3d36;
  border: 1px solid rgba(12, 53, 47, 0.12);
}
body.evos-site .card__feature-svg {
  width: 26px;
  height: 26px;
}
body.evos-site .card--feature-card .card__feature-head h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.3;
  letter-spacing: -0.03em;
  color: var(--deep);
}
body.evos-site .card--feature-card .card__feature-body {
  padding: 4px 22px 22px 20px;
}
body.evos-site .card--feature-card .card__feature-body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: #4e5d59;
}
body.evos-site .card--feature-card--consult .card__feature-body p {
  font-size: 16px;
}
body.evos-site .card--feature-card .card__feature-body .list {
  margin: 0;
}
body.evos-site .card p {margin:0;font-size:15px;color:var(--muted);line-height:1.85}
body.evos-site .badge {display:inline-flex;align-items:center;min-height:34px;padding:0 12px;border-radius:999px;background:var(--soft);color:var(--deep);font-size:12px;font-weight:800}
body.evos-site .list {margin:16px 0 0;padding-left:18px;color:#51635e;font-size:14px;line-height:1.85}
body.evos-site .list li {margin-bottom:5px}
body.evos-site .list.compact {line-height:1.75}
body.evos-site .actions {display:flex;gap:10px;flex-wrap:wrap;margin-top:18px}
body.evos-site .actions.actions--cc-hub {gap:12px}
body.evos-site .tabs {display:flex;gap:10px;flex-wrap:wrap;margin-bottom:20px}
body.evos-site .tab {display:inline-flex;align-items:center;min-height:44px;padding:0 16px;border-radius:999px;border:1px solid var(--line);background:#fff;color:#4e5c58;font-size:14px;font-weight:700}
body.evos-site .tab.active {background:var(--deep);color:#fff;border-color:var(--deep)}
body.evos-site .toolbar {display:flex;justify-content:space-between;gap:14px;flex-wrap:wrap;align-items:center;margin-bottom:18px}
body.evos-site .chips {display:flex;gap:10px;flex-wrap:wrap}
body.evos-site .chip {display:inline-flex;align-items:center;min-height:34px;padding:0 12px;border-radius:999px;background:var(--soft);color:var(--deep);font-size:12px;font-weight:800}
body.evos-site .chip.answer {background:#e9f3ef;color:#1d6a58}
body.evos-site .chip.secret {background:#f3e9e7;color:#8b4c40}
body.evos-site .search {display:flex;gap:10px;flex-wrap:wrap}
body.evos-site .search input,
body.evos-site .search select,
body.evos-site .form-grid input,
body.evos-site .form-grid select,
body.evos-site .form-grid textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-family: inherit;
  font-size: 14px;
  border-radius: 14px;
  outline: none;
}
body.evos-site .form-grid textarea {
  min-height: 180px;
  padding: 14px;
  resize: vertical;
}
body.evos-site .search input {
  width: 280px;
}
body.evos-site .search select {
  width: 170px;
}
body.evos-site table {width:100%;border-collapse:collapse}
body.evos-site th, body.evos-site td {border-bottom:1px solid #e2e8e5;padding:14px 12px;text-align:left;font-size:14px;line-height:1.65;vertical-align:middle}
body.evos-site th {background:#f7faf8;color:var(--deep);font-weight:800}
body.evos-site td.title a {color:var(--deep);font-weight:700}
body.evos-site .status {display:inline-flex;align-items:center;min-height:30px;padding:0 10px;border-radius:999px;font-size:12px;font-weight:800;background:#eef2f0;color:var(--deep)}
body.evos-site .status.done { background: #e9f3ef; color: #1d6a58; }
body.evos-site .status.wait { background: #f3eee7; color: #8a6940; }
body.evos-site .detail-head {padding-bottom:16px;border-bottom:1px solid var(--line);margin-bottom:18px}
body.evos-site .label-row {display:flex;gap:10px;flex-wrap:wrap;margin-bottom:12px}
body.evos-site .detail-head h2 {margin:0 0 12px;font-size:26px;line-height:1.3;letter-spacing:-.04em;color:var(--deep)}
body.evos-site .meta {display:flex;gap:14px 22px;flex-wrap:wrap;color:var(--muted);font-size:14px}
body.evos-site .body-copy, body.evos-site .q-body {color:#41524d;font-size:15px;line-height:2}
body.evos-site .body-copy p, body.evos-site .q-body p {margin:0 0 16px}
body.evos-site .attach, body.evos-site .soft-box, body.evos-site .answer-box {margin-top:20px;padding:18px;background:#f7faf8;border:1px solid #dde6e2;border-radius:16px}
body.evos-site .attach strong, body.evos-site .soft-box strong, body.evos-site .answer-box strong {display:block;margin-bottom:10px;font-size:15px;color:var(--deep)}
body.evos-site .form-grid {display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
body.evos-site .field.full {grid-column:1 / -1}
body.evos-site .field label,
body.evos-site .field .field-label-text {display:block;margin-bottom:8px;font-size:14px;font-weight:700;color:var(--deep)}
body.evos-site .field small {display:block;margin-top:6px;font-size:12px;color:var(--muted);line-height:1.6}
body.evos-site .file-box {display:flex;align-items:center;gap:12px;min-height:54px;padding:0 14px;border:1px dashed #cad8d2;border-radius:14px;background:#f8fbfa;color:#5a6965;font-size:14px}
body.evos-site .address-search-row {display:flex;flex-wrap:wrap;gap:10px;margin-bottom:10px;align-items:stretch}
body.evos-site .btn--addr-search {flex:0 0 auto;min-height:44px;padding:0 18px;white-space:nowrap}
body.evos-site .address-search-row .readonly-field {flex:1 1 200px;min-width:0}
body.evos-site .address-detail-input {width:100%;margin-top:0}
body.evos-site .readonly-field[readonly] {background:#f4f8f6;color:#3d4a46;cursor:default}
body.evos-site .file-box--upload {position:relative;flex-wrap:wrap;padding:12px 14px;min-height:72px;cursor:pointer}
body.evos-site .file-box--upload:focus-within {border-color:#8ab5a8;box-shadow:0 0 0 2px rgba(29,106,88,.12)}
body.evos-site .file-input-native {position:absolute;left:0;top:0;width:100%;height:100%;opacity:0;cursor:pointer;font-size:0}
body.evos-site .file-box__hint {position:relative;z-index:0;pointer-events:none;font-weight:600;color:var(--deep)}
body.evos-site .file-box--upload:hover .file-box__hint {color:#1d6a58}
body.evos-site .file-names {margin:8px 0 0;font-size:13px;color:#41524d;line-height:1.5;word-break:break-all}
body.evos-site .sr-only {position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
body.evos-site .postcode-layer {position:fixed;inset:0;z-index:100000;display:flex;align-items:center;justify-content:center;padding:16px;background:rgba(12,35,31,.45);backdrop-filter:blur(2px)}
body.evos-site .postcode-layer[hidden] {display:none !important}
body.evos-site .postcode-layer__dialog {display:flex;flex-direction:column;width:100%;max-width:520px;height:min(560px,calc(100vh - 48px));background:#fff;border-radius:16px;box-shadow:0 24px 56px rgba(12,35,31,.22);overflow:hidden}
body.evos-site .postcode-layer__head {display:flex;align-items:center;justify-content:space-between;gap:12px;padding:12px 14px;border-bottom:1px solid var(--line);flex-shrink:0;background:#f8fbfa}
body.evos-site .postcode-layer__title {font-size:16px;font-weight:700;color:var(--deep)}
body.evos-site .postcode-layer__close {min-height:40px;padding:0 14px;font-size:14px}
body.evos-site .postcode-layer__embed {flex:1;min-height:0;position:relative;width:100%}
body.evos-site .submit-row {display:flex;justify-content:flex-end;gap:10px;margin-top:20px;flex-wrap:wrap}
body.evos-site .pager {display:flex;justify-content:center;gap:8px;margin-top:20px;flex-wrap:wrap}
body.evos-site .pager a {min-width:44px;min-height:44px;height:44px;display:inline-flex;align-items:center;justify-content:center;border-radius:12px;border:1px solid var(--line);background:#fff;font-size:14px;font-weight:700;color:#4c5a56}
body.evos-site .pager a.current {background:var(--deep);color:#fff;border-color:var(--deep)}
body.evos-site .cta-box {background:var(--deep);color:#fff;padding:42px;display:grid;grid-template-columns:1fr auto;gap:24px;align-items:end;box-shadow:0 24px 44px rgba(12,53,47,.14)}
body.evos-site .cta-meta {list-style:none;padding:0;margin:18px 0 0;display:grid;gap:6px;font-size:14px;opacity:.94}
body.evos-site .footer-box {background:#fff;border:1px solid var(--line);padding:26px 30px;display:grid;grid-template-columns:1fr auto;gap:20px;align-items:center}
body.evos-site .footer-copy strong {display:block;color:var(--deep);font-size:18px;margin-bottom:10px}
body.evos-site .footer-copy p {margin:0;font-size:14px;color:var(--muted);line-height:1.85}
body.evos-site .footer-links {display:flex;flex-wrap:wrap;gap:14px 18px;color:var(--muted);font-size:14px;font-weight:700;justify-content:flex-end}
@media (max-width: 1080px) {
  body.evos-site nav {
    display: none;
  }
  body.evos-site .hero-grid,
  body.evos-site .grid-2,
  body.evos-site .grid-3,
  body.evos-site .grid-4,
  body.evos-site .kpi-strip,
  body.evos-site .form-grid,
  body.evos-site .cta-box,
  body.evos-site .footer-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body.evos-site .wrap {
    width: calc(100% - 24px);
    max-width: var(--max);
  }
  body.evos-site .company-page-hero {
    width: calc(100% - 24px);
  }
  body.evos-site .header-inner {
    min-height: auto;
    padding: 14px 0;
    flex-wrap: wrap;
  }
  body.evos-site .head-actions {
    width: 100%;
  }
  body.evos-site .head-actions .btn {
    flex: 1;
  }
  body.evos-site .hero-box,
  body.evos-site .panel,
  body.evos-site .site-box,
  body.evos-site .card,
  body.evos-site .footer-box,
  body.evos-site .cta-box {
    padding: 22px;
  }
  body.evos-site .search input,
  body.evos-site .search select {
    width: 100%;
  }
  body.evos-site h1 {
    font-size: 30px;
  }
  body.evos-site .detail-head h2 {
    font-size: 22px;
  }
}


/* --- 1차 직관형 고도화: 실화면/기기프레임/리포트 프레임 --- */
body.evos-site .hero-box--visual {
  padding: 34px;
}
body.evos-site .hero-grid--visual {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.5fr);
  align-items: stretch;
  gap: 28px;
}
body.evos-site .hero-side--brand-panel {
  background: linear-gradient(152deg, #082520 0%, #0d3d35 42%, #135a4d 100%);
  color: #fff;
  border-radius: 24px;
  padding: 26px 20px 28px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(8, 37, 32, 0.22);
  gap: 20px;
}
body.evos-site .hero-side--brand-panel::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -48px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  pointer-events: none;
}
body.evos-site .hero-side--brand-panel .hero-platform-lockup--panel {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: none;
  text-align: center;
  flex-shrink: 0;
}
body.evos-site .hero-side--brand-panel .hero-platform-lockup--panel .hero-platform-lockup__icons {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 8px 10px;
  margin-bottom: 12px;
}
body.evos-site .hero-side--brand-panel .hero-platform-ico {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
body.evos-site .hero-side--brand-panel .hero-platform-ico img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: none;
}
body.evos-site .hero-side--brand-panel .hero-platform-ico:hover {
  background: #f4fffb;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
  transform: translateY(-1px);
}
body.evos-site .hero-side--brand-panel .hero-platform-ico:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
}
body.evos-site .hero-side--brand-panel .hero-platform-lockup__sep {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.2rem;
}
body.evos-site .hero-side--brand-panel .hero-platform-lockup__line {
  color: #fff;
}
body.evos-site .hero-side--brand-panel .hero-platform-lockup__line--tagline {
  margin: 0;
  font-size: calc(clamp(1.2rem, 2.2vw, 1.55rem) + 3px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.4;
  color: #fff;
  text-align: center;
}
body.evos-site .hero-side--brand-panel .hero-platform-lockup__label {
  color: rgba(255, 255, 255, 0.78);
}
body.evos-site .hero-side--brand-panel .hero-platform-lockup__brand {
  color: #fff;
}
body.evos-site .hero-brand-panel--stacked {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  align-self: stretch;
}
body.evos-site .hero-brand-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
}
body.evos-site .hero-brand-panel__logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 0 2px;
}
body.evos-site .hero-brand-panel__evos-logo {
  display: block;
  width: 100%;
  max-width: 260px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.25));
}
body.evos-site .hero-brand-panel__cap {
  margin: 16px 0 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  line-height: 1.45;
}
/* 랜딩 히어로: T+M+A 아이콘 락업 + 통합 플랫폼 EVOS */
body.evos-site .hero-platform-lockup {
  margin: 6px 0 22px;
  max-width: 640px;
}
body.evos-site .hero-platform-lockup__icons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-bottom: 14px;
}
body.evos-site .hero-platform-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f2faf7 0%, #e6f2ed 100%);
  border: 1px solid rgba(21, 77, 67, 0.16);
  box-shadow: 0 8px 22px rgba(12, 53, 47, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
body.evos-site .hero-platform-ico:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(12, 53, 47, 0.11);
}
body.evos-site .hero-platform-ico:focus-visible {
  outline: 2px solid #0f4a42;
  outline-offset: 3px;
}
body.evos-site .hero-platform-ico img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}
body.evos-site .hero-platform-lockup__sep {
  color: #8a9a94;
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1;
  user-select: none;
}
body.evos-site .hero-platform-lockup__line {
  margin: 0;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--deep);
  line-height: 1.25;
}
body.evos-site .hero-platform-lockup__label {
  color: #5d6b67;
  font-weight: 700;
}
body.evos-site .hero-platform-lockup__brand {
  font-weight: 800;
  color: #0f4a42;
  letter-spacing: -0.06em;
}
body.evos-site .hero-copy--visual,
body.evos-site .hero-copy--product {
  text-align: left !important;
}
body.evos-site .hero-copy--visual p,
body.evos-site .hero-copy--product p {
  max-width: 640px;
}
body.evos-site .metric-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
body.evos-site .metric-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: #eef5f2;
  border: 1px solid rgba(21, 77, 67, 0.16);
  color: var(--deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
body.evos-site .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
body.evos-site .hero-actions--secondary {
  justify-content: center;
  margin-top: 18px;
}
body.evos-site .hero-side--visual {
  background: linear-gradient(160deg, #0d2f2a 0%, #154d43 45%, #1d695c 100%);
  padding: 20px;
}
body.evos-site .hero-side--plain {
  background: linear-gradient(180deg, #f4f8f7 0%, #ecf3f1 100%);
  color: inherit;
  min-height: auto;
}
body.evos-site .hero-side--plain:after {
  display: none;
}
body.evos-site .hero-mockup-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(200px, 0.92fr);
  gap: 16px;
  align-items: stretch;
}
body.evos-site .hero-shot,
body.evos-site .product-hero-shot,
body.evos-site .shot-card,
body.evos-site .product-card-shot {
  margin: 0;
}
body.evos-site .hero-shot figcaption,
body.evos-site .product-hero-shot figcaption,
body.evos-site .shot-card figcaption {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,.88);
}
body.evos-site .hero-side--plain .product-hero-shot figcaption,
body.evos-site .shot-card figcaption {
  color: #52615d;
}
body.evos-site .hero-shot-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}
body.evos-site .device-frame,
body.evos-site .report-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
}
body.evos-site .device-frame img,
body.evos-site .report-frame img {
  display: block;
  width: 100%;
  height: auto;
}
body.evos-site .device-frame--monitor {
  border-radius: 22px;
  padding: 14px 14px 34px;
  background: linear-gradient(145deg, #17191d 0%, #292d33 35%, #101317 100%);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}
body.evos-site .device-frame--monitor::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 28%;
  max-width: 132px;
  min-width: 80px;
  height: 8px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.04));
}
body.evos-site .device-frame--monitor img {
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.08);
}
body.evos-site .device-frame--tablet {
  border-radius: 28px;
  padding: 18px 16px 34px;
  background: linear-gradient(145deg, #16181c 0%, #22272d 48%, #0f1216 100%);
  box-shadow: 0 18px 44px rgba(0,0,0,.24);
}
body.evos-site .device-frame--tablet::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 9px;
  transform: translateX(-50%);
  width: 16%;
  max-width: 70px;
  min-width: 44px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
}
body.evos-site .device-frame--tablet::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  width: 56px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
}
body.evos-site .device-frame--tablet img {
  border-radius: 16px;
  background: #fff;
}
body.evos-site .report-frame {
  border-radius: 20px;
  padding: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f1f4f6 100%);
  border: 1px solid #d9e1e4;
  box-shadow: 0 16px 40px rgba(10, 35, 30, 0.10);
}
body.evos-site .report-frame::before {
  content: "";
  display: block;
  height: 14px;
  margin: -6px -6px 12px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 14px 50%, #ffb4b4 0 4px, transparent 4px),
    radial-gradient(circle at 34px 50%, #ffe08a 0 4px, transparent 4px),
    radial-gradient(circle at 54px 50%, #98e3a8 0 4px, transparent 4px),
    linear-gradient(180deg, #f4f7f9 0%, #e8eef2 100%);
}
body.evos-site .report-frame img {
  border-radius: 14px;
  border: 1px solid #e5eaee;
  background: #fff;
}
body.evos-site .report-frame--card {
  padding: 10px;
}
body.evos-site .report-frame--hero {
  max-width: 420px;
  margin-left: auto;
}
body.evos-site .product-card-shot {
  margin: 8px 0 16px;
}
/* 홈 제품 카드: 기기 베젤 없이 화면 캡처만 */
body.evos-site .product-card-shot__screen {
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(21, 77, 67, 0.12);
  box-shadow: 0 10px 28px rgba(12, 53, 47, 0.08);
  background: #fff;
}
body.evos-site .product-card-shot__screen img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}
/* 세 카드 캡처 영역 높이·스케일 통일 */
body.evos-site .product-card-shot--uniform {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  margin: 4px 0 18px;
  flex: 1 1 auto;
}
body.evos-site .product-card-shot--uniform .product-card-shot__screen,
body.evos-site .product-card-shot--uniform .report-frame--card {
  margin: 0 auto;
  max-width: min(100%, 280px);
}
body.evos-site .product-card-shot--uniform .product-card-shot__screen img {
  max-height: 168px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
body.evos-site .product-card-shot--uniform .report-frame--card {
  max-width: min(100%, 260px);
  padding: 8px 10px 10px;
}
body.evos-site .product-card-shot--uniform .report-frame--card img {
  max-height: 152px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
body.evos-site .grid-3--overview {
  align-items: stretch;
  gap: 22px;
}
body.evos-site .section-title--tight {
  margin-top: 34px;
}
body.evos-site .mini-overview .section-title h2 {
  word-break: keep-all;
  max-width: min(100%, 46rem);
  margin-left: auto;
  margin-right: auto;
}
body.evos-site .kpi-strip--action {
  grid-template-columns: repeat(3, 1fr);
}
body.evos-site .hero-box--product {
  padding: 34px;
}
body.evos-site .hero-grid--product {
  grid-template-columns: minmax(0, .94fr) minmax(360px, .96fr);
  align-items: center;
}
body.evos-site .showcase-grid {
  display: grid;
  gap: 22px;
  align-items: start;
}
body.evos-site .showcase-grid--tablet,
body.evos-site .showcase-grid--monitor {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
}
body.evos-site .showcase-grid--report {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
body.evos-site .shot-card {
  background: #f7faf9;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow-sm);
}
body.evos-site .shot-card--wide {
  padding: 16px;
}
body.evos-site .device-frame--monitor-wide {
  max-width: 100%;
}
body.evos-site .device-frame--tablet-wide {
  max-width: 300px;
  margin: 0 auto;
}
body.evos-site .feature-note {
  height: 100%;
}
body.evos-site .feature-note .soft-box {
  margin-top: 18px;
}
body.evos-site .card--evos-product {
  text-align: center;
}
body.evos-site .grid-3--evos-products .card--evos-product {
  display: flex;
  flex-direction: column;
  height: 100%;
}
body.evos-site .grid-3--evos-products .card--evos-product .actions {
  margin-top: auto;
  padding-top: 10px;
}
body.evos-site .card--evos-product p {
  margin-top: 0;
}
body.evos-site .card--evos-product .list {
  text-align: left;
}
body.evos-site .mini-overview {
  margin-top: 10px;
}
body.evos-site .hero-copy--visual h1 {
  max-width: 22em;
}
body.evos-site .hero-grid--product .product-hero-icon {
  margin-bottom: 12px;
}
body.evos-site .hero-grid--product .product-hero-shot {
  max-width: 520px;
  margin-left: auto;
}
body.evos-site .hero-grid--product .device-frame--tablet,
body.evos-site .hero-grid--product .report-frame {
  max-width: 360px;
  margin-left: auto;
}
body.evos-site .hero-grid--product .product-hero-shot .product-hero-shot__screen {
  max-width: 420px;
  margin-left: auto;
}
body.evos-site .hero-grid--product .device-frame--monitor {
  max-width: 100%;
}
body.evos-site .product-ui-figure__cap {
  text-align: center;
}
body.evos-site .showcase-grid--report .shot-card .product-ui-figure__cap {
  margin-top: 12px;
}
@media (max-width: 1100px) {
  body.evos-site .hero-grid--visual,
  body.evos-site .hero-grid--product,
  body.evos-site .showcase-grid--tablet,
  body.evos-site .showcase-grid--monitor {
    grid-template-columns: 1fr;
  }
  body.evos-site .hero-side--visual,
  body.evos-site .hero-side--plain,
  body.evos-site .hero-side--brand-panel,
  body.evos-site .hero-grid--product .product-hero-shot,
  body.evos-site .hero-grid--product .device-frame--tablet,
  body.evos-site .hero-grid--product .report-frame,
  body.evos-site .hero-grid--product .product-hero-shot .product-hero-shot__screen {
    margin-left: 0;
    max-width: none;
  }
  body.evos-site .hero-side--brand-panel {
    min-height: 220px;
  }
}
@media (max-width: 900px) {
  body.evos-site .hero-mockup-grid,
  body.evos-site .showcase-grid--report,
  body.evos-site .kpi-strip--action {
    grid-template-columns: 1fr;
  }
  body.evos-site .hero-shot-stack {
    grid-template-rows: auto;
  }
}
@media (max-width: 680px) {
  body.evos-site .hero-box--visual,
  body.evos-site .hero-box--product,
  body.evos-site .hero-box,
  body.evos-site .panel,
  body.evos-site .site-box {
    padding: 22px;
  }
  body.evos-site .metric-pills,
  body.evos-site .hero-actions {
    gap: 10px;
  }
  body.evos-site .metric-pill {
    min-height: 34px;
    padding: 0 14px;
    font-size: 12px;
  }
  body.evos-site .product-card-shot--uniform {
    min-height: 168px;
  }
  body.evos-site .product-card-shot--uniform .product-card-shot__screen img {
    max-height: 148px;
  }
  body.evos-site .product-card-shot--uniform .report-frame--card img {
    max-height: 136px;
  }
}
body.evos-site .detail-dl {
  display: grid;
  grid-template-columns: minmax(120px, 160px) 1fr;
  gap: 10px 20px;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}
body.evos-site .detail-dl dt {
  margin: 0;
  font-weight: 600;
  color: var(--muted, #5c6c66);
}
body.evos-site .detail-dl dd {
  margin: 0;
  word-break: break-word;
}

/* —— 내부 운영요약 (admin-internal-summary) —— */
body.evos-site .section--ops-summary .ops-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
body.evos-site .ops-banner-error {
  margin: 0 0 16px;
  border-color: rgba(180, 60, 60, 0.35);
  color: #7a2222;
}
body.evos-site .ops-disclaimer {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted, #66746f);
}
body.evos-site .section-title--ops .small {
  letter-spacing: var(--evos-eyebrow-ls, 0.06em);
}
body.evos-site .ops-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 900px) {
  body.evos-site .ops-kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  body.evos-site .ops-kpi-grid {
    grid-template-columns: 1fr;
  }
}
body.evos-site a.ops-kpi-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 18px 18px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line, #d8dfdb);
  background: var(--paper, #fff);
  text-decoration: none;
  color: var(--ink, #1b2623);
  box-shadow: var(--shadow-sm, 0 1px 0 rgba(16, 37, 32, 0.04));
  transition: border-color 0.2s var(--ease-out, ease), box-shadow 0.2s var(--ease-out, ease);
}
body.evos-site a.ops-kpi-card:hover {
  border-color: rgba(12, 53, 47, 0.22);
  box-shadow: var(--shadow-md, 0 10px 30px rgba(10, 35, 30, 0.06));
}
body.evos-site .ops-kpi-card__label {
  font-size: 14px;
  font-weight: 700;
  color: var(--deep, #0c352f);
}
body.evos-site .ops-kpi-card__value {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
body.evos-site .ops-kpi-card__hint {
  font-size: 12px;
  color: var(--muted, #66746f);
  line-height: 1.4;
}
body.evos-site .ops-kpi-card__cta {
  margin-top: 4px;
  font-size: 11px;
  color: var(--accent, #2f7a68);
  font-weight: 600;
}
body.evos-site .panel--ops {
  border-radius: var(--radius-md);
}
body.evos-site .ops-section-lead {
  margin: 0 0 14px;
  font-size: 14px;
  color: var(--muted, #66746f);
  line-height: 1.5;
}
body.evos-site .ops-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
body.evos-site .ops-table th,
body.evos-site .ops-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--line, #d8dfdb);
  vertical-align: middle;
}
body.evos-site .ops-table th {
  font-weight: 700;
  font-size: 12px;
  text-transform: none;
  color: var(--muted, #66746f);
  background: var(--soft, #eef2f0);
}
body.evos-site .ops-table .ops-muted {
  color: var(--muted, #66746f);
  font-size: 13px;
  white-space: nowrap;
}
body.evos-site .ops-stage {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 6px;
  background: rgba(12, 53, 47, 0.08);
  font-size: 13px;
  font-weight: 600;
}
body.evos-site .ops-empty {
  margin: 0;
  padding: 20px;
  text-align: center;
  color: var(--muted, #66746f);
  font-size: 14px;
}
body.evos-site .btn--sm {
  padding: 6px 12px;
  font-size: 13px;
}
body.evos-site .ops-shortcut-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 900px) {
  body.evos-site .ops-shortcut-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  body.evos-site .ops-shortcut-grid {
    grid-template-columns: 1fr;
  }
}
body.evos-site a.ops-shortcut-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line, #d8dfdb);
  background: var(--surface-alt, #f5f9f8);
  text-decoration: none;
  color: var(--ink, #1b2623);
  transition: background 0.2s ease, border-color 0.2s ease;
}
body.evos-site a.ops-shortcut-card:hover {
  background: #fff;
  border-color: rgba(12, 53, 47, 0.2);
}
body.evos-site .ops-shortcut-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--deep, #0c352f);
}
body.evos-site .ops-shortcut-card__hint {
  font-size: 12px;
  color: var(--muted, #66746f);
  line-height: 1.4;
}

body.evos-site .ops-mock-badge {
  margin: 0 0 16px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  color: #5c3b00;
  background: linear-gradient(90deg, #fff3cd 0%, #ffe69c 100%);
  border: 2px solid #e0a800;
  box-shadow: 0 2px 0 rgba(92, 59, 0, 0.12);
}
body.evos-site .ops-kpi-card--error {
  border-color: rgba(180, 60, 60, 0.35);
  background: #fffbfb;
}
body.evos-site .ops-kpi-card__hint--error {
  color: #a32020;
  font-weight: 600;
}
body.evos-site .ops-empty--error {
  color: #8a2424;
  font-weight: 600;
}
body.evos-site .ops-nowrap {
  white-space: nowrap;
}

/* admin.html — 내부 직원 허브 */
body.evos-site .admin-internal-hub {
  margin: 0 0 24px;
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  border: 1px solid rgba(12, 53, 47, 0.18);
  background: linear-gradient(165deg, #f8fcfa 0%, #eef6f2 45%, #e8f2ed 100%);
  box-shadow: var(--shadow-md);
}
body.evos-site .admin-internal-hub__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent, #2f7a68);
  margin-bottom: 6px;
}
body.evos-site .admin-internal-hub__title {
  margin: 0 0 10px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--deep, #0c352f);
  letter-spacing: -0.02em;
}
body.evos-site .admin-internal-hub__lead {
  margin: 0;
  max-width: 52rem;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted, #66746f);
}
body.evos-site .admin-internal-hub__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(12, 53, 47, 0.1);
}
body.evos-site .admin-internal-hub__cta-primary {
  font-weight: 700;
  padding-left: 22px;
  padding-right: 22px;
}
