/* Generated by optimize-css-mobile-20260915.py; source order preserved. */
/* ============================================================
   KEMP 홈페이지 공통 스타일
   - 포인트 컬러, 폰트 크기 등 자주 바꾸는 값은 :root 변수만 수정
   ============================================================ */
/* Shared typography is loaded once by platform-20260904.css. */

:root {
  /* 골드 램프 (딥골드 리파인) — 역할별 6단 스케일 */
  --gold-300: #F2CE4A;      /* 다크 배경 하이라이트·글로우 전용 */
  --gold-400: #E3BC1F;      /* 다크 배경 표준 액센트: GNB 언더라인·현재위치·틱·도트 */
  --gold-500: #C7A008;      /* CTA 채움면 */
  --gold-600: #A98307;      /* 라이트 배경 대형 숫자·아이콘 */
  --gold-700: #8A6D00;      /* 라이트 배경 소형 라벨 텍스트 */
  --gold-tint: #FBF6E4;     /* 옐로우 틴트 배경 */
  --accent: var(--gold-400); /* 하위 호환 별칭 (구 원색 옐로우 대체) */
  /* 뉴트럴 스틸 램프 */
  --n-950: #101318;
  --n-900: #1A2029;
  --n-700: #3D4654;
  --n-600: #4A5361;
  --n-500: #6B7686;
  --n-400: #8B95A5;
  --n-300: #B9C0CC;
  --n-200: #D9DEE7;
  --n-100: #EBEEF3;
  --n-50: #F4F6F9;
  --dark: #101318;
  --dark2: #1A2029;
  --gray: var(--n-500);
  /* 다크 사진 위 공통 스크림 */
  --scrim: linear-gradient(180deg, rgba(16,19,24,.62), rgba(16,19,24,.38) 45%, rgba(16,19,24,.62));
  --header-h: 100px;
  /* 타이포 3계층: 본문 / 영문 디스플레이 / 데이터·라벨(모노) */
  --font: 'Lato', 'Noto Sans KR', sans-serif;
  --font-display: 'Space Grotesk', 'Lato', 'Noto Sans KR', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--dark2);
  letter-spacing: -0.01em; /* 크기 비례 자간 (구: -0.5px 고정) */
  -webkit-font-smoothing: antialiased;
}

/* 키보드 사용자는 반복 메뉴를 건너뛰고 본문으로 바로 이동 */
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 11px 16px;
  background: var(--gold-400);
  color: var(--n-950);
  font-weight: 700;
  border-radius: 2px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
/* 한국어 타이포 기본기: 어절 단위 줄바꿈 */
h1, h2, h3, h4, p, li, dt, dd, th, td, figcaption {
  word-break: keep-all;
  overflow-wrap: break-word;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; vertical-align: middle; }

/* ---------- 헤더 ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  transition: background .3s, box-shadow .3s;
}
.site-header.scrolled,
.site-header:hover {
  background: rgba(16,19,24,.72);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  backdrop-filter: blur(14px) saturate(150%);
  box-shadow: inset 0 -1px 0 rgba(255,255,255,.07);
}
/* 블러 미지원 브라우저: 기존 진한 배경 유지 */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header.scrolled,
  .site-header:hover { background: rgba(16,19,24,.92); }
}
.site-header .logo { flex: 0 0 auto; }
.site-header .logo img { height: 40px; }

.gnb { display: flex; flex: 1 1 auto; justify-content: center; min-width: 0; gap: 8px; }
.gnb > li { position: relative; }
.gnb > li > a {
  position: relative;
  display: block;
  padding: 38px 26px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .01em;
  transition: color .2s ease;
}
.gnb > li > a:hover { color: var(--gold-400); }
/* 호버·현재 페이지 골드 언더라인 (.current-group은 sub.js가 URL 매칭으로 부여) */
.gnb > li > a::after {
  content: '';
  position: absolute;
  left: 26px; right: 26px; bottom: 30px;
  height: 2px;
  background: var(--gold-400);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .28s cubic-bezier(.22,.61,.36,1);
}
.gnb > li:hover > a::after,
.gnb > li > a:focus-visible::after,
.gnb > li.current-group > a::after { transform: scaleX(1); }
.gnb > li.current-group > a { color: var(--gold-400); }
/* GNB 상위 링크 안 로고 이미지 — 텍스트 라인과 정렬 */
.gnb .nav-logo-img { height: 14px; width: auto; vertical-align: -1px; display: inline-block; }

/* 드롭다운 서브메뉴: 페이드+슬라이드 등장, :focus-within으로 키보드 접근성 확보 */
.gnb .sub {
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: var(--header-h); left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 210px;
  background: rgba(16,19,24,.94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  border-top: 2px solid rgba(255,255,255,.12);
  border-radius: 0 0 14px 14px;
  box-shadow: 0 24px 48px -12px rgba(0,0,0,.45);
  transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
}
.gnb > li:hover .sub,
.gnb > li:focus-within .sub {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity .22s ease, transform .22s ease, visibility 0s;
}
.gnb .sub a {
  display: block;
  padding: 9px 24px;
  color: var(--n-200);
  font-size: 13.5px;
  white-space: nowrap;
  text-align: center;
  transition: color .18s ease, background .18s ease;
}
.gnb .sub a:hover { color: var(--gold-400); background: rgba(255,255,255,.06); }
.gnb .sub a.current { color: var(--gold-400); }

.header-util { display: flex; flex: 0 0 auto; align-items: center; gap: 18px; }
.lang-switch { display: flex; gap: 10px; }
.lang-switch a { color: var(--n-400); font-size: 13px; font-weight: 700; }
.lang-switch a.on { color: #fff; }
.lang-select {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 2px; /* 지오메트리 경화 */
  padding: 7px 10px;
  font-size: 13px;
  font-family: var(--font);
  cursor: pointer;
}
.lang-select option { color: var(--n-950); background: #fff; }
.btn-contact {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 0;
  min-width: 88px;
  min-height: 44px;
  padding: 10px 26px;
  border: 1px solid #fff;
  border-radius: 2px; /* 지오메트리 경화 */
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  line-height: 1;
  white-space: nowrap;
  transition: all .3s;
}
/* CTA 채움면(--gold-500)이 좌→우 슬라이드 (배경 뚝 전환 대체) */
.btn-contact::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: var(--gold-500);
  transform: translateX(-102%);
  transition: transform .32s cubic-bezier(.22,.61,.36,1);
}
.btn-contact:hover { border-color: var(--gold-500); color: var(--dark); }
.btn-contact:hover::before { transform: translateX(0); }

/* 모바일 햄버거 */
.hamburger { display: none; background: none; border: 0; cursor: pointer; }
.hamburger span { display: block; width: 26px; height: 2px; background: #fff; margin: 6px 0; transition: .3s; }

/* ---------- 풀스크린 스크롤 (CSS scroll-snap) ---------- */
.fullpage {
  height: 100vh;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
}
.fp-section {
  height: 100vh;
  scroll-snap-align: start;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.fp-section.auto { height: auto; min-height: 0; display: block; scroll-snap-align: end; }

/* 어두운 스틸 틴트 오버레이로 텍스트 가독성 확보 */
.fp-section::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(16,19,24,.42);
}
.fp-section.auto::before { display: none; }
/* 정렬 축 좌측 전환: 콘텐츠 컬럼은 중앙 배치, 텍스트는 좌측 정렬 */
.fp-section > .inner {
  position: relative;
  z-index: 1;
  text-align: left;
  width: 100%;
  max-width: 1200px;
  padding: 0 clamp(24px, 5vw, 64px);
}
/* 히어로: 세그먼트 라우터 수납 밀도 — 720px 뷰포트에서도 100vh 안에 들어가도록 패딩 축소 */
.sec-hero .inner { padding-top: clamp(24px, 6vh, 90px); }

/* 섹션 배경 이미지 */
.sec-hero    { background-image: url("/assets/img/design/main_bg_1_v20260903.webp"); }
.sec-tech    { background-image: url("/assets/img/design/main_bg_2_v20260903.webp"); }
.sec-global  { background-image: url("/assets/img/design/main_bg_3_v20260903.webp"); }
.sec-value   { background-image: url("/assets/img/design/main_bg_4_v20260903.webp"); }
.sec-sample  { background-image: url("/assets/img/design/main_bg_5_v20260903.webp"); }
.sec-quality { background-image: url("/assets/img/design/main_bg_6_v20260903.webp"); }
/* 다크 섹션 사진 그레이딩: 스틸 컬러 위 luminosity 블렌드로 채도 정돈 */
.sec-hero, .sec-tech, .sec-global, .sec-value, .sec-sample, .sec-quality {
  background-color: var(--n-950);
  background-blend-mode: luminosity;
}
.sec-clients { background: var(--n-50); color: var(--dark2); }
.sec-news    { background: var(--n-100); color: var(--dark2); }
.sec-clients::before, .sec-news::before { display: none; }

/* 섹션 브랜드 로고 (라벨 자리에 제품 로고를 쓸 때) */
.sec-logo { height: clamp(30px, 4vw, 46px); width: auto; }

/* 섹션 텍스트: 라벨(작게+넓은 자간+괘선) → 제목(유동 스케일) → 리드 3단 위계 */
.sec-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-400);
  letter-spacing: .04em; /* 모노는 0~.04em */
  text-transform: uppercase;
}
/* 밝은 섹션 라벨: 라이트 배경용 딥골드 (구 인라인 색 대체) */
.sec-clients .sec-label, .sec-news .sec-label { color: var(--gold-700); }
/* 좌측 정렬 축: 왼쪽 단일 대시만 */
.sec-label::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: currentColor; /* 밝은 섹션의 인라인 색 오버라이드 자동 대응 */
  opacity: .55;
  vertical-align: middle;
  margin: 0 12px 0 0;
}
.fp-section h1,
.fp-section h2 {
  font-family: var(--font-display); /* 영문 디스플레이 — 한글은 Noto Sans KR 900 폴백 */
  font-size: clamp(32px, 3.2vw + 10px, 58px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
  padding-top: 14px;
  text-shadow: 0 2px 28px rgba(0,0,0,.35); /* 밝은 사진부 가독 보정 */
}
.fp-section .desc {
  font-size: clamp(15px, 0.5vw + 11px, 18px);
  font-weight: 400;
  line-height: 1.75;
  padding-top: 22px;
  max-width: 640px;
  margin-inline: 0; /* 좌측 정렬 축 */
  color: rgba(255,255,255,.9);
}
.sec-clients h1, .sec-clients h2,
.sec-news h1, .sec-news h2 {
  font-size: clamp(26px, 1.2vw + 18px, 34px);
  font-weight: 700;
  letter-spacing: -0.015em;
  text-shadow: none;
}
.sec-clients .desc, .sec-news .desc { color: var(--gray); }

/* 섹션 버튼 (알약형): CTA 채움면(--gold-500) 좌→우 슬라이드 인터랙션 */
.btn-pill {
  position: relative;
  overflow: hidden;
  z-index: 0;
  display: inline-block;
  margin-top: 36px;
  padding: 14px 40px;
  border: 1px solid #fff;
  border-radius: 2px; /* 지오메트리 경화: 알약 → 직각에 가까운 칩 */
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  transition: all .3s;
}
.btn-pill::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: var(--gold-500);
  transform: translateX(-102%);
  transition: transform .32s cubic-bezier(.22,.61,.36,1);
}
.btn-pill:hover { border-color: var(--gold-500); color: var(--dark); }
.btn-pill:hover::before { transform: translateX(0); }
.btn-pill.dark { border-color: var(--dark2); color: var(--dark2); }
.btn-pill.dark::before { background: var(--gold-500); }
.btn-pill.dark:hover { border-color: var(--gold-500); color: var(--dark); }

/* Scroll Down 표시: 골드 라인이 위→아래로 그려졌다 사라지는 드로우 인디케이터 */
.scroll-down {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 11px;
  letter-spacing: .32em;
  color: rgba(255,255,255,.85);
  text-align: center;
}
.scroll-down img { display: none; } /* 화살표 이미지 → 드로우 라인으로 대체 */
.scroll-down::after {
  content: '';
  display: block;
  width: 2px;
  height: 38px;
  margin: 12px auto 0;
  background: linear-gradient(to bottom, var(--gold-400) 60%, rgba(227,188,31,0));
  transform-origin: top center;
  animation: scroll-line 2.2s cubic-bezier(.65,0,.35,1) infinite;
}
@keyframes scroll-line {
  0%   { transform: scaleY(0); opacity: 1; }
  55%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* 우측 도트 네비게이션 */
.fp-dots {
  position: fixed;
  right: 26px; top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex; flex-direction: column; gap: 14px;
}
.fp-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.fp-dots button:hover { transform: scale(1.35); }
.fp-dots button.on { background: var(--gold-400); border-color: var(--gold-400); }
.fp-dots.dark button { border-color: var(--gray); }
.fp-dots.dark button.on { background: var(--gold-400); border-color: var(--gold-400); }

/* ---------- 주요 고객사 ---------- */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px 26px;
  max-width: 1100px;
  margin: 40px 0 0; /* 좌측 정렬 축 */
  align-items: center;
}
.clients-grid img { filter: grayscale(1); opacity: .75; transition: .3s; }
.clients-grid img:hover { filter: none; opacity: 1; }

/* ---------- 뉴스 ---------- */
.news-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x proximity; /* 대각선 스크롤 시 강제 점프 완화 */
  scroll-padding-left: 0;
  overscroll-behavior-x: contain;
  max-width: 1200px;
  margin: 40px 0 0; /* 좌측 정렬 축 */
  padding: 4px 12px 16px 0; /* 카드 첫 열을 제목 축에 맞춤 */
  scrollbar-width: thin;                        /* Firefox */
  scrollbar-color: rgba(16,19,24,.22) transparent;
}
.news-track::-webkit-scrollbar { height: 6px; }
.news-track::-webkit-scrollbar-track { background: transparent; }
.news-track::-webkit-scrollbar-thumb { background: rgba(16,19,24,.22); border-radius: 999px; }
.news-track::-webkit-scrollbar-thumb:hover { background: rgba(16,19,24,.4); }
.news-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--n-100);
  border-radius: 4px; /* 지오메트리 경화 */
  overflow: hidden;
  text-align: left;
  box-shadow: none; /* 기본 상태는 헤어라인 보더 중심 */
  transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
}
.news-card:hover {
  transform: translateY(-6px);
  border-color: var(--n-200);
  box-shadow: 0 20px 38px -10px rgba(16,19,24,.16);
}
.news-card img { width: 100%; height: 180px; object-fit: cover; transition: transform .45s ease; }
.news-card:hover img { transform: scale(1.05); }
.news-card .tit {
  padding: 16px 16px 6px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 60px;
}
.news-card .date { padding: 0 16px 16px; font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .02em; font-variant-numeric: tabular-nums; color: var(--gray); }

/* ---------- 푸터 ---------- */
.site-footer {
  background: var(--dark);
  color: var(--n-400);
  font-size: 13.5px;
  line-height: 1.9;
  padding: 60px 50px 40px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
}
.footer-info { color: var(--n-400); }
.footer-info .foot-logo { height: 34px; margin-bottom: 18px; }
/* 위계 교정: 라벨(어둡게) < 값(밝게) */
.footer-info strong {
  color: var(--n-500);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: .3px;
  margin-right: 2px;
}
.footer-sns { display: flex; gap: 12px; margin-top: 22px; }
.footer-sns a { display: inline-block; opacity: .8; transition: transform .2s ease, opacity .2s ease; }
.footer-sns a:hover { opacity: 1; transform: translateY(-3px); }
.footer-sns img { width: 34px; height: 34px; }
.footer-sitemap { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-sitemap dt {
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: .06em;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  margin-bottom: 12px;
}
.footer-sitemap dd a { color: var(--n-400); font-size: 13px; display: block; padding: 2px 0; transition: color .2s ease; }
.footer-sitemap dd a:hover { color: var(--accent); }
.footer-copy {
  text-align: center;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.07);
  color: var(--n-500);
  font-size: 12.5px;
  letter-spacing: .05em;
}

/* ---------- 반응형 ---------- */
@media (max-width: 1360px) {
  .site-header { padding-inline: 24px; }
  .gnb { gap: 2px; }
  .gnb > li > a { padding-inline: 14px; font-size: 15px; }
  .gnb > li > a::after { left: 14px; right: 14px; }
  .header-util { gap: 10px; }
  .header-util .btn-catalog { display: none; }
  .btn-contact { min-width: 84px; padding-inline: 16px; }
}
@media (max-width: 1270px) {
  .gnb, .header-util .btn-contact { display: none; }
  .hamburger { display: block; }
  .site-header { padding: 0 22px; height: 70px; }
  :root { --header-h: 70px; }
  /* 중간 폭부터 전체메뉴로 전환해 다국어 메뉴와 문의 CTA의 줄바꿈을 방지 */
  .mobile-menu {
    position: fixed; inset: 0; top: 70px;
    background: rgba(16,19,24,.97);
    z-index: 99;
    overflow-y: auto;
    padding: 30px 28px;
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .25s ease, transform .25s ease, visibility 0s linear .25s;
  }
  .mobile-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity .25s ease, transform .25s ease, visibility 0s;
  }
  body.menu-open { overflow: hidden; }
  .mobile-menu dl { max-width: 620px; margin: 0 auto; }
  .mobile-menu dt {
    position: relative;
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    padding: 17px 44px 17px 2px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    cursor: pointer;
  }
  .mobile-menu dt::after {
    content: '+';
    position: absolute;
    right: 4px;
    top: 50%;
    color: var(--gold-400);
    font-size: 23px;
    font-weight: 400;
    line-height: 1;
    transform: translateY(-50%);
    transition: transform .2s ease;
  }
  .mobile-menu dt.open::after { transform: translateY(-50%) rotate(45deg); }
  .mobile-menu dd { background: rgba(255,255,255,.025); }
  .mobile-menu dd a { color: var(--n-200); display: block; padding: 10px 12px 10px 16px; font-size: 15px; }
  .mobile-menu dd a:hover, .mobile-menu dd a:focus-visible { color: var(--gold-300); }
}
@media (max-width: 1200px) {
  .gnb > li > a { padding: 38px 10px; font-size: 14px; }
  .gnb > li > a::after { left: 10px; right: 10px; }
}
@media (max-width: 960px) {
  /* h1/.desc 모바일 크기는 clamp() 하한(32px/15px)이 담당 */
  .sec-hero    { background-image: url("/assets/img/design/main_bg_1_m_v20260903.webp"); }
  .sec-tech    { background-image: url("/assets/img/design/main_bg_2_m_v20260903.webp"); }
  .sec-global  { background-image: url("/assets/img/design/main_bg_3_m_v20260903.webp"); }
  .sec-value   { background-image: url("/assets/img/design/main_bg_4_m_v20260903.webp"); }
  .sec-sample  { background-image: url("/assets/img/design/main_bg_5_m_v20260903.webp"); }
  .sec-quality { background-image: url("/assets/img/design/main_bg_6_m_v20260903.webp"); }
  .clients-grid { grid-template-columns: repeat(3, 1fr); padding: 0 20px; }
  .fp-dots { display: none; }
}
@media (min-width: 1271px) { .mobile-menu { display: none !important; } }

/* ---------- 풀스크린 텍스트 순차 등장 (main.js가 html에 js-motion 부여 — 무JS 시 항상 표시) ---------- */
.js-motion .fp-section .inner > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
}
.js-motion .fp-section.is-active .inner > * { opacity: 1; transform: translateY(0); }
.js-motion .fp-section.is-active .inner > :nth-child(1) { transition-delay: .08s; }
.js-motion .fp-section.is-active .inner > :nth-child(2) { transition-delay: .2s; }
.js-motion .fp-section.is-active .inner > :nth-child(3) { transition-delay: .32s; }
.js-motion .fp-section.is-active .inner > :nth-child(4) { transition-delay: .44s; }
.js-motion .fp-section.is-active .inner > :nth-child(5) { transition-delay: .56s; }
/* 버튼은 색 전환 병기 + 색 전환에는 지연 미적용 (nth-child 규칙보다 반드시 뒤) */
.js-motion .fp-section .inner > .btn-pill {
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1),
              border-color .3s ease, color .3s ease;
}
.js-motion .fp-section.is-active .inner > .btn-pill { transition-delay: .44s, .44s, 0s, 0s; }

/* ---------- 브랜드 마이크로 디테일 ---------- */
/* 시험규격 표기 유틸: ASTM B117, JIS H 8502 등 인라인 규격은 모노로 */
.spec { font-family: var(--font-mono); font-size: .92em; }
::selection { background: var(--gold-tint); color: var(--dark); }
:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 3px; border-radius: 2px; }

/* ============================================================
   C1: 섹션별 변화 각본 — 메인 8섹션 문법 분화
   ============================================================ */

/* ② 기술: 배경사진 제거 → 다크 솔리드(--n-950) 위 5:7 비대칭 스플릿 */
.fp-section.sec-tech { background: var(--n-950); }
.sec-tech::before, .fp-section.sec-value::before { display: none; }
.tech-split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(28px, 4vw, 72px);
  align-items: center;
}
.tech-copy { max-width: 560px; }
.tech-copy .sec-label { display: block; margin-top: 28px; }
.tech-evidence { margin: 0; min-width: 0; }
.tech-evidence img {
  display: block;
  width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 4px;
}
.tech-evidence figcaption {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .02em;
  color: var(--n-400);
}

/* ③ 글로벌: 좌하단 앵커 + 대형 연도 수치(모노) */
.sec-global .inner { padding-top: clamp(70px, 16vh, 200px); }
.global-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px clamp(36px, 6vw, 88px);
  margin-top: 38px;
}
.g-stat .num {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(40px, 3.2vw + 16px, 62px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.01em;
  color: var(--gold-300);
  font-variant-numeric: tabular-nums;
}
.g-stat .cap {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.85);
}

/* ④ 솔루션: 라이트 배경(--n-50) 반전 + 오프그리드 목차형 */
.fp-section.sec-value { background: var(--n-50); color: var(--dark2); }
.sec-value .sec-label { color: var(--gold-700); }
.sec-value h1,
.sec-value h2 {
  font-size: clamp(28px, 1.6vw + 18px, 40px);
  text-shadow: none;
}
.sec-value .desc { color: var(--gray); }
.value-toc {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(28px, 4vw, 72px);
  align-items: start;
}
.value-list {
  list-style: none;
  margin-top: clamp(20px, 9vh, 96px); /* 오프그리드: 우측 리스트를 아래로 밀어 어긋난 정렬 */
}
.value-list li + li { border-top: 1px solid var(--n-200); }
.value-list a {
  display: flex;
  align-items: baseline;
  gap: clamp(18px, 2.4vw, 40px);
  padding: clamp(14px, 2.4vh, 26px) 4px;
  transition: background .2s ease, padding .25s ease;
}
.value-list a:hover { background: #fff; padding-left: 16px; }
.value-list .no {
  font-family: var(--font-mono);
  font-size: clamp(22px, 1.6vw + 10px, 34px);
  font-weight: 600;
  color: var(--gold-600);
  font-variant-numeric: tabular-nums;
}
.value-list .tit {
  font-size: clamp(17px, 1vw + 11px, 25px);
  font-weight: 700;
  color: var(--dark2);
}

/* 라이트 섹션(sec-value) 위 도트 가시성: JS 무수정 — 밝은 배경에서도 보이는 외곽 링 */
.fp-dots:not(.dark) button { box-shadow: 0 0 0 1px rgba(16,19,24,.22); }

/* C1 반응형: 스플릿·목차 1단 적층 + 내용 초과 시 섹션 높이 유동 */
@media (max-width: 960px) {
  .fp-section.sec-tech, .fp-section.sec-value {
    height: auto;
    min-height: 100vh;
    padding: calc(var(--header-h) + 36px) 0 56px;
  }
  .tech-split, .value-toc { grid-template-columns: 1fr; gap: 30px; }
  .value-list { margin-top: 0; }
  .sec-global .inner { padding-top: clamp(56px, 12vh, 140px); }
  .g-stat .num { font-size: clamp(34px, 9vw, 48px); }
}

/* ============================================================
   히어로 세그먼트 라우터 — 시장별 진입 칩 8 + 30초 진단 딥링크
   (브랜드 카피는 축소, 라우터가 히어로의 본체)
   ============================================================ */
/* 브랜드 카피 축소: h1 한 단계 다운 + 리드 압축 */
.sec-hero h1 {
  font-size: clamp(26px, 1.8vw + 12px, 40px);
  padding-top: 10px;
}
.sec-hero .desc {
  font-size: clamp(14px, 0.3vw + 11px, 16px);
  line-height: 1.6;
  padding-top: 10px;
}

.hero-router { margin-top: clamp(18px, 3.4vh, 34px); }
.router-q {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
}

/* 칩 그리드: 4열 → 모바일 2열 */
.seg-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
  max-width: 920px;
}
/* 세그먼트 칩: 다크 유리 카드 — rgba 배경 + 헤어라인, 호버 시 골드 보더·리프트 */
.seg-chip {
  display: block;
  padding: 10px 12px;
  background: rgba(16,19,24,.55);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 4px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: border-color .22s ease, transform .22s ease, background .22s ease;
}
.seg-chip:hover {
  border-color: var(--gold-400);
  background: rgba(16,19,24,.72);
  transform: translateY(-3px);
}
.seg-chip .lb {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  word-break: keep-all;   /* 긴 라벨(용융아연도금 인프라 현장 보수)의 어절 중간 파단 방지 */
  text-wrap: balance;
}
.seg-chip .hk {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--n-300);
}

/* 진단 한 줄: 모노 라벨 + 소재 알약 버튼 4개 */
.diag-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-top: 14px;
}
.diag-label {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .02em;
  color: var(--n-300);
  margin-right: 4px;
}
.diag-btn {
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.diag-btn:hover {
  border-color: var(--gold-400);
  color: var(--gold-300);
  background: rgba(16,19,24,.5);
}

/* 우회 링크: 사양 확정 고객 바로 문의 */
.bypass {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  color: var(--n-300);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,.35);
  transition: color .2s ease, text-decoration-color .2s ease;
}
.bypass:hover { color: var(--gold-300); text-decoration-color: var(--gold-300); }

/* ============================================================
   플랫폼형 히어로 — 첫 화면은 세 가지 탐색 방식만 제시
   ============================================================ */
.sec-hero h1 {
  max-width: 780px;
  font-size: clamp(40px, 4vw + 12px, 68px);
  line-height: 1.08;
  padding-top: 16px;
}
.sec-hero .desc {
  max-width: 720px;
  font-size: clamp(16px, .6vw + 12px, 20px);
  padding-top: 18px;
}
.platform-entry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 980px;
  margin-top: clamp(28px, 5vh, 52px);
}
@media (min-width: 961px) {
  .platform-entry-grid.platform-entry-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.platform-entry {
  position: relative;
  display: flex;
  min-height: 154px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  overflow: hidden;
  background: rgba(16,19,24,.68);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.platform-entry::after {
  content: '→';
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-mono);
  color: var(--n-300);
  transition: transform .2s ease, color .2s ease;
}
.platform-entry:hover {
  transform: translateY(-4px);
  border-color: var(--gold-400);
  background: rgba(16,19,24,.86);
}
.platform-entry:hover::after { transform: translateX(4px); color: var(--gold-300); }
.platform-entry.is-primary {
  background: var(--gold-500);
  border-color: var(--gold-400);
  color: var(--n-950);
}
.platform-entry.is-primary::after,
.platform-entry.is-primary .pe-no,
.platform-entry.is-primary > span:last-child { color: rgba(16,19,24,.68); }
.platform-entry .pe-no {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold-300);
}
.platform-entry strong {
  display: block;
  font-size: clamp(18px, 1vw + 13px, 24px);
  line-height: 1.25;
}
.platform-entry > span:last-child {
  display: block;
  margin-top: 8px;
  color: var(--n-300);
  font-size: 13px;
  line-height: 1.55;
}
.hero-consult {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255,255,255,.38);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: color .2s ease, border-color .2s ease;
}
.hero-consult:hover { color: var(--gold-300); border-color: var(--gold-300); }

/* 현장별 솔루션은 밝은 디렉터리 화면으로 분리 */
.fp-section.sec-market-directory {
  background: var(--n-50);
  color: var(--n-950);
}
.sec-market-directory::before { display: none; }
.sec-market-directory .sec-label { color: var(--gold-700); }
.sec-market-directory h2 {
  color: var(--n-950);
  font-size: clamp(32px, 2.8vw + 14px, 54px);
  text-shadow: none;
}
.sec-market-directory .desc {
  max-width: 620px;
  padding-top: 16px;
  color: var(--n-600);
}
.market-directory-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}
.directory-all {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 18px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--n-400);
  color: var(--n-700);
  font-size: 13px;
  font-weight: 700;
  transition: color .2s ease, border-color .2s ease;
}
.directory-all:hover { color: var(--gold-700); border-color: var(--gold-500); }
.market-directory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--n-200);
  border-left: 1px solid var(--n-200);
}
.market-directory-grid a {
  position: relative;
  display: flex;
  min-height: 142px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  background: #fff;
  border-right: 1px solid var(--n-200);
  border-bottom: 1px solid var(--n-200);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.market-directory-grid a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gold-500);
  transition: width .25s ease;
}
.market-directory-grid a:hover {
  z-index: 1;
  background: var(--gold-tint);
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(16,19,24,.1);
}
.market-directory-grid a:hover::before { width: 100%; }
.market-directory-grid strong {
  color: var(--n-950);
  font-size: 18px;
  line-height: 1.3;
  word-break: keep-all;
}
.market-directory-grid span {
  margin-top: 7px;
  color: var(--n-500);
  font-size: 12.5px;
  line-height: 1.5;
}

/* 라우터 반응형: 칩 2열 적층 + 히어로 높이 유동(내용 초과 시) */
@media (max-width: 960px) {
  .fp-section.sec-hero {
    height: auto;
    min-height: 100vh;
    padding: calc(var(--header-h) + 28px) 0 120px; /* 하단은 scroll-down 자리 확보 */
  }
  .sec-hero .inner { padding-top: 0; }
  .sec-hero h1 { font-size: clamp(36px, 9vw, 52px); }
  .platform-entry-grid { grid-template-columns: 1fr; margin-top: 28px; }
  .platform-entry { min-height: 118px; }
  .seg-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .seg-chip { padding: 9px 11px; }
  .seg-chip .lb { font-size: 13.5px; }
  .fp-section.sec-market-directory {
    height: auto;
    min-height: 100vh;
    padding: calc(var(--header-h) + 48px) 0 72px;
  }
  .market-directory-head { align-items: flex-start; flex-direction: column; margin-bottom: 28px; }
  .market-directory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .platform-entry { padding: 18px; }
  .platform-entry .pe-no { top: 16px; left: 18px; }
  .platform-entry::after { top: 16px; right: 18px; }
  .market-directory-grid a { min-height: 128px; padding: 18px; }
  .market-directory-grid strong { font-size: 16px; }
}

/* ---------- 모션 최소화 선호: 전역 가드 ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    transition-delay: 0ms !important;
  }
}

/* Global 섹션: 디스트리뷰터 초대 문장 + 버튼 2열 */
.fp-section .invite {
  margin-top: 18px;
  max-width: 620px;
  font-size: clamp(15.5px, 1vw + 9px, 19px);
  font-weight: 700;
  line-height: 1.65;
  color: #fff;
}
.fp-section .btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.fp-section .btn-row .btn-pill { margin-top: 0; }

/* Keep the native language picker and menu reachable on narrow phones. */
@media (max-width: 480px) {
  .site-header { padding-inline: 12px; gap: 12px; }
  .site-header>nav { display: none; }
  .site-header .logo img { height: clamp(28px, 8vw, 36px); width: auto; }
  .site-header .header-util { flex: 1 1 auto; min-width: 0; justify-content: flex-end; gap: 8px; }
  .site-header .lang-switch { flex: 1 1 110px; min-width: 0; max-width: 144px; }
  .site-header .lang-select { flex: 1 1 110px; width: 100%; min-width: 0; max-width: 144px; min-height: 40px; padding-inline: 8px; font-size: 14px; }
  .site-header .hamburger { flex: 0 0 40px; width: 40px; min-height: 44px; padding: 7px; }
  .site-header .hamburger span { margin-inline: auto; }
}

/* Keyboard-operable disclosure controls preserve the existing mobile layout. */
@media (max-width:1270px) {
  .mobile-menu dt.mobile-section-heading { padding:0; }
  .mobile-section-toggle { display:block; width:100%; min-height:56px; padding:17px 44px 17px 2px; border:0; background:transparent; color:inherit; font:inherit; text-align:start; cursor:pointer; }
  .mobile-menu dt.mobile-section-heading::after { pointer-events:none; }
  .mobile-section-toggle:focus-visible { outline:2px solid var(--gold-400); outline-offset:-3px; }
}
main[id][tabindex="-1"] { scroll-margin-top:calc(var(--header-h,100px) + 16px); }
.article-body img[width][height], .revision4-company main .split img[width][height] { height:auto; }
.gnb > li.nav-open .sub { transition-property:opacity,transform; transition-delay:0s; }

/* Keep shared-header brand marks at their intrinsic aspect ratios. */
.site-header > .logo img {
  width: auto;
  max-width: none;
  object-fit: contain;
}
.site-header .gnb .nav-logo-img {
  width: auto;
  max-width: none;
  object-fit: contain;
  flex: 0 0 auto;
}
.site-header .gnb > li:has(.nav-logo-img) { flex-shrink: 0; }

/* Reserve space for translated navigation before the mobile breakpoint.
   Catalogues remain accessible from the service/resources navigation. */
@media (min-width: 1271px) and (max-width: 1500px) {
  .site-header .header-util .btn-catalog { display: none; }
}

@media (min-width: 1271px) and (max-width: 1366px) {
  .site-header .gnb > li > a[href] { padding-inline: 7px; font-size: 14px; }
}
/* KEMP platform refinement: catalog discoverability without footer or sticky UI changes */
.btn-catalog {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 16px;
  border-bottom: 1px solid rgba(227, 188, 31, .72);
  color: var(--gold-300, #e3bc1f);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  white-space: nowrap;
  transition: color .2s ease, border-color .2s ease;
}
.btn-catalog:hover,
.btn-catalog:focus-visible {
  border-color: #fff;
  color: #fff;
}

.hero-support-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  margin-top: 24px;
}
.hero-support-links .hero-consult,
.hero-support-links .hero-catalog-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 0;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255,255,255,.38);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: color .2s ease, border-color .2s ease;
}
.hero-support-links .hero-catalog-link {
  border-color: rgba(227,188,31,.72);
  color: var(--gold-300, #e3bc1f);
}
.hero-support-links a:hover,
.hero-support-links a:focus-visible {
  border-color: var(--gold-300, #e3bc1f);
  color: var(--gold-300, #e3bc1f);
}

.platform-entry > span:last-child {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.catalog-discovery-bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin: 30px 0 0;
  padding: 20px 22px;
  border: 1px solid var(--n-200, #dfe3ea);
  border-left: 3px solid var(--gold-500, #cf9f00);
  border-radius: 4px;
  background: #fff;
}
.catalog-discovery-bar .catalog-mark {
  color: var(--gold-700, #8b6800);
  font-family: var(--font-mono, monospace);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
}
.catalog-discovery-bar p {
  margin: 0;
  color: var(--n-700, #3b424d);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}
.catalog-discovery-bar a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--n-950, #101318);
  border-radius: 2px;
  color: var(--n-950, #101318);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease;
}
.catalog-discovery-bar a:hover,
.catalog-discovery-bar a:focus-visible {
  background: var(--n-950, #101318);
  color: var(--gold-300, #e3bc1f);
}

.tool-card.catalog-featured {
  border-color: rgba(207,159,0,.45);
  box-shadow: 0 18px 42px -26px rgba(16,19,24,.3);
}

@media (max-width: 1120px) {
  .header-util { gap: 12px; }
  .btn-catalog { padding-inline: 10px; }
}

@media (max-width: 960px) {
  .header-util .btn-catalog { display: none; }
  .catalog-discovery-bar {
    grid-template-columns: 1fr auto;
  }
  .catalog-discovery-bar .catalog-mark {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .hero-support-links { gap: 12px 20px; }
  .hero-support-links .hero-consult,
  .hero-support-links .hero-catalog-link { font-size: 13px; }
  .catalog-discovery-bar {
    grid-template-columns: 1fr;
    padding: 18px;
  }
  .catalog-discovery-bar a {
    justify-content: center;
    width: 100%;
  }
}
:root{--font:'Pretendard Variable',Pretendard,-apple-system,BlinkMacSystemFont,'Segoe UI','Malgun Gothic',sans-serif;--font-display:var(--font);--font-mono:ui-monospace,SFMono-Regular,Consolas,monospace}
html:lang(ja){--font:'Yu Gothic UI','Yu Gothic','Hiragino Kaku Gothic ProN',Meiryo,sans-serif}
html:lang(zh),html:lang(zh-CN){--font:'Microsoft YaHei','PingFang SC','Noto Sans CJK SC',sans-serif}
html:lang(zh-TW){--font:'Microsoft JhengHei','PingFang TC','Noto Sans CJK TC',sans-serif}
html:lang(th){--font:'Leelawadee UI',Tahoma,'Noto Sans Thai',sans-serif}
body{font-family:var(--font)}
@media(min-width:1271px){html:lang(ko) .gnb{gap:4px}html:lang(ko) .gnb>li>a{white-space:nowrap;padding-inline:16px;font-size:14px}html:lang(ko) .gnb>li>a::after{left:16px;right:16px}}
h1,h2,h3,.sub-hero h1,.fp-section h1,.fp-section h2{font-family:var(--font-display);letter-spacing:-.035em;text-wrap:balance;word-break:normal;overflow-wrap:break-word}
html:lang(ko) h1,html:lang(ko) h2,html:lang(ko) h3{word-break:keep-all}
.fp-section h1{font-size:clamp(34px,4.3vw,66px);font-weight:750;line-height:1.15}
.fp-section h2,.sub-content h2{font-size:clamp(26px,3vw,42px);font-weight:720;line-height:1.3}
.sub-content .lead{font-size:clamp(16px,1.25vw,19px);font-weight:420;line-height:1.85;max-width:76ch;word-break:normal}
.sub-content .stat-band{grid-template-columns:repeat(auto-fit,minmax(140px,1fr))}
.sub-content .stat-band>div{min-width:0}.sub-content .stat-band .num{font-size:clamp(28px,4vw,48px);overflow-wrap:anywhere}
.sub-content .split>div,.sub-content .card-grid>*,.sub-content .geo-faq-item{min-width:0}
.sub-content section>table{display:block;max-width:100%;overflow-x:auto}
.sub-hero .crumb{max-width:100%;flex-wrap:wrap;overflow-wrap:anywhere}
.sub-hero .crumb a{min-width:0}
html:lang(ko) .sub-content .lead{word-break:keep-all}
.fullpage{scroll-snap-type:none}
.fullpage .fp-section:not(.sec-hero):not(.auto){height:auto;min-height:0;padding:clamp(52px,6vw,88px) 0;scroll-snap-align:none}
.fullpage .fp-section:not(.sec-hero)>.inner{padding-top:0}
.fullpage .fp-section.auto{padding:0;scroll-snap-align:none}
.sec-hero{min-height:760px;height:100svh}
.sec-hero .desc{font-size:clamp(16px,1.5vw,21px);line-height:1.7;max-width:46ch}
.sec-global .global-stats{margin-top:24px}
.value-list{margin-top:10px}
.js-motion .fp-section .inner>*{opacity:1;transform:none;transition:none}
.fp-dots{display:none}
.site-footer{position:static;padding:30px clamp(22px,4vw,50px) 20px;line-height:1.8}
.footer-top{gap:22px}
.footer-info .foot-logo{height:27px;margin-bottom:12px}
.footer-sns{margin-top:12px;gap:10px}
.footer-sns img{width:28px;height:28px}
.footer-quicklinks{display:flex;flex-wrap:wrap;align-content:flex-start;gap:12px 22px;max-width:430px;font-size:13px;line-height:1.6}
.footer-quicklinks a{color:#c1c9d3;padding:6px 0}
.footer-quicklinks a:hover,.footer-quicklinks a:focus-visible{color:#f2ce4a}
.footer-copy{margin-top:22px;padding-top:14px}
@media(max-width:760px){.sec-hero{height:auto;min-height:100svh;padding:calc(var(--header-h,80px) + 32px) 0 48px}.sec-hero .inner{padding-top:0}.fullpage .fp-section:not(.sec-hero):not(.auto){padding:48px 0}.footer-quicklinks{max-width:none;gap:6px 20px}.site-footer{padding-top:26px}.sub-content .lead{line-height:1.8}}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}*,*::before,*::after{animation-duration:.01ms!important;transition-duration:.01ms!important}}
/* Korean structure review: shared components, no changes to calculator inputs. */
body[data-structure-version] .site-header{background:rgba(16,19,24,.96)}
.sub-hero.structure-hero{height:auto}
.sub-hero.structure-hero .elpang-hero-action{position:static;inset:auto;transform:none;margin:0}
.sub-content.feature-rebuilt{padding-top:0;padding-bottom:48px}
.feature-rebuilt section+section{margin-top:0;border-top:1px solid #edf0f2}
.feature-rebuilt .intro-copy .eyebrow{font-size:11px;line-height:1.5;letter-spacing:.15em;color:#806509;margin:0 0 14px}
.lineup-problem-link{padding:18px 0;border-block:1px solid #e2e6e9;color:#796318;font-size:14px}
.structure-wrap{width:min(1200px,calc(100% - 64px));margin-inline:auto}
.home-rebuilt{padding-top:var(--header-h,100px);background:#fff;color:#171c22}
.home-rebuilt .eyebrow,.feature-rebuilt .eyebrow{font-size:11px;letter-spacing:.15em;font-weight:750;color:#806509;margin:0 0 14px}
.home-intro{background:#121921 url('/assets/img/design/main_bg_2_v20260903.webp') center/cover;color:white;padding:60px 0 56px}
.home-intro .eyebrow{color:#d8b442}.home-intro h1{font-size:clamp(30px,3.35vw,48px);line-height:1.35;font-weight:700;letter-spacing:-.045em;max-width:1050px;margin:0}
.home-summary{color:#c4ccd3;font-size:17px;line-height:1.75;margin:20px 0 24px}
.text-link{display:inline-flex;gap:18px;align-items:center;font-weight:650;font-size:14px;color:#26303a;text-decoration:none}.text-link.light{color:#f0d074}
.home-rebuilt h2{font-size:clamp(24px,2.3vw,32px);line-height:1.4;font-weight:720;margin:0}.section-heading{display:flex;align-items:flex-end;justify-content:space-between;gap:24px;margin-bottom:28px}.section-heading p:not(.eyebrow){margin:10px 0 0;color:#66717b;line-height:1.7}
.home-brands{padding-block:48px 56px}.brand-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}.brand-card{display:flex;flex-direction:column;align-items:flex-start;border:1px solid #dfe3e7;padding:22px 24px 20px;min-width:0;border-radius:4px;color:#1c2229;background:#fff;transition:border-color .15s,background .15s;text-decoration:none}.brand-card:hover{border-color:#b28c16;background:#fffdf5}.brand-number{font-size:11px;color:#89919a;letter-spacing:.1em;margin-bottom:24px}.brand-card img{height:38px;max-width:100%;width:auto;object-fit:contain;object-position:left center}.brand-card p{font-size:15px;line-height:1.6;margin:20px 0 24px;word-break:keep-all}.brand-more{font-size:12px;color:#727981;display:flex;justify-content:space-between;width:100%;margin-top:auto}
.home-finder{background:#f3f4f5;border-block:1px solid #e8eaed;padding:48px 0}.field-chips{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px}.field-chips a{padding:16px 18px;background:#fff;border:1px solid #e0e3e6;border-radius:3px;display:flex;justify-content:space-between;gap:12px;color:#26313b;font-size:15px;text-decoration:none}.field-chips a:hover{border-color:#aa8515}.field-chips span{color:#9b8026}.finder-actions{display:flex;gap:28px;flex-wrap:wrap;margin-top:22px}.finder-actions a{font-size:14px;font-weight:650;color:#3e4852}.finder-actions span{margin-left:12px}
.home-confidence{display:grid;grid-template-columns:.9fr 1.1fr;gap:70px;padding-block:56px}.home-confidence p:not(.eyebrow){font-size:15px;line-height:1.8;color:#66717b;margin-top:16px}.confidence-links a{display:flex;align-items:center;gap:24px;padding:20px 0;border-bottom:1px solid #e4e6e8;color:#222c35;text-decoration:none}.confidence-links a:first-child{padding-top:0}.confidence-links a>span{font-size:12px;color:#9b8026}.confidence-links h3{font-size:18px;margin:0}.confidence-links p{margin:5px 0 0!important;font-size:14px!important}.confidence-links b{margin-left:auto;font-weight:400}
.home-contact{padding:32px 0;background:#f7f4eb;border-top:1px solid #e7e0cb}.home-contact>.structure-wrap{display:flex;align-items:center;justify-content:space-between;gap:26px}.home-contact h2{font-size:24px}.home-contact p:not(.eyebrow){font-size:15px;color:#666a6e;margin:9px 0 0}.home-contact .eyebrow{margin-bottom:8px}.structure-button{background:#c6a00e;color:#14191f;border:1px solid #c6a00e;display:inline-flex;justify-content:center;align-items:center;gap:24px;padding:15px 24px;font-size:15px;font-weight:750;border-radius:3px;text-decoration:none}.structure-button.secondary{background:#fff;border-color:#d5dadd;color:#27303a}
.feature-rebuilt{max-width:1200px}.feature-rebuilt section{padding-block:40px!important}.feature-rebuilt .intro-copy{max-width:780px}.feature-rebuilt .intro-copy p{font-size:18px;line-height:1.85;color:#58626d}.feature-rebuilt h2{font-size:clamp(25px,2.5vw,34px)}.feature-rebuilt h3{font-size:20px;line-height:1.5}.feature-rebuilt p{line-height:1.85}.feature-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin-top:24px}.feature-card{border:1px solid #e1e5e8;background:#fafbfc;border-radius:4px;padding:24px;min-width:0}.feature-card .step{font-size:12px;color:#8f7420;letter-spacing:.08em}.feature-card h3{margin:14px 0 10px}.feature-card p{margin:0;font-size:15px;color:#58626d}.feature-card .text-link{margin-top:20px}.feature-note{border-left:3px solid #c4a237;background:#f7f6f1;color:#646b72;padding:16px 20px;font-size:14px!important;line-height:1.8!important;margin-top:22px}.feature-jumps{display:flex;gap:10px;flex-wrap:wrap;margin:18px 0 0}.feature-jumps a{border:1px solid #dae0e4;background:#fff;padding:9px 14px;color:#48515a;border-radius:3px;font-size:14px}.feature-line{display:grid;grid-template-columns:180px 1fr;gap:28px;border-top:1px solid #e1e5e8;padding:24px 0}.feature-line h3{margin:0}.feature-line p{margin:0;color:#5a626c}.feature-line p+p{margin-top:12px}.feature-rebuilt .performance-callout{background:#f5f6f7;border-radius:4px;padding:26px;margin:24px 0;display:flex;gap:28px;align-items:center}.performance-callout strong{font-size:clamp(26px,3vw,40px);font-weight:720;color:#202a34;white-space:nowrap}.performance-callout p{margin:0;color:#5a6570;font-size:15px}.feature-table-wrap{overflow-x:auto;max-width:100%}.feature-table-wrap table{width:100%;border-collapse:collapse;min-width:660px;font-size:14px}.feature-table-wrap th,.feature-table-wrap td{padding:14px;text-align:left;border-bottom:1px solid #dfe3e7}.feature-table-wrap th{background:#eef1f3;font-weight:650}.feature-table-wrap caption{text-align:left;font-size:14px;color:#606a74;padding:0 0 12px}.feature-cta{display:flex;align-items:center;justify-content:space-between;gap:24px;border-top:1px solid #e1e5e8}.feature-cta p{color:#65707b}.hub-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin-top:26px}.hub-card{display:flex;gap:24px;justify-content:space-between;padding:24px;border:1px solid #e0e4e7;border-radius:4px;color:#26313a;text-decoration:none;background:#fafbfc}.hub-card:hover{border-color:#ac8a21}.hub-card h3{margin:0 0 8px}.hub-card p{margin:0;color:#69727d;font-size:15px}.hub-card>span{color:#9b7b1a}
.structure-hero{min-height:0!important;padding:calc(var(--header-h,100px) + 42px) max(32px,calc((100vw - 1200px)/2)) 36px!important}.structure-hero .hero-action-wrap{display:flex;align-items:center;justify-content:space-between;gap:30px;width:100%}.structure-hero h1{font-size:clamp(30px,3.4vw,46px);margin:0 0 12px}.structure-hero .hero-description{font-size:17px;font-weight:400;line-height:1.7;max-width:650px;color:#d2d8df;margin:0}.structure-hero .crumb{margin-top:22px}.structure-hero .structure-button{flex-shrink:0}.structure-hero .sub-label{font-size:11px;letter-spacing:.15em;color:#dfc570;margin:0 0 12px}
a:focus-visible,summary:focus-visible{outline:3px solid #9d7a13;outline-offset:4px}
@media(max-width:1020px){.brand-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.home-confidence{gap:36px}.home-intro h1{font-size:38px}.feature-grid{grid-template-columns:1fr}.feature-card{padding:22px}.structure-hero .hero-action-wrap{align-items:flex-start}.structure-hero .structure-button{font-size:14px;padding:13px 18px}}
@media(max-width:640px){.structure-wrap{width:calc(100% - 40px)}.home-intro{padding:38px 0}.home-intro h1{font-size:29px}.home-summary{font-size:15px}.home-brands{padding-block:34px}.section-heading{align-items:flex-start;flex-direction:column;gap:16px;margin-bottom:22px}.brand-grid{gap:10px}.brand-card{padding:16px 14px}.brand-number{margin-bottom:20px}.brand-card img{height:29px;max-width:100%}.brand-card p{font-size:14px;margin:16px 0}.brand-more{font-size:11px;gap:6px}.field-chips{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}.field-chips a{font-size:13px;padding:13px 12px}.home-finder{padding:34px 0}.finder-actions{gap:16px}.home-confidence{grid-template-columns:1fr;gap:26px;padding-block:36px}.home-confidence h2 br{display:none}.confidence-links a{gap:16px}.home-contact>.structure-wrap{align-items:flex-start;flex-direction:column}.home-contact h2{font-size:22px}.home-contact .structure-button{width:100%}.structure-hero{padding:calc(var(--header-h,80px) + 28px) 20px 28px!important}.structure-hero .hero-action-wrap{flex-direction:column;gap:20px}.structure-hero .hero-description{font-size:16px}.feature-rebuilt section{padding-block:28px!important}.feature-line{grid-template-columns:1fr;gap:10px;padding:20px 0}.feature-rebuilt .performance-callout{flex-direction:column;align-items:flex-start;gap:12px;padding:20px}.feature-cta{flex-direction:column;align-items:flex-start}.hub-grid{grid-template-columns:1fr}.hub-card{padding:20px}.feature-rebuilt .intro-copy p{font-size:16px}}
/* Korean corporate-brand review. Scoped to prevent changes to forms and tools. */
.corporate-home,.inno-editorial{--corp-ink:#20282e;--corp-muted:#626c73;--corp-line:#dce0e2;--corp-gold:#806322;color:var(--corp-ink);background:#fff}
.corp-shell{width:min(1280px,calc(100% - 112px));margin-inline:auto}
.corp-section{padding-block:112px}.corp-kicker{font-size:12px!important;letter-spacing:.16em;font-weight:650;line-height:1.6!important;color:var(--corp-gold);margin:0 0 22px!important}
.corporate-home h2,.inno-editorial h2{font-size:clamp(30px,3.2vw,46px);line-height:1.35;letter-spacing:-.045em;font-weight:650;margin:0}
.corporate-home p,.inno-editorial p{font-size:17px;line-height:1.85;word-break:keep-all;overflow-wrap:anywhere}
.corp-heading{display:flex;justify-content:space-between;gap:70px;align-items:flex-end;margin-bottom:55px}.corp-heading>p,.corp-heading>div>p:not(.corp-kicker){color:var(--corp-muted);margin:0;max-width:480px}.corp-heading .corp-link{margin-top:24px}
.corp-link{display:inline-flex;align-items:center;justify-content:space-between;gap:32px;font-size:15px;font-weight:600;line-height:1.5;padding:12px 0;border-bottom:1px solid #a5aaac;color:#263037;max-width:100%}.corp-link span{font-size:20px;font-weight:400}.corp-link:hover{color:#866621;border-color:#866621}.corp-link.on-dark{color:#fff;border-color:#ffffff65}.corp-link.on-dark:hover{color:#ebd6a5}
.corp-button{display:inline-flex;gap:38px;align-items:center;justify-content:space-between;background:#d8be80;color:#162027;padding:18px 24px;font-size:16px;font-weight:650;line-height:1.5}.corp-button:hover{background:#e8cf96}.corp-button span{font-size:20px}
.corp-hero{position:relative;isolation:isolate;background:#111b22;min-height:760px;height:calc(100svh - 24px);max-height:1050px;display:flex;flex-direction:column;justify-content:center;padding-top:var(--header-h,100px);color:#fff;overflow:hidden}
.corp-hero-photo{position:absolute;inset:0 0 0 auto;width:76%;height:100%;object-fit:cover;object-position:center;z-index:-3}.corp-hero::before{content:"";position:absolute;inset:0;z-index:-2;background:linear-gradient(90deg,#111b22 3%,rgba(17,27,34,.9) 25%,rgba(17,27,34,.52) 56%,rgba(17,27,34,.1) 100%)}.corp-hero::after{content:"";position:absolute;inset:0;z-index:-1;background:linear-gradient(0deg,rgba(10,20,26,.75),transparent 32%)}
.corp-hero-content{padding-block:64px 140px}.corp-hero .corp-kicker{color:#e2cc9b;margin-bottom:30px!important}.corp-hero h1{font-size:clamp(40px,4.7vw,68px);font-weight:600;line-height:1.3;letter-spacing:-.045em;margin:0;max-width:1000px;text-wrap:balance}.corp-hero-summary{font-size:19px!important;color:#dce1e4;margin:32px 0!important;font-weight:400}.corp-hero-bottom{position:absolute;bottom:30px;left:50%;transform:translateX(-50%);display:flex;justify-content:space-between;gap:24px;padding-top:22px;border-top:1px solid #ffffff40;font-size:13px;color:#d2d9db;line-height:1.6}.corp-hero-bottom i{display:inline-block;width:18px;height:1px;background:#ffffff7d;vertical-align:middle;margin:0 12px}
.corp-foundation-grid{display:grid;grid-template-columns:1.25fr 1fr;gap:76px;align-items:start}.corp-foundation figure{margin:0}.corp-foundation figure>img{width:100%;aspect-ratio:1.12;object-fit:cover}.corp-foundation figcaption{font-size:13px;color:#69747b;margin-top:16px;line-height:1.6}.corp-capabilities>a{display:block;padding:28px 0;border-top:1px solid var(--corp-line)}.corp-capabilities>a:first-child{padding-top:0;border-top:0}.corp-capabilities h3{font-size:24px;line-height:1.5;font-weight:600;margin:10px 0}.corp-capabilities p{font-size:16px;margin:0;color:var(--corp-muted)}.corp-capabilities .corp-link{padding-bottom:0;border:0;font-size:14px;margin-top:10px}.corp-index{font-size:12px;color:#6a6f72;letter-spacing:.09em;line-height:1.6}
.corp-portfolio{background:#f3f4f3}.corp-brand-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:52px 40px}.corp-brand{background:#fff;display:block;min-width:0}.corp-brand-image{height:265px;position:relative;overflow:hidden;background:#e5e6e5}.corp-brand-image>img{width:100%;height:100%;object-fit:cover;transition:transform .3s}.corp-brand:hover .corp-brand-image>img{transform:scale(1.025)}.corp-brand.higanic .corp-brand-image>img{object-fit:contain;max-width:440px;display:block;margin:auto;padding:24px}.corp-brand.higanic .corp-brand-image{background:#e4e6e7}.corp-image-label{position:absolute;bottom:16px;left:22px;font-size:12px;letter-spacing:.1em;color:#fff;background:#18242be8;padding:6px 10px;line-height:1.5}.corp-brand-copy{padding:34px 38px 30px}.corp-brand-logo{display:block;width:auto;max-width:220px;height:40px;object-fit:contain;object-position:left;margin-bottom:24px}.corp-brand h3{font-size:25px;font-weight:600;line-height:1.45;margin:0 0 14px}.corp-brand-copy>p{margin:0;color:var(--corp-muted);font-size:16px;min-height:60px}.corp-brand-copy .corp-brand-meta{font-size:13px;line-height:1.75;margin:18px 0 10px;min-height:0;color:#73613e}.corp-brand-copy .corp-link{border:0;margin-top:10px;padding-bottom:0;width:100%;font-size:14px}
.corp-proof-grid{display:grid;grid-template-columns:1fr 1fr;gap:90px}.corp-lead{margin:28px 0;color:var(--corp-muted)}.corp-proof-links>a{display:block;position:relative;padding:26px 34px 26px 0;border-top:1px solid var(--corp-line)}.corp-proof-links>a:first-child{padding-top:0;border:0}.corp-proof-links h3{font-size:23px;font-weight:600;line-height:1.5;margin:10px 0}.corp-proof-links p{font-size:16px;color:var(--corp-muted);margin:0}.corp-proof-links>a>span:last-child{position:absolute;right:0;top:50%;font-size:25px;color:#8c7239}
.corp-discovery{background:#eff1f2}.corp-discovery-grid{display:grid;grid-template-columns:1.3fr 1fr;gap:70px}.corp-industries h3{font-size:22px;font-weight:600;margin:0 0 28px}.corp-industries>div{display:grid;grid-template-columns:1fr 1fr;gap:0 30px}.corp-industries>div>a{padding:22px 0;border-top:1px solid #cbd1d4;display:flex;align-items:center;justify-content:space-between;gap:12px;font-size:17px;line-height:1.5}.corp-industries>div>a:hover{color:#806322}.corp-industries .corp-link{margin-top:28px}.corp-problems{background:#202c33;color:#fff;padding:46px 42px}.corp-problems .corp-kicker{color:#d8c291}.corp-problems h3{font-size:34px;line-height:1.4;font-weight:550;letter-spacing:-.035em}.corp-problems>p:not(.corp-kicker){font-size:16px;color:#d0d8dc;margin:22px 0}.corp-problems .corp-button{width:100%;margin:5px 0 14px}.corp-problems .corp-link{font-size:14px}
.corp-resources{padding-block:85px 92px}.corp-resource-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;margin-top:46px}.corp-resource-grid>a{border-top:1px solid #b9c0c3;padding-top:26px}.corp-resource-grid h3{font-size:24px;font-weight:550;line-height:1.5;margin:14px 0 8px}.corp-resource-grid p{font-size:16px;color:var(--corp-muted)}.corp-resource-grid .corp-link{border:none;width:100%;padding-bottom:0;margin-top:16px}
.corporate-home a:focus-visible,.inno-editorial a:focus-visible{outline:3px solid #b99651;outline-offset:5px}
/* Full-width photography avoids a visible seam at the solid-color edge. */
.corp-hero-photo{width:100%}.corp-hero::before{background:linear-gradient(90deg,rgba(17,27,34,.96) 0%,rgba(17,27,34,.85) 24%,rgba(17,27,34,.5) 56%,rgba(17,27,34,.14) 100%)}
@media(min-width:1700px){.corp-hero-content{padding-left:0}}
@media(max-width:1100px){.corp-shell{width:calc(100% - 72px)}.corp-section{padding-block:88px}.corp-heading{gap:40px;align-items:flex-start}.corp-heading>p{max-width:350px}.corp-foundation-grid,.corp-proof-grid{gap:40px}.corp-foundation figure>img{aspect-ratio:.9}.corp-discovery-grid{gap:35px}.corp-brand-copy{padding:28px}.corp-brand-image{height:235px}.corp-problems{padding:34px 28px}.corp-hero{min-height:720px;height:850px;max-height:100svh}}
@media(max-width:760px){.corp-shell{width:calc(100% - 40px)}.corp-section{padding-block:64px}.corp-heading{display:block;margin-bottom:34px}.corp-heading>p,.corp-heading>div+div{margin-top:24px;max-width:none}.corporate-home h2,.inno-editorial h2{font-size:32px;line-height:1.4}.corporate-home p{font-size:16px}.corp-kicker{font-size:12px!important;margin-bottom:18px!important;letter-spacing:.1em}.corp-hero{min-height:700px;height:calc(100svh - 10px);max-height:none}.corp-hero-photo{width:100%;object-position:56% center}.corp-hero::before{background:linear-gradient(90deg,rgba(17,27,34,.9),rgba(17,27,34,.48))}.corp-hero h1{font-size:clamp(31px,5.9vw,44px);line-height:1.4;text-wrap:initial}.corp-hero-content{padding-block:72px 130px}.corp-hero-summary{font-size:17px!important;margin:26px 0!important}.corp-hero-bottom{bottom:24px;flex-direction:column;gap:8px;font-size:12px}.corp-hero-bottom>span:first-child{display:none}.corp-foundation-grid,.corp-proof-grid,.corp-discovery-grid{grid-template-columns:1fr;gap:36px}.corp-foundation figure>img{aspect-ratio:1.2}.corp-capabilities{display:grid;grid-template-columns:1fr;gap:0}.corp-capabilities>a:first-child{padding-top:26px;border-top:1px solid var(--corp-line)}.corp-capabilities h3{font-size:23px}.corp-brand-grid{gap:28px;grid-template-columns:1fr}.corp-brand-image{height:245px}.corp-brand-copy{padding:28px 24px}.corp-brand h3{font-size:24px}.corp-brand-copy>p{min-height:0}.corp-brand-logo{height:36px;max-width:200px}.corp-proof-links h3{font-size:22px}.corp-problems{padding:34px 28px}.corp-industries>div{gap:0 22px}.corp-industries>div>a{font-size:16px;padding:19px 0}.corp-resource-grid{grid-template-columns:1fr;gap:36px;margin-top:32px}.corp-resource-grid h3{font-size:23px}.corp-resources{padding-block:64px}}
@media(max-width:360px){.corp-shell{width:calc(100% - 36px)}.corp-hero h1{font-size:28px}.corporate-home h2,.inno-editorial h2{font-size:29px}.corp-hero-summary{font-size:16px!important}.corp-brand-copy{padding:25px 20px}.corp-problems{padding:30px 22px}.corp-problems h3{font-size:30px}.corp-industries>div>a{font-size:15px}.corp-index{letter-spacing:.045em}}
@media(prefers-reduced-motion:reduce){.corp-brand-image>img{transition:none}.corp-brand:hover .corp-brand-image>img{transform:none}}

/* Innozinc product editorial. Keep the approved cross-section component intact. */
.inno-product-hero{background:#f0f1f1;color:#20282e;padding:calc(var(--header-h,100px) + 76px) 0 24px}.inno-hero-grid{display:grid;grid-template-columns:1.05fr 1fr;gap:60px;align-items:center}.inno-product-hero .corp-kicker{color:#806322}.inno-product-hero h1{font-size:clamp(40px,4vw,60px);font-weight:600;line-height:1.15;letter-spacing:-.04em;margin:0 0 26px}.inno-product-hero h1>span{display:block;font-size:clamp(28px,2.9vw,42px);line-height:1.4;margin-top:22px;letter-spacing:-.04em;font-weight:550}.inno-product-hero p:not(.corp-kicker){font-size:17px;color:#5d6870;line-height:1.85;margin:24px 0 18px}.inno-product-hero figure{margin:0}.inno-product-hero figure>img{width:100%;height:390px;object-fit:cover}.inno-product-hero figcaption{font-size:12px;color:#737b80;margin-top:13px;line-height:1.6}.inno-breadcrumb{display:flex;gap:12px;font-size:12px;color:#6b7479;margin-top:55px;line-height:1.6}
.inno-product-selector{border-bottom:1px solid #d3d9dc;background:white}.inno-product-selector>.corp-shell{display:grid;grid-template-columns:1fr 1fr;gap:0}.inno-product-selector a{display:flex;align-items:center;justify-content:center;gap:22px;padding:24px 14px;color:#59666f;border-bottom:3px solid transparent}.inno-product-selector a[aria-current="page"]{border-color:#9b7a36;color:#192a34;background:#f8f7f3}.inno-product-selector a>span{font-size:21px;font-weight:650}.inno-product-selector small{font-size:14px;line-height:1.6}.inno-product-selector a:hover{background:#f4f5f5}
.inno-editorial .corp-section{margin:0;padding-block:90px}.inno-editorial .corp-kicker{margin-bottom:20px!important}.inno-editorial .corp-heading>p{max-width:440px}.inno-overview-grid{display:grid;grid-template-columns:1.15fr 1fr;gap:90px;align-items:center}.inno-editorial .corp-lead{font-size:17px;margin:26px 0}.inno-performance{padding:38px;background:#f1f3f4;border-top:2px solid #9d844d}.inno-performance-label{font-size:16px!important;color:#69737a;margin:0}.inno-performance-value{font-size:88px!important;font-weight:550;letter-spacing:-.055em;line-height:1.2!important;margin:24px 0;color:#25313a;white-space:nowrap}.inno-performance-value>span{display:block;font-size:17px;letter-spacing:0;margin-bottom:4px}.inno-performance-value small{font-size:27px;letter-spacing:0;font-weight:400}.inno-performance-note{font-size:14px!important;line-height:1.75!important;color:#636d73;margin:20px 0}.inno-performance .corp-link{font-size:14px}.inno-section-links{display:flex;gap:10px 24px;flex-wrap:wrap;margin-top:26px}.inno-section-links a{font-size:14px;border-bottom:1px solid #bbc3c8;padding-block:8px;color:#45535d}
.inno-properties{background:#f3f4f3}.inno-properties-grid{display:grid;grid-template-columns:1.15fr 1fr;gap:65px}.inno-properties figure{margin:0;background:#121719;position:relative;min-height:560px}.inno-properties figure>img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0;object-position:53% center}.inno-properties figcaption{position:absolute;bottom:0;left:0;right:0;color:#e5eaed;font-size:13px;line-height:1.7;padding:25px 30px;background:linear-gradient(transparent,rgba(0,0,0,.85))}.inno-property{padding:27px 0;border-top:1px solid #cfd5d8}.inno-properties-grid .inno-property:first-child{padding-top:0;border:0}.inno-property h3{font-size:23px;font-weight:600;line-height:1.45;margin:12px 0}.inno-property p{font-size:16px;color:#626c73;margin:0}.inno-secondary-properties{display:grid;grid-template-columns:1fr 1fr;gap:65px;margin-top:38px}.inno-secondary-properties .inno-property{padding-bottom:0}
.inno-structure .coating-cross-section{margin-bottom:0}.inno-evidence{background:#f7f8f8}.inno-editorial .evidence-fig{margin:0;background:#fff;padding:30px;border:1px solid #dce1e4;border-radius:0;box-shadow:none}.inno-editorial .evidence-fig img{display:block;margin:auto;max-width:100%;width:auto;max-height:580px;object-fit:contain}.inno-editorial figcaption{font-size:13px;line-height:1.8}.inno-editorial .evidence-fig figcaption{color:#657079;margin-top:25px}.inno-footnote{font-size:14px!important;color:#68737a;line-height:1.85!important;margin:25px 0}.inno-process-grid{display:grid;grid-template-columns:1fr 1fr;gap:38px;margin-bottom:24px}.inno-process-grid article{min-width:0}.inno-video-link{display:block;position:relative;background:#1d292f}.inno-video-link>img{height:300px;width:100%;object-fit:cover;opacity:.9}.inno-video-link>span{position:absolute;bottom:0;left:0;right:0;padding:22px 26px;background:linear-gradient(transparent,#101a22e6);color:white;font-size:16px;display:flex;justify-content:space-between;gap:20px}.inno-process-grid h3{font-size:24px;font-weight:600;margin:24px 0 12px;line-height:1.4}.inno-process-grid p{font-size:16px;color:#626c73;margin:0}
.inno-family{background:#23313a;color:white}.inno-family .corp-kicker{color:#d4bc86}.inno-family .corp-heading>p{color:#c4cfd5}.inno-family-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px}.inno-family-grid>article{border-top:1px solid #ffffff45;padding-top:30px}.inno-family-grid .corp-index{color:#bfcbd2}.inno-family h3{font-size:36px;font-weight:500;margin:18px 0 24px;line-height:1.4}.inno-family-sst{font-size:29px!important;color:#e1c995;margin:0 0 18px!important;line-height:1.4!important}.inno-family article>p:not(.inno-family-sst){font-size:16px;color:#c4cfd5;margin-bottom:18px;max-width:450px}.inno-family .corp-link{color:white;border-color:#829198}.inno-current-label{display:inline-block;font-size:14px;padding:12px 0;color:#aebec7}.inno-family .inno-footnote{color:#b6c4cd;margin-bottom:0}
.inno-faq-grid{display:grid;grid-template-columns:.8fr 1.5fr;gap:70px}.inno-faq details{border-bottom:1px solid #dce0e3;padding:0}.inno-faq details:first-child{border-top:1px solid #dce0e3}.inno-faq summary{font-size:18px;font-weight:550;line-height:1.6;cursor:pointer;list-style:none;padding:24px 34px 24px 0;position:relative}.inno-faq summary::-webkit-details-marker{display:none}.inno-faq summary:after{content:'+';position:absolute;right:4px;font-size:25px;top:20px;font-weight:400;color:#6a7379}.inno-faq details[open]>summary:after{content:'−'}.inno-faq details p{font-size:16px;margin:0 0 25px;line-height:1.8;color:#637079}.inno-connect{background:#f3f4f4}.inno-connect-grid{display:grid;grid-template-columns:1fr 1fr 1fr;gap:38px}.inno-connect-grid>a{border-top:1px solid #bac3c8;padding-top:24px}.inno-connect h3{font-size:24px;font-weight:550;margin:16px 0 22px;line-height:1.4}.inno-connect .corp-link{width:100%;border:none}.inno-related{border-top:1px solid #d7dcde;padding-top:28px;margin-top:40px;display:flex;gap:18px 32px;flex-wrap:wrap;font-size:14px;line-height:1.6}.inno-related>span{color:#6c777e}.inno-related a{display:flex;gap:14px}
[data-brand-review] .site-header{background:#141d24!important}
.corporate-home [id],.inno-editorial [id]{scroll-margin-top:calc(var(--header-h,100px) + 28px)}
@media(max-width:1100px){.inno-hero-grid,.inno-overview-grid,.inno-properties-grid{gap:40px}.inno-product-hero figure>img{height:360px}.inno-product-hero{padding-top:calc(var(--header-h,70px) + 56px)}.inno-performance{padding:28px}.inno-product-selector a{gap:12px;flex-direction:column}.inno-faq-grid{gap:40px}.inno-family-grid{gap:40px}}
@media(max-width:760px){.inno-hero-grid,.inno-overview-grid,.inno-properties-grid,.inno-secondary-properties,.inno-process-grid,.inno-family-grid,.inno-faq-grid,.inno-connect-grid{grid-template-columns:1fr;gap:32px}.inno-product-hero{padding-top:calc(var(--header-h,70px) + 38px)}.inno-product-hero h1{font-size:42px}.inno-product-hero h1>span{font-size:31px;margin-top:20px}.inno-product-hero p:not(.corp-kicker){font-size:16px}.inno-product-hero figure>img{height:250px}.inno-breadcrumb{margin-top:28px}.inno-product-selector .corp-shell{width:100%}.inno-product-selector a{padding:20px 10px;gap:6px;align-items:center}.inno-product-selector a>span{font-size:20px}.inno-product-selector small{font-size:12px;text-align:center}.inno-editorial .corp-section{padding-block:64px}.inno-editorial .corp-lead{font-size:16px}.inno-performance{padding:28px}.inno-performance-value{font-size:78px!important}.inno-properties figure{min-height:330px}.inno-property h3{font-size:23px}.inno-secondary-properties{margin-top:0;gap:0}.inno-property{padding-block:25px}.inno-secondary-properties .inno-property{padding-bottom:25px}.inno-editorial .evidence-fig{padding:18px}.inno-video-link>img{height:260px}.inno-family h3{font-size:32px}.inno-family-sst{font-size:27px!important}.inno-family-grid{gap:38px}.inno-faq .corp-lead{margin-bottom:0}.inno-faq summary{font-size:17px}.inno-connect-grid{gap:24px}.inno-connect h3{font-size:24px;margin-bottom:12px}.inno-connect-grid .corp-link{padding-bottom:0}.inno-related{gap:16px 24px}.inno-related>span{flex-basis:100%}}
@media(max-width:360px){.inno-product-hero h1>span{font-size:28px}.inno-product-selector a{padding-inline:8px}.inno-product-selector small{font-size:12px;max-width:130px}.inno-family-sst{font-size:24px!important}.inno-property h3{font-size:21px}.inno-performance-value{font-size:72px!important}}

/* Reuse original corporate imagery; the plant appears only as production evidence. */
.corp-hero-picture{position:absolute;inset:0;z-index:-3;display:block}.corp-hero-picture .corp-hero-photo{position:static;width:100%;height:100%;object-fit:cover;object-position:center;display:block}
.corp-hero--global::before{background:linear-gradient(90deg,rgba(4,15,21,.45),rgba(4,15,21,.18) 48%,transparent 75%)}.corp-hero--global::after{background:linear-gradient(0deg,rgba(5,17,23,.35),transparent 28%)}
.corp-brand.elpang .corp-brand-image>img{object-position:65% center}
@media(max-width:760px){.corp-hero--global::before{background:linear-gradient(180deg,rgba(4,15,21,.12),rgba(4,15,21,.25))}.corp-hero-picture .corp-hero-photo{object-position:center}}

/* Brand images: products and completed applications, without factory photography. */
.corp-foundation--no-photo .corp-foundation-grid{display:block}.corp-foundation--no-photo .corp-capabilities{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:48px}.corp-foundation--no-photo .corp-capabilities>a{border-top:1px solid var(--corp-line);padding:28px 0 0;display:flex;flex-direction:column;align-items:flex-start}.corp-foundation--no-photo .corp-capabilities h3{margin-top:16px}.corp-foundation--no-photo .corp-capabilities .corp-link{margin-top:auto;padding-top:24px}
.corp-brand.innozinc .corp-brand-image{background:#282a2a}.corp-brand.innozinc .corp-brand-image>img{object-position:center 50%}.corp-brand.gsave .corp-brand-image>img{object-position:58% 23%}
@media(max-width:1000px){.corp-foundation--no-photo .corp-capabilities{gap:28px}.corp-foundation--no-photo .corp-capabilities h3{font-size:22px}}
@media(max-width:760px){.corp-foundation--no-photo .corp-capabilities{grid-template-columns:1fr;gap:28px}.corp-brand.innozinc .corp-brand-image>img{object-fit:contain}.corp-brand.gsave .corp-brand-image>img{object-position:65% 26%}}

.corp-brand.higanic .corp-brand-image>img{object-fit:cover;object-position:62% 50%;max-width:none;width:100%;padding:0;margin:0}

/* Innozinc standard SST range: keep the complete value readable on narrow screens. */
.inno-performance-value.inno-sst-range{font-size:clamp(52px,5vw,74px)!important;white-space:normal}
.inno-sst-range>.inno-range-end{font-size:inherit;letter-spacing:inherit;line-height:inherit;margin:0;display:block}
/* Broad photographic chapters for the Korean corporate homepage. */
.brand-gallery{background:#fff;color:#20282e}
.brand-gallery-intro{display:flex;align-items:flex-end;justify-content:space-between;gap:72px;padding-block:100px 70px}
.brand-gallery-overview{max-width:460px}.brand-gallery-overview>p{margin:0;color:#647078;font-size:17px;line-height:1.85}
.brand-gallery-nav{display:flex;flex-wrap:wrap;gap:10px 28px;margin-top:28px}.brand-gallery-nav a{font-size:14px;font-weight:600;color:#283740;border-bottom:1px solid #c3c9cd;padding:10px 0;min-height:42px}.brand-gallery-nav a:hover{color:#876a32;border-color:#876a32}
.brand-scenes{background:#111a20}.brand-scene{position:relative;isolation:isolate;min-height:690px;display:grid;align-items:center;overflow:hidden;color:#fff;background:#151d22;scroll-margin-top:var(--header-h,100px)!important}
.brand-scene-media{position:absolute;inset:0;z-index:-2;margin:0;overflow:hidden}:is(.brand-scene-media>img,.brand-scene-media>:where(picture.perf-mobile-picture)>img){display:block;width:100%;height:100%;object-fit:cover;object-position:center}
.brand-scene-media figcaption{position:absolute;right:max(56px,calc((100vw - 1280px)/2));bottom:38px;font-size:12px;line-height:1.7;letter-spacing:.02em;color:#e0e5e8;z-index:2;text-shadow:0 1px 5px #000}
.brand-scene::before{content:"";position:absolute;inset:0;z-index:-1;pointer-events:none;background:linear-gradient(90deg,rgba(10,19,25,.96),rgba(10,19,25,.87) 28%,rgba(10,19,25,.32) 58%,rgba(10,19,25,.04) 85%)}
.brand-scene::after{content:"";position:absolute;inset:0;z-index:-1;pointer-events:none;background:linear-gradient(0deg,rgba(6,14,19,.55),transparent 20%);border-bottom:1px solid #ffffff19}
.brand-scene-inner{padding-block:80px 102px;min-height:min(84svh,870px);display:flex;align-items:center;pointer-events:none}.brand-scene-copy{width:min(470px,43%);pointer-events:auto}
.corporate-home .brand-scene-category{display:flex;align-items:center;gap:20px;font-size:12px;line-height:1.6;letter-spacing:.12em;color:#dac79d;margin:0 0 32px}.brand-scene-category>span{padding-right:20px;border-right:1px solid #d2bd8259;font-size:13px;font-variant-numeric:tabular-nums}
.brand-scene-logo{display:block;width:auto;max-width:290px;height:52px;object-fit:contain;object-position:left center;margin:0 0 33px}
.brand-scene h3{font-size:clamp(34px,3.05vw,46px);font-weight:550;line-height:1.4;letter-spacing:-.04em;margin:0 0 24px;text-wrap:balance}
.corporate-home .brand-scene-description{font-size:17px;line-height:1.85;font-weight:400;color:#e1e5e8;margin:0;max-width:470px}
.corporate-home .brand-scene-meta{font-size:13px;line-height:1.9;color:#bac5cb;margin:22px 0 29px;letter-spacing:0}
.brand-scene-link{display:inline-flex;align-items:center;justify-content:space-between;min-width:210px;gap:36px;border-bottom:1px solid #bba06a;padding:12px 0 15px;font-size:15px;line-height:1.6;font-weight:550;color:#fff}.brand-scene-link span{font-size:24px;font-weight:400;transition:transform .2s}.brand-scene-link:hover{color:#f0d59e}.brand-scene-link:hover span{transform:translate(3px,-3px)}
.brand-scene-progress{display:flex;align-items:center;gap:22px;position:absolute;left:max(56px,calc((100vw - 1280px)/2));bottom:38px;color:#bec7cc;font-size:12px;letter-spacing:.08em}.brand-scene-progress i{display:block;width:80px;height:1px;background:#ffffff45}.brand-scene-progress i:before{content:"";display:block;height:1px;width:25%;background:#d9bf83}.brand-scene--elpang .brand-scene-progress i:before{width:50%}.brand-scene--higanic .brand-scene-progress i:before{width:75%}.brand-scene--gsave .brand-scene-progress i:before{width:100%}
.brand-scene--innozinc{background:#343330}.brand-scene--innozinc .brand-scene-media{left:30%;display:flex;align-items:center}.brand-scene--innozinc :is(.brand-scene-media>img,.brand-scene-media>:where(picture.perf-mobile-picture)>img){height:auto;min-height:0;object-fit:contain}.brand-scene--innozinc::before{background:linear-gradient(90deg,#252726 0%,rgba(37,39,38,.95) 24%,rgba(37,39,38,.66) 40%,transparent 60%)}
.brand-scene--elpang :is(.brand-scene-media>img,.brand-scene-media>:where(picture.perf-mobile-picture)>img){object-position:65% center}.brand-scene--elpang::before{background:linear-gradient(90deg,rgba(6,20,28,.85),rgba(6,20,28,.58) 32%,rgba(6,20,28,.05) 60%)}
.brand-scene--higanic .brand-scene-media{left:22%}.brand-scene--higanic :is(.brand-scene-media>img,.brand-scene-media>:where(picture.perf-mobile-picture)>img){object-position:70% center}.brand-scene--higanic::before{background:linear-gradient(90deg,#172128 0%,rgba(23,33,40,.95) 23%,rgba(23,33,40,.72) 38%,rgba(23,33,40,.12) 66%,rgba(23,33,40,.03))}
.brand-scene--gsave .brand-scene-media{left:28%}.brand-scene--gsave :is(.brand-scene-media>img,.brand-scene-media>:where(picture.perf-mobile-picture)>img){object-position:66% 25%}.brand-scene--gsave::before{background:linear-gradient(90deg,#172128 0%,rgba(23,33,40,.97) 25%,rgba(23,33,40,.68) 42%,rgba(23,33,40,.08) 65%)}
.brand-gallery-footer{display:flex;align-items:center;justify-content:space-between;gap:32px;padding-block:40px;border-bottom:1px solid #e1e5e7}.brand-gallery-footer p{font-size:16px;color:#68737a;margin:0}.brand-gallery-footer .corp-link{border:0;padding:8px 0}
.brand-scene--innozinc :is(.brand-scene-media>img,.brand-scene-media>:where(picture.perf-mobile-picture)>img){-webkit-mask-image:linear-gradient(0deg,transparent,#000 12%,#000 88%,transparent);mask-image:linear-gradient(0deg,transparent,#000 12%,#000 88%,transparent)}
@media(min-width:761px){.brand-scene--higanic,.brand-scene--gsave{background:#172128}.brand-scene--higanic :is(.brand-scene-media>img,.brand-scene-media>:where(picture.perf-mobile-picture)>img),.brand-scene--gsave :is(.brand-scene-media>img,.brand-scene-media>:where(picture.perf-mobile-picture)>img){-webkit-mask-image:linear-gradient(90deg,transparent,#000 25%);mask-image:linear-gradient(90deg,transparent,#000 25%)}}
@media(min-width:1700px){.brand-scene--innozinc .brand-scene-media{left:35%}.brand-scene--gsave .brand-scene-media{left:36%}}
@media(max-width:1100px){.brand-gallery-intro{gap:40px;padding-block:80px 56px}.brand-scene-inner{min-height:700px;padding-block:64px 100px}.brand-scene-copy{width:47%;max-width:430px}.brand-scene h3{font-size:36px}.brand-scene-logo{height:44px}.brand-scene-media figcaption{right:36px;max-width:44%;text-align:right}.brand-scene-progress{left:36px}.brand-scene--innozinc .brand-scene-media{left:25%;width:90%}.brand-scene--higanic .brand-scene-media{left:18%}.brand-scene--gsave .brand-scene-media{left:24%}.corporate-home .brand-scene-description{font-size:16px}}
@media(max-width:760px){
 .brand-gallery-intro{display:block;padding-block:62px 42px}.brand-gallery-overview{margin-top:24px}.brand-gallery-overview>p{font-size:16px}.brand-gallery-nav{margin-top:20px;gap:10px 23px}.brand-gallery-nav a{font-size:14px}
 .brand-scene{min-height:0;display:flex;flex-direction:column;background:#172128;overflow:hidden}
 .brand-scene .brand-scene-media{position:relative;inset:auto;z-index:0;order:0;width:100%;height:320px;display:block;flex-shrink:0;background:#172128}
 .brand-scene :is(.brand-scene-media>img,.brand-scene-media>:where(picture.perf-mobile-picture)>img){width:100%;height:100%;min-height:0;object-fit:cover;object-position:center;display:block}
 .brand-scene .brand-scene-media:after{content:"";position:absolute;inset:0;pointer-events:none;background:linear-gradient(0deg,#172128,transparent 30%)}
 .brand-scene--innozinc .brand-scene-media{background:#343330}.brand-scene--innozinc :is(.brand-scene-media>img,.brand-scene-media>:where(picture.perf-mobile-picture)>img){object-fit:contain;object-position:center 38%}
 .brand-scene--elpang :is(.brand-scene-media>img,.brand-scene-media>:where(picture.perf-mobile-picture)>img){object-position:65% center}.brand-scene--higanic :is(.brand-scene-media>img,.brand-scene-media>:where(picture.perf-mobile-picture)>img){object-position:67% center}.brand-scene--gsave :is(.brand-scene-media>img,.brand-scene-media>:where(picture.perf-mobile-picture)>img){object-position:60% 22%}
 .brand-scene::before,.brand-scene::after{display:none}
 .brand-scene .brand-scene-media figcaption{right:20px;left:20px;bottom:20px;max-width:none;color:#e0e7ec;font-size:12px;line-height:1.7;position:absolute}
 .brand-scene-inner{min-height:0;padding-block:24px 58px;display:block;order:1}.brand-scene-copy{width:100%;max-width:none}.corporate-home .brand-scene-category{margin-bottom:24px;gap:14px;font-size:12px;letter-spacing:.07em}.brand-scene-category>span{padding-right:14px}
 .brand-scene-logo{height:40px;max-width:250px;margin-bottom:25px}.brand-scene h3{font-size:34px;margin-bottom:20px;line-height:1.4}.corporate-home .brand-scene-description{font-size:16px;line-height:1.85;max-width:540px}.corporate-home .brand-scene-meta{font-size:13px;margin:20px 0}.brand-scene-link{min-width:210px;font-size:15px}
 .brand-scene-progress{display:none}.brand-scenes>.brand-scene+.brand-scene{border-top:1px solid #ffffff20}.brand-gallery-footer{align-items:flex-start;flex-direction:column;gap:12px;padding-block:28px}
}
@media(max-width:360px){.brand-scene .brand-scene-media{height:275px}.brand-scene h3{font-size:30px}.brand-scene-logo{height:36px}.brand-scene-inner{padding-top:22px}.brand-gallery-nav{gap:10px 18px}}
@media(prefers-reduced-motion:reduce){.brand-scene-link span{transition:none}.brand-scene-link:hover span{transform:none}}

/* Frame the repaired metal in the supplied 4032 × 1908 photograph.
   Native photograph coordinates: y = 935..1170; right edge x = 3400.
   No generated surface, retouching, distortion, or before/after compositing. */
.brand-scene--gsave .gsave-surface-window{position:absolute;inset:0;overflow:hidden;container-type:size;background:#172128}
.brand-scene--gsave .gsave-surface-window>img{position:absolute;display:block;max-width:none;width:calc(100cqh * 4032 / 235);height:calc(100cqh * 1908 / 235);top:calc(-100cqh * 935 / 235);right:calc(-100cqh * 632 / 235)}
@media(min-width:761px){
 .brand-scene--gsave .brand-scene-media{left:22%}
 .brand-scene--gsave .gsave-surface-window{-webkit-mask-image:linear-gradient(90deg,transparent,#000 28%);mask-image:linear-gradient(90deg,transparent,#000 28%)}
 .brand-scene--gsave::before{background:linear-gradient(90deg,#172128 0%,rgba(23,33,40,.96) 24%,rgba(23,33,40,.68) 41%,rgba(23,33,40,.10) 70%,transparent)}
}
@media(max-width:760px){
 .brand-scene--gsave .gsave-surface-window>img{top:calc(-100cqh * 935 / 235);right:calc(-100cqh * 612 / 235)}
 .brand-scene--gsave .brand-scene-media figcaption{font-size:12px;text-align:right}
}
/* Shared navigation, typography and compact corporate information. */
.contact-v1-field[hidden] { display:none!important; }
#inquiryAttachments { padding:14px; }
#attachmentSelected { overflow-wrap:anywhere; }
@media (min-width:1271px) {
  .site-header > nav { height:100%; min-width:0; flex:1 1 auto; }
  .site-header .gnb { height:100%; align-items:stretch; }
  .site-header .gnb > li { display:flex; align-items:stretch; }
  .site-header .gnb > li > a,
  .site-header .gnb > li > .nav-group-toggle {
    display:flex; align-items:center; height:100%; padding-block:0; padding-inline:14px; font-size:14px;
  }
  .site-header .gnb .nav-logo-img { flex-shrink:0; }
  .site-header .gnb .sub { top:100%; }
  .site-header .gnb .sub::before { content:""; position:absolute; inset:-12px 0 auto; height:12px; }
}
.gnb > li > .nav-group-toggle {
  appearance:none; position:relative; border:0; background:transparent;
  font:inherit; font-size:16px; font-weight:700; letter-spacing:.01em;
  color:#fff; padding:38px 26px; cursor:pointer; white-space:nowrap;
}
.gnb > li > .nav-group-toggle::after {
  content:""; position:absolute; left:26px; right:26px; bottom:30px; height:2px;
  background:var(--gold-400); transform:scaleX(0); transition:transform .2s;
}
.gnb > li:is(:hover,.nav-open,.current-group) > .nav-group-toggle::after { transform:scaleX(1); }
.gnb > li.nav-open .sub { visibility:visible; opacity:1; pointer-events:auto; transform:translateX(-50%) translateY(0); }
.gnb > li.nav-closed .sub { visibility:hidden; opacity:0; pointer-events:none; }
.nav-group-toggle:focus-visible { outline:2px solid var(--gold-400); outline-offset:-8px; }
@media(min-width:1271px) { html:lang(ko) .gnb > li > .nav-group-toggle { padding-inline:16px; font-size:14px; } }
@media(min-width:1271px) and (max-width:1360px) { .gnb > li > .nav-group-toggle { padding-inline:14px; font-size:15px; } }
.sub-hero .crumb, .inno-breadcrumb { font-family:var(--font); letter-spacing:0; font-size:14px; line-height:1.7; }
.sub-hero .crumb span { font-size:0!important; }
.sub-hero h1, .sub-hero .section-heading { font-weight:750; line-height:1.3; text-wrap:balance; }
.sub-hero .sub-label, .sub-hero .sub-hero-label {
  display:flex; align-items:center; gap:12px; font-family:var(--font); font-size:14px;
  font-weight:650; line-height:1.5; letter-spacing:.1em; margin-bottom:16px;
}
.sub-hero .sub-label::before, .sub-hero .sub-hero-label::before {
  content:""; display:block; width:26px; height:2px; flex:none; background:currentColor;
}
.sub-hero:has(.sub-label) h1::before, .sub-hero:has(.sub-hero-label) h1::before,
.sub-hero:has(.sub-label) .section-heading::before { display:none; }
.sub-hero.tools, .sub-hero.structure-hero {
  padding-inline:max(28px,calc((100% - 1144px)/2))!important;
}
html:lang(ko) :is(h1,h2,h3) { word-break:keep-all; overflow-wrap:break-word; }
.site-footer { position:static!important; padding:32px max(24px,calc((100% - 1280px)/2)) 20px; }
.site-footer .footer-top { display:block; max-width:none; }
.site-footer .footer-info { display:grid; grid-template-columns:136px minmax(0,1fr); gap:14px 36px; font-size:14px; color:#bbc4cd; }
.site-footer .footer-brand .foot-logo { width:112px; height:auto; margin:2px 0 0; }
.site-footer .footer-meta { display:flex; flex-wrap:wrap; gap:7px 28px; line-height:1.7; }
.site-footer .footer-field { display:block; max-width:100%; overflow-wrap:anywhere; }
.site-footer .footer-info strong { font-size:inherit; color:#8996a3; margin-right:7px; font-weight:500; letter-spacing:0; }
.site-footer .footer-sns { grid-column:2; margin-top:0; gap:12px; }
.site-footer .footer-sns img { width:25px; height:25px; }
.site-footer .footer-copy { margin-top:18px; padding-top:14px; font-size:12px; letter-spacing:0; color:#8996a3; }
.revision-shell { width:min(1200px,calc(100% - 56px)); margin-inline:auto; }
.industry-visual-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:28px 20px; }
.industry-visual-card { display:block; color:#26313a; text-decoration:none; min-width:0; }
.industry-visual-card figure { margin:0 0 17px; aspect-ratio:4/3; overflow:hidden; background:#e9edef; }
.industry-visual-card img { display:block; width:100%; height:100%; object-fit:cover; transition:transform .3s ease; }
.industry-visual-card:hover img { transform:scale(1.035); }
.industry-visual-card h3 { font-size:20px; font-weight:700; margin:0 0 8px; display:flex; justify-content:space-between; gap:12px; }
.industry-visual-card h3 span { color:#806509; font-weight:400; }
.industry-visual-card p { font-size:15px; line-height:1.7; margin:0; color:#66747e; }
.industry-visual-card:focus-visible { outline:2px solid #947225; outline-offset:6px; }
.corp-discovery .industry-visual-grid { margin-top:40px; }
#industry-directory .industry-visual-grid { margin-top:32px; }
.corp-discovery .discovery-more { margin-top:32px; display:flex; justify-content:flex-end; }
.corp-evidence { background:#f3f5f5; }
.corp-evidence-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:40px; margin-top:42px; }
.corp-evidence-grid article { border-top:1px solid #b9c3c9; padding-top:24px; }
.corp-evidence-grid h3 { font-size:25px; font-weight:700; line-height:1.45; margin:14px 0; }
.corp-evidence-grid p { color:#5b6973; font-size:16px; line-height:1.85; }
.corp-resources-compact { background:#fff; border-top:1px solid #e0e5e8; padding-block:40px; }
.corp-resources-compact .corp-shell { display:flex; align-items:center; justify-content:space-between; gap:28px; }
.corp-resources-compact h2 { font-size:24px; font-weight:700; margin:0; line-height:1.5; }
.corp-resources-compact nav { display:flex; gap:18px 32px; flex-wrap:wrap; }
.catalog-intro { max-width:780px; margin-bottom:40px; }
.catalog-nav { display:flex; flex-wrap:wrap; gap:10px; margin-top:28px; }
.catalog-nav a { border:1px solid #d9e0e5; padding:10px 18px; color:#31414d; font-size:15px; }
.catalog-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:24px; }
.catalog-card { border:1px solid #d9e1e5; padding:30px; min-width:0; scroll-margin-top:130px; background:#fff; }
.catalog-card h2 { font-size:27px; margin-bottom:10px; }
.catalog-card h3 { font-size:18px; }
.catalog-card .catalog-category { color:#876920; font-size:13px; font-weight:650; letter-spacing:.08em; margin-bottom:12px; }
.catalog-card p { color:#5b6974; line-height:1.8; font-size:16px; }
.catalog-downloads { display:flex; gap:10px; flex-wrap:wrap; margin-top:22px; }
.catalog-downloads a { border:1px solid #cbd4db; padding:11px 17px; color:#243744; font-size:15px; font-weight:650; }
.catalog-downloads a:hover { border-color:#977724; background:#fbf8ef; }
.catalog-doc-request { padding:28px 32px; background:#f0f3f4; margin-top:48px; display:flex; gap:28px; justify-content:space-between; align-items:center; }
.catalog-doc-request h2 { font-size:23px; margin:0 0 10px; }
.catalog-doc-request p { margin:0; }
.product-document-link { display:flex; justify-content:flex-end; gap:18px; padding:22px 0 4px; }
.product-document-link a { display:inline-flex; gap:20px; align-items:center; border-bottom:1px solid #9a7c33; padding:10px 0; font-size:15px; color:#6c5318; font-weight:650; }
.inno-product-selector.inno-family-selector .corp-shell { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); }
.inno-product-selector.inno-family-selector a { width:auto; min-width:0; }
.inno-product-selector, #discovery-title, #industry-directory { scroll-margin-top:110px; }
.catalog-card h3 { margin-top:24px; }
.catalog-card .catalog-downloads { margin-top:14px; }
.catalog-card .catalog-downloads + p { margin-top:22px; }
.inno-product-selector.inno-family-selector a { gap:8px 14px; }
@media(max-width:760px) {
 .inno-product-selector, #discovery-title, #industry-directory { scroll-margin-top:80px; }
 .inno-product-selector.inno-family-selector a { display:flex; flex-direction:column; justify-content:center; text-align:center; padding:18px 6px; }
 .inno-product-selector.inno-family-selector small { line-height:1.5; }
}
@media(max-width:1000px) { .industry-visual-grid { grid-template-columns:repeat(2,minmax(0,1fr)); } .corp-evidence-grid { gap:24px; } .corp-evidence-grid h3 { font-size:21px; } }
@media(max-width:760px) {
  .site-footer .footer-info { grid-template-columns:1fr; gap:20px; }
  .site-footer .footer-meta { gap:8px; flex-direction:column; }
  .site-footer .footer-sns { grid-column:1; }
  .revision-shell { width:calc(100% - 40px); }
  .sub-hero.tools,.sub-hero.structure-hero { padding-inline:20px!important; }
  .corp-evidence-grid,.catalog-grid { grid-template-columns:1fr; }
  .corp-resources-compact .corp-shell,.catalog-doc-request { flex-direction:column; align-items:flex-start; }
  .catalog-card { padding:24px; }
  .inno-product-selector.inno-family-selector a>span { font-size:17px; }
  .inno-product-selector.inno-family-selector small { font-size:12px; }
}
@media(max-width:480px) { .industry-visual-grid { gap:26px 14px; } .industry-visual-card h3 { font-size:17px; } .industry-visual-card p { font-size:14px; } }
/* Approved revision 3: compact navigation; homepage editorial sections unchanged. */
:root { --revision3-anchor-offset:120px; }
@media(max-width:1270px) { :root { --revision3-anchor-offset:92px; } }
.subpage-body [id] { scroll-margin-top:var(--revision3-anchor-offset); }
.section-return { font-size:14px; line-height:1.6; margin-block:18px; }
.section-return a { display:inline-flex; gap:9px; align-items:center; min-height:44px; color:inherit; text-decoration:none; }
.section-return a:hover { text-decoration:underline; text-underline-offset:5px; }
.section-return a:focus-visible { outline:2px solid currentColor; outline-offset:4px; }
.section-return.corp-shell { padding-block:0; }
.gnb > li > .nav-service-link { padding-right:5px; }
.gnb > li > .nav-service-toggle {
 display:inline-flex; align-items:center; justify-content:center; align-self:center;
 border:0; width:30px; min-height:44px; padding:0; background:transparent; color:#f3f5f6; cursor:pointer;
}
.nav-service-chevron { display:block; width:7px; height:7px; border-right:1.5px solid currentColor; border-bottom:1.5px solid currentColor; transform:rotate(45deg); }
.nav-service-toggle[aria-expanded="true"] .nav-service-chevron,
.mobile-service-heading button[aria-expanded="true"] .nav-service-chevron { transform:rotate(225deg); }
.mobile-menu .mobile-service-heading { display:flex; align-items:center; justify-content:space-between; padding:0; }
.mobile-menu .mobile-service-heading::after { display:none; }
.mobile-service-heading > a { flex:1; min-width:0; padding:16px 0; color:inherit; text-decoration:none; }
.mobile-service-heading > button { display:flex; justify-content:center; align-items:center; width:48px; min-height:48px; padding:0; color:inherit; background:transparent; border:0; cursor:pointer; }
.nav-service-toggle:focus-visible,.mobile-service-heading > button:focus-visible,.mobile-service-heading > a:focus-visible { outline:2px solid currentColor; outline-offset:2px; }
.revision3-news .sub-hero { padding-inline:max(clamp(20px,4vw,28px),calc((100% - 1144px)/2)); }
/* Existing industrial photographs, scoped to the two industry discovery surfaces. */
.industry-visual-grid.industry-scene-grid { gap:38px 24px; }
.industry-scene-grid .industry-visual-card figure {
  aspect-ratio:5 / 3;
  background:#e6eaed;
  margin-bottom:20px;
}
.industry-scene-grid .industry-visual-card img {
  object-fit:cover;
  object-position:center;
}
.industry-scene-grid .industry-visual-card h3 {
  align-items:flex-start;
  line-height:1.45;
}
.industry-scene-grid .industry-visual-card h3 span { flex:0 0 auto; }
.industry-scene-grid .industry-visual-card p { font-size:16px; line-height:1.7; }
.industry-scene-grid .industry-visual-card:focus-visible img { transform:scale(1.035); }
@media(max-width:1000px) {
  .industry-visual-grid.industry-scene-grid { gap:34px 22px; }
}
@media(max-width:560px) {
  .industry-visual-grid.industry-scene-grid { grid-template-columns:minmax(0,1fr); gap:34px; }
  .industry-scene-grid .industry-visual-card figure { margin-bottom:16px; }
  .industry-scene-grid .industry-visual-card h3 { font-size:20px; }
}
@media(prefers-reduced-motion:reduce) {
  .industry-scene-grid .industry-visual-card img { transition:none; }
  .industry-scene-grid .industry-visual-card:is(:hover,:focus-visible) img { transform:none; }
}
/* Approved revision 4: shared controls, editorial spacing and product photography. */
.header-util .btn-catalog,.header-util .btn-contact{box-sizing:border-box;display:inline-flex;align-items:center;justify-content:center;min-height:42px;height:42px;padding:0 16px;border:1px solid #c5ab69;border-radius:3px;background:transparent;color:#ecd795;font-family:inherit;font-size:13px;font-weight:600;line-height:1.25;text-decoration:none;white-space:nowrap;transition:background .2s,color .2s}
.header-util .btn-catalog:hover,.header-util .btn-contact:hover{background:#c5ab69;color:#111820}
.header-util .btn-catalog:focus-visible,.header-util .btn-contact:focus-visible{outline:2px solid #fff;outline-offset:4px}
.footer-meta{display:flex;flex-wrap:wrap;column-gap:28px;row-gap:10px;align-items:baseline}
.footer-meta .footer-field{display:inline-block;margin:0;line-height:1.8}
.footer-meta .footer-field strong{margin-right:7px}
.revision4-company main h2:not(.cta-band h2){font-size:clamp(28px,3vw,40px);font-weight:600;line-height:1.4;letter-spacing:-.035em;margin-bottom:24px}
.revision4-company main .split{align-items:flex-start;gap:clamp(32px,5vw,72px);margin-top:24px!important}
.revision4-company main .split>div{min-width:0;max-width:100%}
.revision4-company main .split .lead{margin-top:0;line-height:1.9;overflow-wrap:anywhere}
.revision4-company main .split .lead:last-child{margin-bottom:0}
.revision4-company .video-frame{display:block;width:100%;height:auto;aspect-ratio:16/9;margin:0}
.revision4-company .revision4-customer img{display:block;width:100%;height:auto;aspect-ratio:4/3;object-fit:cover;border-radius:10px}
.revision4-company .stat-band .num{display:flex;flex-wrap:wrap;align-items:baseline;gap:8px 14px;font-family:'Pretendard Variable',Pretendard,var(--font,sans-serif);font-size:clamp(42px,5.2vw,68px);font-weight:600;letter-spacing:-.035em;line-height:1.25;font-variant-numeric:tabular-nums}
.revision4-company .stat-band .num .revision4-unit{font-size:clamp(17px,1.65vw,23px);font-weight:500;letter-spacing:0;white-space:nowrap}
.revision4-company .stat-band .cap{font-size:16px;line-height:1.8;max-width:390px;margin-top:16px}
.revision4-location .card-grid{align-items:stretch}
.revision4-location .card-grid>.card{display:flex;flex-direction:column;min-width:0}
.revision4-location table,.revision4-location table th,.revision4-location table td{font-family:'Pretendard Variable',Pretendard,var(--font,sans-serif)}
.revision4-location table th{white-space:normal;min-width:80px}
.revision4-location .revision4-location-actions{display:flex;flex-wrap:wrap;align-items:stretch;gap:10px;margin-top:auto;padding-top:24px}
.revision4-location .revision4-location-actions .btn-pill{display:inline-flex;align-items:center;justify-content:center;margin:0!important;min-height:44px;line-height:1.5}
.revision4-location .revision4-access{font-size:15px;line-height:1.8;color:#53616c;margin:20px 0 0}
.corporate-home .brand-gallery-nav a{display:inline-flex;align-items:center;gap:14px;min-height:44px;border-bottom:1px solid #89969d}
.corporate-home .brand-gallery-nav a:focus-visible,.corporate-home .brand-gallery-footer .corp-link:focus-visible{outline:2px solid currentColor;outline-offset:5px}
.corporate-home .brand-gallery-footer .corp-link{border-bottom:1px solid #89969d;padding:10px 0}
.corporate-home .corp-discovery .corp-heading,.corporate-home .corp-evidence .corp-heading{display:block}
.corporate-home .corp-discovery .corp-heading>div>p:not(.corp-kicker),.corporate-home .corp-evidence .corp-heading>div>p:not(.corp-kicker){margin-top:24px;max-width:760px}
.corporate-home .corp-hero--products{background:#10171c;min-height:760px;height:min(940px,100svh);max-height:none}
.corporate-home .corp-hero--products .corp-hero-picture{left:29%;top:50%;bottom:auto;right:-5%;aspect-ratio:1800/857;transform:translateY(-42%);mask-image:linear-gradient(90deg,transparent,#000 23%,#000 93%,transparent),linear-gradient(0deg,transparent,#000 18%,#000 86%,transparent);mask-composite:intersect}
.corporate-home .corp-hero--products .corp-hero-photo{object-fit:contain;object-position:center;mix-blend-mode:luminosity}
.corporate-home .corp-hero--products::before{background:linear-gradient(90deg,#10171c 0%,rgba(16,23,28,.97) 20%,rgba(16,23,28,.55) 43%,rgba(16,23,28,.02) 72%)}
.corporate-home .corp-hero--products::after{background:linear-gradient(0deg,#10171c 0%,transparent 26%,transparent 84%,#10171c 100%)}
.corporate-home .corp-hero--products h1{max-width:760px;font-size:clamp(38px,4.2vw,64px)}
.corporate-home .corp-hero--products .corp-hero-summary{max-width:590px}
.corporate-home .brand-scene--elpang{background:#292b29}
.corporate-home .brand-scene--elpang .brand-scene-media{left:28%}
.corporate-home .brand-scene--elpang :is(.brand-scene-media>img,.brand-scene-media>:where(picture.perf-mobile-picture)>img){object-fit:contain;object-position:center}
.corporate-home .brand-scene--elpang::before{background:linear-gradient(90deg,#202624 0%,rgba(32,38,36,.9) 28%,rgba(32,38,36,.28) 58%,transparent 82%)}
/* Show a wider band of the original restored rail, without resampling the photograph. */
.corporate-home .brand-scene--gsave .gsave-surface-window>img{width:calc(100cqh * 4032 / 320);height:calc(100cqh * 1908 / 320);top:calc(-100cqh * 860 / 320);right:calc(-100cqh * 450 / 320)}
@media(max-width:1270px){.header-util .btn-catalog{display:none}}
@media(max-width:900px){.revision4-company .stat-band .num{font-size:48px}.revision4-company .stat-band .cap{font-size:15px}}
@media(max-width:760px){
 .corporate-home .corp-hero--products{height:auto;min-height:840px;justify-content:flex-start}
 .corporate-home .corp-hero--products .corp-hero-picture{inset:47% -16% 8% -16%;aspect-ratio:auto;transform:none;mask-image:linear-gradient(0deg,transparent,#000 20%,#000 72%,transparent);mask-composite:add}
 .corporate-home .corp-hero--products::before{background:linear-gradient(180deg,#10171c 0%,rgba(16,23,28,.9) 36%,rgba(16,23,28,.1) 58%,transparent 84%)}
 .corporate-home .corp-hero--products .corp-hero-content{padding-block:58px 340px}
 .corporate-home .corp-hero--products h1{font-size:clamp(31px,7.2vw,44px);max-width:100%}
 .corporate-home .corp-hero--products .corp-hero-summary{font-size:16px!important;max-width:100%}
 .corporate-home .brand-scene--elpang .brand-scene-media{left:0}
 .corporate-home .brand-scene--elpang :is(.brand-scene-media>img,.brand-scene-media>:where(picture.perf-mobile-picture)>img){object-fit:cover;object-position:50% 57%}
 .corporate-home .brand-scene--elpang::before{background:linear-gradient(0deg,#202624 0%,rgba(32,38,36,.8) 20%,transparent 58%)}
 .revision4-company main .split{gap:28px}
 .revision4-company main h2:not(.cta-band h2){font-size:29px}
 .revision4-company .stat-band .num{font-size:46px}
 .revision4-company .stat-band .cap{font-size:16px}
 .footer-meta{gap:8px 24px}
}
@media(prefers-reduced-motion:reduce){.header-util .btn-catalog,.header-util .btn-contact{transition:none}}
/* Original KEMP homepage photograph; scoped to the corporate first screen. */
.corporate-home .corp-hero--surface{background:#080909}
.corporate-home .corp-hero--surface .corp-hero-picture{inset:0;aspect-ratio:auto;transform:none;mask-image:none;-webkit-mask-image:none}
.corporate-home .corp-hero--surface .corp-hero-photo{width:100%;height:100%;object-fit:cover;object-position:50% 50%;mix-blend-mode:normal}
.corporate-home .corp-hero--surface::before{background:linear-gradient(90deg,rgba(0,0,0,.65) 0%,rgba(0,0,0,.45) 30%,rgba(0,0,0,.12) 62%,transparent 88%)}
.corporate-home .corp-hero--surface::after{background:linear-gradient(180deg,rgba(0,0,0,.12),transparent 22%,transparent 74%,rgba(0,0,0,.6))}
.corporate-home .corp-hero--surface h1{max-width:800px;text-shadow:0 2px 24px rgba(0,0,0,.2)}
.corporate-home .corp-hero--surface .corp-hero-summary{color:#e1e4e5}
@media(max-width:760px){
 .corporate-home .corp-hero--surface{height:auto;min-height:max(760px,100svh);justify-content:flex-start}
 .corporate-home .corp-hero--surface .corp-hero-picture{inset:0;aspect-ratio:auto;transform:none;mask-image:none;-webkit-mask-image:none}
 .corporate-home .corp-hero--surface .corp-hero-photo{object-position:50% 50%}
 .corporate-home .corp-hero--surface::before{background:linear-gradient(180deg,rgba(0,0,0,.16),rgba(0,0,0,.28) 32%,rgba(0,0,0,.08) 56%,transparent 76%)}
 .corporate-home .corp-hero--surface::after{background:linear-gradient(0deg,rgba(0,0,0,.6),transparent 24%)}
 .corporate-home .corp-hero--surface .corp-hero-content{padding-block:48px 300px}
}
picture.perf-mobile-picture{display:contents}
