/* ───────────────────────────────────────────────────────────
   MVITRO — shared styles
   piggyback Pretendard from cdn, 1920 fixed container,
   monochrome tokens per Figma (Page-1)
   ─────────────────────────────────────────────────────────── */

@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable-dynamic-subset.min.css');

:root {
  /* surfaces */
  --bg: #FFFFFF;
  --bg-soft: #F3F3F3;
  --bg-gray: #DDDDDD;
  --bg-invert: #1A1A1A;

  /* ink */
  --ink: #1A1A1A;
  --ink-strong: #000000;
  --ink-mute: #666666;
  --ink-faint: #AAAAAA;
  --ink-invert: #FFFFFF;

  /* line */
  --line: #DDDDDD;
  --line-mute: #AAAAAA;

  /* radii */
  --r-card: 20px;
  --r-large: 24px;
  --r-xl: 30px;

  /* layout */
  --container: 1024px;
  --gutter: 40px;
  --nav-h: 70px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-feature-settings: "ss02", "tnum";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.02em;
}

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

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}

img {
  display: block;
  max-width: 100%;
}

/* ─── full-viewport page; content stays 905px centered ─── */
.page-1920 {
  width: 100%;
  min-width: 320px;
  margin: 0 auto;
  position: relative;
  overflow-x: clip;
  /* no overflow here — we want the viewport (html/body) to be the scroll
     container so position: sticky on the nav tracks real page scroll. */
}

html,
body {
  overflow-x: clip;
  width: 100%;
}

/* ───────────────────────────────────────────────────────────
   NAV
   ─────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  width: 100%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  /* reserve the border slot so .is-scrolled doesn't change nav height and shift children */
  border-bottom: 1px solid transparent;
  transition: background-color .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}

/* wrapper for logo + lang, matches content width (902px) */
.nav__inner {
  width: var(--container);
  max-width: calc(100% - 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 100%;
}

/* links sit centered over the whole nav (not just the inner box) */
.nav__links {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

/* ── dropdown ─────────────────────────────────────────────── */
.nav__item {
  position: relative;
  display: flex;
  align-items: center;
}

/* trigger caret */
.nav__link--has-menu {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav__caret {
  width: 10px;
  height: 10px;
  display: inline-block;
  transition: transform .18s ease;
  flex-shrink: 0;
}

.nav__caret svg {
  display: block;
  width: 100%;
  height: 100%;
}

.nav__item[data-open="true"] .nav__caret {
  transform: rotate(180deg);
}

/* invisible bridge that keeps hover alive between trigger and menu */
.nav__bridge {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
  pointer-events: auto;
}

/* menu panel */
.nav__menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 180px;
  padding: 8px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .08), 0 2px 6px rgba(0, 0, 0, .04);
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 10;
}

.nav__item[data-open="true"] .nav__menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__menu-link {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--ink-strong);
  border-radius: 8px;
  white-space: nowrap;
  transition: background-color .15s ease;
}

.nav__menu-link:hover {
  background: rgba(0, 0, 0, .05);
}

/* when nav is in dark/invert mode, menu stays light (readable) — only the trigger inherits the light text. */
.nav--invert .nav__caret,
.nav--on-dark .nav__caret {
  color: #fff;
}

/* scroll-triggered: translucent white w/ blur */
.nav.is-scrolled,
.nav--solid {
  background: rgba(255, 255, 255, .55);
  backdrop-filter: saturate(180%) blur(40px);
  -webkit-backdrop-filter: saturate(180%) blur(40px);
  border-bottom-color: rgba(0, 0, 0, .06);
}

.nav__logo {
  display: block;
  width: 100px;
  height: 18px;
  background: url(./assets/mvitro-logo-light.png?v=2) center / contain no-repeat;
  flex-shrink: 0;
}

.nav--invert .nav__logo,
.nav--on-dark .nav__logo {
  background-image: url(./assets/mvitro-logo-dark.png?v=2);
  filter: none;
}

.nav__link {
  padding: 10px 20px;
  font-size: 15px;
  border-radius: 999px;
  transition: background-color .18s ease, color .18s ease;
  font-weight: 500;
  letter-spacing: -0.08em;
  color: var(--ink-strong);
  transition: opacity .2s;
  white-space: nowrap;
  word-break: keep-all;
}

.nav__link:hover {
  background: rgba(0, 0, 0, .06);
  opacity: 1;
}

/* no visual marker for current page; hover only */
.nav__link.is-active {
  background: transparent;
}

.nav--invert .nav__link,
.nav--invert .nav__lang button,
.nav--invert .nav__lang a,
.nav--invert .nav__lang .divider,
.nav--on-dark .nav__link,
.nav--on-dark .nav__lang button,
.nav--on-dark .nav__lang a,
.nav--on-dark .nav__lang .divider {
  color: #fff;
}

.nav--invert .nav__link:hover,
.nav--on-dark .nav__link:hover {
  background: rgba(255, 255, 255, .14);
}

.nav--invert .nav__link.is-active,
.nav--on-dark .nav__link.is-active {
  background: transparent;
}

/* when scrolled over a dark area, drop the frosted white background to keep contrast */
.nav--on-dark.is-scrolled {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}

.nav__lang {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  flex-shrink: 0;
}

.nav__lang button,
.nav__lang a {
  padding: 10px 12px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.08em;
  color: var(--ink-strong);
  text-decoration: none;
  transition: opacity .2s;
}

/* 보고 있지 않은 언어는 흐리게 */
.nav__lang button[aria-pressed="false"],
.nav__lang a:not(.is-current) {
  color: var(--ink-faint);
}

.nav__lang a:not(.is-current):hover {
  color: var(--ink-strong);
}

.nav__lang .divider {
  width: 1px;
  height: 10px;
  background: var(--line-mute);
  margin: 0 4px;
}

/* mobile hamburger + full-screen panel — hidden on desktop, see ≤768px block below */
.nav__burger {
  display: none;
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
}

.nav__burger:focus {
  outline: none;
}

.nav__burger:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
  border-radius: 6px;
}

.nav__mobile-panel {
  display: none;
}

@media (max-width: 768px) {
  .nav__mobile-panel {
    display: block;
  }
}

/* ───────────────────────────────────────────────────────────
   HERO (video fills the hero, title overlaid)
   ─────────────────────────────────────────────────────────── */
.hero {
  width: 100%;
  background: var(--bg-gray);
  display: flex;
  flex-direction: column;
  margin-top: calc(var(--nav-h) * -1);
  position: relative;
  overflow: hidden;
}

.hero--tall {
  height: auto;
  aspect-ratio: 16 / 9;
  min-height: 600px;
  max-height: 100vh;
}

.hero--short {
  height: auto;
  aspect-ratio: 16 / 9;
  min-height: 600px;
  max-height: 100vh;
}

/* video fills the hero behind everything else */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  background: var(--bg-gray);
}

.hero__video-placeholder {
  position: absolute;
  inset: 0;
  background: var(--bg-gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 1;
  pointer-events: none;
  color: var(--ink-mute);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero__video-placeholder small {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  opacity: .8;
}

.hero__video-placeholder.is-hidden {
  display: none;
}

/* hero__inner sits above the video */
.hero__inner {
  position: relative;
  z-index: 2;
}

/* product hero — light bg, contain image */
.hero--product {
  background: #F7F7F7;
}

.hero__image.hero__image--contain {
  object-fit: contain;
  object-position: center bottom;
  padding: 280px 0 0;
  filter: none !important;
}

.hero--product .hero__inner {
  z-index: 2;
}

.hero--product .hero__image-placeholder {
  display: none;
}

.hero--product .hero__image {
  background: transparent;
}

/* hero image (brand page etc.) — drop <img class="hero__image" src="..."> inside .hero */
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  background: var(--bg-gray);
}

.hero__image-placeholder {
  position: absolute;
  inset: 0;
  background: var(--bg-gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 1;
  pointer-events: none;
  color: var(--ink-mute);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero__image-placeholder small {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  opacity: .8;
}

.hero__image-placeholder.is-hidden {
  display: none;
}

.hero__inner {
  flex: 1;
  width: 100%;
  padding: 0 max(var(--gutter), calc((100% - var(--container)) / 2));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero__inner--bottom {
  justify-content: flex-end;
  padding-bottom: 120px;
  align-items: flex-start;
}

.hero__inner--bottom-center {
  justify-content: flex-end;
  padding-bottom: 120px;
  align-items: flex-start;
}

/* ABOUT-style overlay: top-left eyebrow + title + CTA over a full-bleed image */
.hero__inner--overlay {
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 180px;
  padding-bottom: 120px;
  color: #fff;
}

.hero__eyebrow {
  margin: 0 0 24px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.92;
}

.hero__cta {
  margin-top: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-width: 220px;
  padding: 18px 24px;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color .2s, border-color .2s;
}

.hero__cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.hero__cta::after {
  content: "›";
  font-size: 18px;
  line-height: 1;
}

/* solid purple "구매하기" CTA (landing hero) */
.hero__buy {
  margin-top: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 48px;
  border-radius: 999px;
  background: #6B4EFF;
  color: #fff;
  font-family: inherit;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(107, 78, 255, 0.38);
  transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.hero__buy:hover {
  background: #5A3DF0;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(107, 78, 255, 0.48);
}

.hero__buy:active {
  transform: translateY(0);
}

.hero__buy:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* dark scrim for image readability */
.hero--scrim .hero__image-placeholder {
  background: #2a2a2a;
  color: #777;
}

.hero--scrim .hero__image {
  filter: brightness(0.85);
}

.hero--scrim::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 40%, rgba(0, 0, 0, 0) 80%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 35%);
  z-index: 1;
  pointer-events: none;
}

.hero--scrim .hero__inner {
  z-index: 2;
  position: relative;
}

/* 랜딩 히어로는 제목이 가운데 정렬이다.
   왼→우 그라데이션은 가운데에 어둠이 거의 남지 않아
   밝은 장면에서 제목이 묻힌다. 제목이 앉는 높이(38~58%)를
   세로로 덮고, 제품이 보이는 하단은 밝게 남긴다.
   brand.html 의 짧은 히어로는 적용 대상이 아니다. */
/* 영상 밝기 필터를 풀었으니(아래 .hero__image 참고) 화면 전체를 덮는 막은 없앤다.
   대신 글자가 실제로 있는 두 군데만 남긴다.
     - 맨 위 좁은 띠: 네비게이션 흰 글자용. 30% 아래로는 0 이라 영상에 안 걸린다.
     - 제목 뒤 타원: 흰 기기 본체가 제목을 지나가는 컷에서만 일한다.
   그 외 영역은 덮지 않는다 (= 영상 원본 밝기).
   전부 빼려면 background: none 한 줄이면 된다. */
.hero--tall.hero--scrim::before {
  background:
    radial-gradient(
      ellipse 62% 32% at 50% 50%,
      rgba(0, 0, 0, 0.38) 0%,
      rgba(0, 0, 0, 0.22) 55%,
      rgba(0, 0, 0, 0) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.45) 0%,
      rgba(0, 0, 0, 0.26) 8%,
      rgba(0, 0, 0, 0.05) 18%,
      rgba(0, 0, 0, 0) 30%
    );
}

/* 랜딩 영상에 걸려 있던 밝기 85% 도 해제한다.
   (brand.html 의 정지 이미지 히어로는 그대로 85% 유지) */
.hero--tall.hero--scrim .hero__image {
  filter: none;
}

/* 대비는 제목 뒤 타원이 거의 다 감당한다.
   그림자는 흰 본체가 제목에 겹치는 컷에서 글자 경계만 잡아주는
   정도로 약하게 둔다. 세게 주면 글자 뒤에 얼룩처럼 보인다. */
.hero--tall .hero__title {
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.2),
    0 4px 14px rgba(0, 0, 0, 0.26);
}

.hero__title {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink);
  white-space: pre;
  word-break: keep-all;
  /* 캐럿(글자 커서)이 제목 위에 찍히지 않도록.
     브라우저의 '캐럿 브라우징'(F7)이 켜져 있으면 본문 아무 데나
     깜빡이는 세로 막대가 생긴다. 선택 불가로 두면 거기 머물지 않는다. */
  -webkit-user-select: none;
  user-select: none;
  caret-color: transparent;
}

.hero__title--xl {
  font-size: 72px;
  line-height: 88px;
  text-align: center;
}

.hero__title--lg {
  font-size: 60px;
  line-height: 72px;
}

.hero__title--md {
  font-size: 52px;
  line-height: 1.35;
}

/* ───────────────────────────────────────────────────────────
   TRUST BAR — 인허가 사실 표기 (랜딩 히어로 아래)
   ─────────────────────────────────────────────────────────── */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 20px 64px;
  padding: 64px max(var(--gutter), calc((100% - var(--container)) / 2));
  background: #fff;
}

.trust-bar__item {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.trust-bar__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  white-space: nowrap;
}

.trust-bar__desc {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0;
  color: #b0b0b0;
  white-space: nowrap;
}

/* ───────────────────────────────────────────────────────────
   FEATURE CAROUSEL — 가로 슬라이드 콘텐츠 박스 (Apple 스타일)
   ─────────────────────────────────────────────────────────── */
.feature-carousel {
  background: #f5f5f7;
}

.feature-carousel__head {
  padding: 0 max(var(--gutter), calc((100% - var(--container)) / 2));
  margin-bottom: 56px;
}

.feature-carousel__title {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.3;
  color: var(--ink);
  word-break: keep-all;
}

.feature-carousel__title span {
  color: #a1a1a6;
}

/* 가로 스크롤 트랙 — 컨테이너 왼쪽 선에 맞춰 시작, 오른쪽으로 흘러넘침 */
.feature-carousel__viewport {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0 max(var(--gutter), calc((100% - var(--container)) / 2));
  scroll-padding: 0 max(var(--gutter), calc((100% - var(--container)) / 2));
  scrollbar-width: none;
}

.feature-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.fcard {
  position: relative;
  flex: 0 0 900px;
  aspect-ratio: 16 / 9;
  border-radius: 28px;
  overflow: hidden;
  background: #e9e9ec;
  scroll-snap-align: start;
}

.fcard__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 캡션 가독성용 상단 그라데이션 */
.fcard__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0) 45%);
  pointer-events: none;
}

.fcard__caption {
  position: relative;
  margin: 0;
  padding: 42px 42px;
  max-width: 600px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.02em;
  color: var(--ink);
  word-break: keep-all;
}

/* 카드에 미디어를 넣을 때 캡션 기본색: 흰색 */
.fcard:has(.fcard__img) .fcard__caption {
  color: #fff;
  z-index: 2;
}

/* feature-3: 밝은 배경 영상이라 글자를 어둡게 고정 */
.fcard--ink .fcard__caption {
  color: #1a1a1a !important;
  -webkit-text-fill-color: #1a1a1a !important;
}

.fcard--ink .fcard__scrim {
  display: none;
}

.fcard__caption strong {
  font-weight: 700;
}

/* 우하단 원형 내비게이션 */
.feature-carousel__nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 36px;
  padding: 0 max(var(--gutter), calc((100% - var(--container)) / 2));
}

.feature-carousel__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #e3e3e7;
  color: #1a1a1a;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background-color .2s ease, opacity .2s ease;
}

.feature-carousel__arrow svg {
  width: 20px;
  height: 20px;
}

.feature-carousel__arrow:hover:not(:disabled) {
  background: #d6d6db;
}

.feature-carousel__arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.feature-carousel__arrow:focus {
  outline: none;
}

.feature-carousel__arrow:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

/* ───────────────────────────────────────────────────────────
   SHOWCASE — 헤더 폭에 꽉 차는 큰 콘텐츠 박스
   ─────────────────────────────────────────────────────────── */
/* 슬라이더 위 링크 문구 */
.showcase__head {
  width: 100%;
  margin-bottom: 28px;
}

.showcase__link {
  position: absolute;
  left: 32px;
  bottom: 32px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  text-decoration: none;
  background: rgba(60, 60, 64, 0.5);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background .15s ease, transform .15s ease;
}

.showcase__link:hover {
  background: rgba(60, 60, 64, 0.66);
  transform: translateY(-1px);
}

.showcase__link span {
  transition: transform .2s ease;
}

.showcase__link:hover span {
  transform: translateX(4px);
}

.showcase {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 28px;
  overflow: hidden;
  background: #e9e9ec;
  /* 이미지 없을 때 플레이스홀더 */
}

/* 슬라이드 트랙 */
.showcase__track {
  display: flex;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase__slide {
  flex: 0 0 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-color: #e9e9ec;
  /* 이미지 넣기 전 플레이스홀더 */
}

/* 좌우 넘김 버튼 */
.showcase__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #1a1a1a;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background-color .2s ease;
}

.showcase__arrow svg {
  width: 22px;
  height: 22px;
}

.showcase__arrow:hover {
  background: #fff;
}

.showcase__arrow--prev {
  left: 24px;
}

.showcase__arrow--next {
  right: 24px;
}

.showcase__arrow:focus {
  outline: none;
}

.showcase__arrow:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* ───────────────────────────────────────────────────────────
   PRODUCT PEEK — 랜딩 제품 한 컷 (다크 스테이지)
   ─────────────────────────────────────────────────────────── */
.product-stage {
  background: #0e0e0e;
}

.product-peek {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* 제품 뒤 은은한 글로우 */
.product-peek::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 55%;
  width: 920px;
  height: 920px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 255, 255, 0.09), transparent 72%);
  pointer-events: none;
}

.product-peek__eyebrow {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #8a8a8a;
}

.product-peek__title {
  color: #fff;
}

.product-peek__img {
  position: relative;
  width: min(760px, 80%);
  height: auto;
  display: block;
  margin-top: 16px;
  filter: drop-shadow(0 60px 120px rgba(0, 0, 0, 0.55));
}

.product-peek__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 16px 36px;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: background-color .2s ease, transform .2s ease;
}

.product-peek__cta:hover {
  background: #e9e9e9;
  transform: translateY(-2px);
}

.product-peek__cta:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* ───────────────────────────────────────────────────────────
   NEWS TEASER — 랜딩 최신 소식 3카드
   ─────────────────────────────────────────────────────────── */
.news-teaser {
  width: 100%;
}

.news-teaser__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 40px;
}

.news-teaser__title {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.news-teaser__more {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #777;
  text-decoration: none;
  transition: color .15s;
}

.news-teaser__more:hover {
  color: var(--ink);
}

.news-teaser__grid {
  display: flex;
  flex-direction: column;
}

.news-card {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 30px 8px;
  border-top: 1px solid #e8e8e8;
  text-decoration: none;
  transition: padding-left .25s ease;
}

.news-card:last-child {
  border-bottom: 1px solid #e8e8e8;
}

.news-card:hover {
  padding-left: 20px;
}

.news-card__date {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0;
  color: #9a9a9a;
  font-variant-numeric: tabular-nums;
}

.news-card__title {
  margin: 0;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: var(--ink);
  word-break: keep-all;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-card__arrow {
  font-size: 20px;
  color: #c5c5c5;
  transition: color .15s, transform .25s;
}

.news-card:hover .news-card__arrow {
  color: var(--ink);
  transform: translateX(6px);
}

/* ───────────────────────────────────────────────────────────
   SECTION primitives
   ─────────────────────────────────────────────────────────── */
.section {
  width: 100%;
  padding: 120px max(var(--gutter), calc((100% - var(--container)) / 2));
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section--tight {
  padding: 90px max(var(--gutter), calc((100% - var(--container)) / 2));
}

.section--bottom-xl {
  padding-bottom: 300px;
}

.section--black {
  background: var(--bg-invert);
  color: var(--ink-invert);
}

.section--soft {
  background: var(--bg-soft);
}

.container {
  width: var(--container);
  max-width: 100%;
}

.eyebrow {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink-mute);
  margin: 0;
}

.section-title {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink);
  white-space: pre-line;
  word-break: keep-all;
}

.section-title--xl {
  font-size: 52px;
  line-height: 1;
}

.section-title--lg {
  font-size: 42px;
  line-height: 52px;
}

.section-title--md {
  font-size: 52px;
  line-height: 1.35;
  font-weight: 700;
}

.section-title--sm {
  font-size: 32px;
  line-height: 42px;
}

.section-lede {
  margin: 0;
  font-size: 21px;
  font-weight: 500;
  line-height: 29px;
  letter-spacing: -0.04em;
  color: var(--ink-mute);
  white-space: pre-line;
  word-break: keep-all;
}

.section-lede--ink {
  color: var(--ink);
}

/* ───────────────────────────────────────────────────────────
   FEATURE GRID (wireframe cards, 2×2)
   ─────────────────────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  justify-content: center;
  width: 100%;
}

.feature-card {
  width: 100%;
  height: auto;
  border-radius: 0;
  background: transparent;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform .3s ease;
}

.feature-card__media {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-card);
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 32px;
}

.feature-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card__media-ph {
  font-size: 13px;
  letter-spacing: .14em;
  font-weight: 600;
  color: var(--ink-faint);
}

.feature-card:hover {
  transform: none;
  background: transparent;
}

.feature-card__media img {
  transition: transform .4s ease;
}

.feature-card:hover .feature-card__media img {
  transform: scale(1.04);
}

.feature-card__label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--ink-faint);
}

.feature-card__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: -0.04em;
  color: var(--ink);
  white-space: pre-line;
  word-break: keep-all;
  margin: 0;
  text-align: center;
}

/* smaller grid variant (brand page) */
.feature-grid--compact {
  row-gap: 150px;
}

.feature-grid--compact .feature-card {
  height: auto;
  min-height: 0;
}

/* Apple-style text-in-box value cards */
.value-grid {
  row-gap: 24px;
  column-gap: 24px;
}

.value-card {
  display: flex;
  flex-direction: column;
  background: #f5f5f7;
  border-radius: 24px;
  padding: 48px 44px;
  min-height: 360px;
}

.value-card__eyebrow {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #6e6e73;
  margin-bottom: 24px;
}

.value-card__icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: #1d1d1f;
}

.value-card__icon svg {
  width: 100%;
  height: 100%;
}

.value-card__title {
  margin: 0 0 16px;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: #1d1d1f;
  white-space: pre-line;
  word-break: keep-all;
}

.value-card__desc {
  margin: auto 0 0;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #6e6e73;
  white-space: pre-line;
  word-break: keep-all;
}

.feature-card__desc {
  margin: 16px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -0.03em;
  color: #555;
  word-break: keep-all;
  text-align: center;
  white-space: pre-line;
}

.feature-card__link {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #2f6bff;
  text-decoration: none;
}

.feature-card__link:hover {
  text-decoration: underline;
}

/* ───────────────────────────────────────────────────────────
   BIG FEATURE BLOCK (product page)
   ─────────────────────────────────────────────────────────── */
.big-feature {
  width: 100%;
  padding: 240px max(var(--gutter), calc((100% - var(--container)) / 2)) 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 연속되는 피처 블록은 사이 간격 축소 */
.big-feature + .big-feature {
  padding-top: 180px;
}

.big-feature__inner {
  width: var(--container);
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.big-feature__head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  align-items: center;
}

.feature__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 16px 28px;
  background: var(--ink, #111);
  color: #fff;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: background-color .2s, transform .2s;
}

.feature__cta:hover {
  background: #000;
  transform: translateY(-1px);
}

.feature__cta::after {
  content: "›";
  font-size: 18px;
  line-height: 1;
  margin-left: 2px;
}

/* MODAL */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.modal[hidden] {
  display: none;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 22, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  transition: opacity .24s ease;
}

.modal.is-open .modal__backdrop {
  opacity: 1;
}

.modal__panel {
  position: relative;
  width: min(720px, 100%);
  max-height: calc(100vh - 80px);
  overflow: auto;
  background: #fff;
  border-radius: 24px;
  padding: 56px 56px 56px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
  transform: translateY(16px) scale(0.98);
  opacity: 0;
  transition: transform .24s ease, opacity .24s ease;
}

.modal.is-open .modal__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 0;
  padding: 0;
  border-radius: 999px;
  font-size: 24px;
  line-height: 1;
  color: #555;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color .15s, color .15s;
}

.modal__close:hover {
  background: #f2f2f2;
  color: #000;
}

.modal__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal__content .eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ink-mute, #777);
  text-transform: uppercase;
  margin: 0;
}

.modal__title {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink, #111);
  line-height: 1.15;
}

.modal__lede {
  margin: 8px 0 0;
  font-size: 17px;
  line-height: 1.65;
  color: #444;
  white-space: pre-line;
  word-break: keep-all;
}

.modal__list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.modal__list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  background: #F7F7F7;
  border-radius: 14px;
}

.modal__list li strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink, #111);
}

.modal__list li span {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* MODAL SLIDES (carousel inside modal) */
.modal__panel--slides {
  width: min(880px, 100%);
  padding: 0;
  overflow: hidden;
  border-radius: 24px;
}

.modal--slides .modal__close {
  top: 18px;
  right: 18px;
  z-index: 5;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
}

.slides {
  position: relative;
  width: 100%;
}

.slides__track {
  display: flex;
  width: 100%;
  transition: transform 480ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.slide {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
}

.slide__media {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: #F2F2F2;
}

.slide__media--gradient {
  background: radial-gradient(120% 80% at 50% 100%, #1A1A1A 0%, #2E2E33 55%, #4A4A52 100%);
}

.slide__media-glow {
  position: absolute;
  left: 50%;
  bottom: -40%;
  width: 80%;
  aspect-ratio: 1 / 1;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(160, 200, 255, 0.55) 0%, rgba(160, 200, 255, 0) 60%);
  filter: blur(20px);
}

.slide__media--01 {
  background: linear-gradient(135deg, #EDF2F7 0%, #DBE4ED 100%);
}

.slide__media--02 {
  background: linear-gradient(135deg, #F2EFE9 0%, #E5DFD3 100%);
}

.slide__media--03 {
  background: linear-gradient(135deg, #ECECEC 0%, #D8D8D8 100%);
}

.slide__num {
  position: absolute;
  left: 40px;
  bottom: 32px;
  font-size: 120px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: rgba(26, 26, 26, 0.10);
  line-height: 1;
}

.slide__body {
  padding: 48px 56px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 240px;
}

.slide__body .eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #777;
  text-transform: uppercase;
  margin: 0;
}

.slide__title {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink, #111);
  line-height: 1.15;
}

.slide__lede {
  margin: 4px 0 0;
  font-size: 17px;
  line-height: 1.65;
  color: #444;
  white-space: pre-line;
  word-break: keep-all;
}

.slides__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 32px 32px;
}

.slides__arrow {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #E5E5E5;
  background: #fff;
  color: #1A1A1A;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color .15s, border-color .15s, opacity .15s;
}

.slides__arrow:hover {
  background: #F5F5F5;
}

.slides__arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

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

.slides__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  border: 0;
  background: #D9D9D9;
  cursor: pointer;
  transition: background-color .15s, width .2s;
}

.slides__dot.is-active {
  background: #1A1A1A;
  width: 24px;
  border-radius: 4px;
}

/* 모바일 전용 줄바꿈 — 기본(데스크톱)에서는 없는 셈 친다 */
.br-mo {
  display: none;
}

.big-feature__title {
  margin: 16px 0 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--ink);
  white-space: pre-line;
  word-break: keep-all;
}

.big-feature__lede {
  margin: 8px 0 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: -0.04em;
  color: var(--ink-mute);
  white-space: pre-line;
  word-break: keep-all;
}

.big-feature__media {
  width: 100%;
  height: 600px;
  border-radius: var(--r-large);
  background: var(--bg-soft);
  overflow: hidden;
}

.big-feature__media video,
.big-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.big-feature__media iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* 매뉴얼 영상 배너 (제목 + CTA + 이미지) */
.video-banner {
  display: grid;
  grid-template-columns: 42% 58%;
  width: 100%;
  min-height: 400px;
  border-radius: var(--r-large);
  overflow: hidden;
  background: #f3f3f5;
}

.video-banner__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 60px 24px;
  text-align: center;
}

.video-banner__text h3 {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.35;
  color: var(--ink);
  word-break: keep-all;
}

.video-banner__btn {
  display: inline-flex;
  align-items: center;
  padding: 13px 26px;
  background: #1a1a1a;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.15s ease;
}

.video-banner__btn:hover {
  background: #333;
}

.video-banner__media {
  overflow: hidden;
}

.video-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translateY(-12%) scale(1.55);
}

/* 미디어 2분할 (이중 잠금 등) */
.big-feature__media--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  height: auto;
  background: none;
  overflow: visible;
}

.big-feature__media--split .split-col {
  display: flex;
  flex-direction: column;
}

.big-feature__media--split .split-tile {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 720px;
  background: var(--bg-soft);
  border-radius: var(--r-large);
  overflow: hidden;
}

/* 분할 캡션 (박스 아래 STEP + 설명) */
.split-caption {
  margin-top: 24px;
  text-align: left;
}

.split-caption p {
  margin: 0;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #6e6e73;
  word-break: keep-all;
}

.split-caption p strong {
  display: block;
  margin-bottom: 4px;
  font-weight: 700;
  color: var(--ink);
}

/* ───────────────────────────────────────────────────────────
   파트별 명칭 (product)
   ─────────────────────────────────────────────────────────── */
.parts-section {
  padding: 300px max(var(--gutter), calc((100% - var(--container)) / 2)) 80px;
  background: var(--bg-soft);
}

.parts-card {
  margin-top: 0;
  padding: 120px 0 240px;
  background: #fff;
  border-radius: var(--r-large);
}

.parts-figure {
  position: relative;
  width: 100%;
}

.parts-figure + .parts-figure {
  margin-top: 140px;
}

.parts-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.pcall {
  position: absolute;
  display: flex;
  align-items: center;
  z-index: 2;
}

.pcall--right {
  right: 6%;
  transform: translate(-3.5px, -50%);
}

.pcall--left {
  left: 6%;
  transform: translate(3.5px, -50%);
}

.pcall .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #666666;
  flex-shrink: 0;
}

/* 어두운 면 위에 올라가는 점 (L-커버 등) */
.pcall .dot--light {
  background: #ececef;
}

.pcall .ln {
  flex: 1 1 auto;
  min-width: 30px;
  height: 1px;
  transform: scaleY(0.5);
  background: #666666;
  margin: 0;
}

.pcall em {
  font-style: normal;
  width: 150px;
  flex-shrink: 0;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--ink);
  margin: 0 14px;
  word-break: keep-all;
}

.pcall--left em {
  text-align: right;
}

.pcall--right em {
  text-align: left;
}

/* ───────────────────────────────────────────────────────────
   상세 정보 및 스펙 (product)
   ─────────────────────────────────────────────────────────── */
.spec-section {
  padding: 40px max(var(--gutter), calc((100% - var(--container)) / 2)) 240px;
  background: var(--bg-soft);
}

.spec-card {
  margin-top: 0;
  padding: 180px 80px 120px;
  background: #fff;
  border-radius: var(--r-large);
}

.spec-figure {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 110px;
  margin: 0 0 160px;
}

.dim-item {
  position: relative;
}

.dim-item img {
  display: block;
  width: auto;
}

/* 세로 치수선 (103mm) */
.dim--v {
  position: absolute;
  left: -44px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #b0b0b6;
}

.dim--v::before,
.dim--v::after {
  content: "";
  position: absolute;
  left: -5px;
  width: 11px;
  height: 1px;
  background: #b0b0b6;
}

.dim--v::before { top: 0; }
.dim--v::after { bottom: 0; }

.dim--v em {
  position: absolute;
  top: 50%;
  left: -14px;
  transform: translate(-100%, -50%);
  writing-mode: vertical-rl;
  font-style: normal;
  font-size: 16px;
  font-weight: 600;
  color: #555558;
}

/* 가로 치수선 (68mm, 30mm) */
.dim--h {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -36px;
  height: 1px;
  background: #b0b0b6;
}

.dim--h::before,
.dim--h::after {
  content: "";
  position: absolute;
  top: -5px;
  width: 1px;
  height: 11px;
  background: #b0b0b6;
}

.dim--h::before { left: 0; }
.dim--h::after { right: 0; }

.dim--h em {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-style: normal;
  font-size: 16px;
  font-weight: 600;
  color: #555558;
  white-space: nowrap;
}

/* 스펙 표 */
.spec-table {
  display: grid;
  grid-template-columns: 240px 1fr;
  row-gap: 10px;
  max-width: 800px;
  margin: 0 auto;
}

.spec-table dt {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.75px;
  color: var(--ink);
}

.spec-table dd {
  margin: 0;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.75px;
  line-height: 1.6;
  color: #3a3a3c;
  word-break: keep-all;
}

/* 사용 시 안내 */
.spec-guide {
  max-width: 800px;
  margin: 100px auto 0;
}

.spec-guide h3 {
  margin: 0 0 32px;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.spec-guide ul {
  margin: 0;
  padding: 0 0 0 24px;
}

.spec-guide li {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.65px;
  line-height: 1.55;
  color: #3a3a3c;
  word-break: keep-all;
}

.spec-guide li + li {
  margin-top: 14px;
}

/* 의료기기 고지 */
.spec-notice .notice-br {
  display: none;
}

.spec-notice {
  max-width: 800px;
  margin: 60px auto 0;
  padding: 52px 24px;
  background: var(--bg-soft);
  border-radius: 16px;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.6;
  color: var(--ink);
}

.big-feature__media--split .split-tile img {
  height: 90%;
  width: 100%;
  flex-shrink: 0;
  object-fit: cover;
  object-position: calc(50% + 50px) center;
}

/* ───────────────────────────────────────────────────────────
   BIG WIREFRAME CARD (landing — ORTIV)
   ─────────────────────────────────────────────────────────── */
.big-card {
  position: relative;
  width: var(--container);
  max-width: 100%;
  height: 510px;
  border-radius: var(--r-xl);
  background: var(--bg-soft);
  padding: 56px 64px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* the whole card IS the image — full-bleed background layer.
   An <img> with no src set renders nothing, so empty cards stay clean gray. */
.big-card__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 0;
}

/* before a real image is attached the <img> has no src — hide it so the
   browser doesn't draw an empty-image box (which looked like a card outline) */
.big-card__media:not([src]) {
  display: none;
}

/* card text overlays on top of the image */
.big-card__text {
  position: relative;
  z-index: 1;
}

.big-card__eyebrow {
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 0 0 12px;
}

.big-card__body {
  font-size: 21px;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: -0.04em;
  color: var(--ink);
  white-space: pre-line;
  word-break: keep-all;
  margin: 0;
}

/* ───────────────────────────────────────────────────────────
   BIG CARD SLIDER
   ─────────────────────────────────────────────────────────── */
.big-card-slider {
  position: relative;
}

.big-card-slider__viewport {
  overflow: hidden;
  border-radius: var(--r-xl);
}

/* prev / next direction arrows (sit over the card edges, vertically centered) */
.big-card-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.big-card-slider__arrow svg {
  width: 22px;
  height: 22px;
}

.big-card-slider__arrow:hover {
  background: #f0f0f0;
}

.big-card-slider__arrow:active {
  transform: translateY(-50%) scale(0.94);
}

/* suppress the default focus ring on mouse click; keep a clean,
   rounded ring for keyboard users (accessibility) */
.big-card-slider__arrow:focus {
  outline: none;
}

.big-card-slider__arrow:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.big-card-slider__arrow--prev {
  left: 24px;
}

.big-card-slider__arrow--next {
  right: 24px;
}

.big-card-slider__track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.big-card-slider__track .big-card {
  flex: 0 0 100%;
  border-radius: 0;
}

/* Tab navigation — Apple style (underline at bottom) */
.big-card-slider__tabs {
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.big-card-slider__tab {
  flex: 1;
  padding: 28px 20px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.4;
  color: var(--ink-mute);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s, border-color 0.2s;
}

.big-card-slider__tab.is-active {
  color: var(--ink);
  font-weight: 700;
  border-bottom-color: var(--ink);
}

.big-card-slider__tab:hover:not(.is-active) {
  color: var(--ink);
}

/* Description text below tabs */
.big-card-slider__descs {
  display: grid;
  margin-top: 48px;
  text-align: center;
}

.big-card-slider__desc {
  grid-area: 1 / 1;
  opacity: 0;
  transition: opacity 0.35s ease;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.65;
  color: var(--ink);
  word-break: keep-all;
  white-space: pre-line;
}

.big-card-slider__desc.is-active {
  opacity: 1;
}

/* ───────────────────────────────────────────────────────────
   TIMELINE (brand page)
   ─────────────────────────────────────────────────────────── */
.timeline-card {
  width: 905px;
  border-radius: var(--r-large);
  background: #fff;
  padding: 90px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.timeline-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 40px;
  align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.timeline-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.timeline-year {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.timeline-year::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ink);
}

.timeline-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 6px;
}

/* ───────────────────────────────────────────────────────────
   HISTORY (interactive timeline, brand page)
   ─────────────────────────────────────────────────────────── */
.history {
  width: var(--container);
  max-width: 100%;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 80px;
  background: #fff;
  border-radius: 20px;
  padding: 120px 90px;
  min-height: 720px;
}

.history__years {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
  position: relative;
}

.history__years>li {
  display: grid;
  grid-template-columns: 1fr 32px;
  /* dot column */
  column-gap: 28px;
  /* space between year label and dot */
  align-items: center;
}

/* vertical line threaded through the center of the dot column — with extended tail below */
.history__years::before {
  content: '';
  position: absolute;
  top: 14px;
  bottom: -80px;
  right: 16px;
  /* center of the 32px dot column */
  width: 2px;
  background: var(--line);
  z-index: 0;
}

.history__year {
  all: unset;
  cursor: pointer;
  display: contents;
  /* let the <li> grid columns apply to button children */
}

.history__year-label {
  width: 60px;
  text-align: right;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #BFC4CC;
  transition: color .2s;
}

.history__year:hover .history__year-label {
  color: var(--ink-mute);
}

.history__dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #D6DAE1;
  justify-self: center;
  /* centered inside the 24px dot column */
  position: relative;
  z-index: 1;
  transition: background .2s, transform .2s;
}

.history__year.is-active .history__year-label {
  color: var(--ink-strong);
  font-weight: 700;
}

.history__year.is-active .history__dot {
  background: var(--ink-strong);
  transform: scale(1.15);
}

.history__events {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 4px;
}

#history-events {
  gap: 32px;
}

.history__event-date {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -1px;
  font-weight: 500;
  color: var(--ink-faint);
  font-variant-numeric: tabular-nums;
}

.history__event-title {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.04em;
  color: var(--ink);
  word-break: keep-all;
}

.history__empty {
  margin: 0;
  color: var(--ink-faint);
  font-size: 16px;
  letter-spacing: -0.04em;
}

.timeline-item {
  font-size: 17px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.timeline-item__month {
  display: inline-block;
  width: 48px;
  color: var(--ink-faint);
  font-weight: 500;
}

/* ───────────────────────────────────────────────────────────
   NOTICE LIST
   ─────────────────────────────────────────────────────────── */
.notice {
  width: var(--container);
  max-width: 100%;
  display: flex;
  flex-direction: column;
}

.notice__heading {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
  margin: 0 0 42px;
  padding: 0 8px;
}

.notice__row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  padding: 22px 8px;
  border-top: 1px solid var(--line);
  transition: background .2s, padding .2s;
  cursor: pointer;
}

.notice__row:first-of-type {
  border-top: none;
}

.notice__row:last-child {
  border-bottom: 1px solid var(--line);
}

.notice__row:hover {
  padding-left: 20px;
  background: #FAFAFA;
}

.notice__title {
  font-size: 21px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: -0.04em;
  color: var(--ink);
  white-space: pre-line;
  word-break: keep-all;
  margin: 0;
}

.notice__date {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--ink-mute);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

/* ───────────────────────────────────────────────────────────
   NOTICE DETAIL (게시글 상세)
   ─────────────────────────────────────────────────────────── */
.notice-detail {
  width: var(--container);
  max-width: 100%;
  display: flex;
  flex-direction: column;
}

.notice-detail__title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1.25;
  margin: 0 0 18px;
  padding: 0 8px;
  word-break: keep-all;
}

.notice-detail__meta {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--ink-mute);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  padding: 0 8px;
  margin: 0 0 28px;
}

.notice-detail__divider {
  height: 1px;
  background: var(--line);
  border: none;
  margin: 0 0 48px;
}

.notice-detail__body {
  padding: 0 8px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: -0.02em;
  color: var(--ink);
  word-break: keep-all;
}

.notice-detail__body p {
  margin: 0 0 22px;
}

.notice-detail__body p:last-child {
  margin-bottom: 0;
}

.notice-detail__body h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 32px 0 14px;
  line-height: 1.6;
}

.notice-detail__body h3:first-child {
  margin-top: 0;
}

.notice-detail__body ul,
.notice-detail__body ol {
  margin: 0 0 22px;
  padding-left: 22px;
}

.notice-detail__body li {
  margin: 0 0 6px;
  line-height: 1.7;
}

.notice-detail__body li:last-child {
  margin-bottom: 0;
}

.notice-detail__body ul li {
  list-style: disc;
}

.notice-detail__body ol li {
  list-style: decimal;
}

.notice-detail__body a {
  color: #4F86FF;
  text-decoration: none;
  font-weight: 500;
}

.notice-detail__body a:hover {
  text-decoration: underline;
}

/* 본문 삽입 이미지 */
.notice-detail__body img.notice-detail__img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 28px 0;
}

.notice-detail__back {
  margin-top: 80px;
  padding: 0 8px;
}

.notice-detail__back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 22px;
  background: #F4F5F7;
  border: 0;
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  transition: background .2s;
}

.notice-detail__back-btn:hover {
  background: #ECEEF2;
}

.notice-detail__missing {
  padding: 48px 8px;
  font-size: 17px;
  color: var(--ink-mute);
  letter-spacing: -0.02em;
}

/* ───────────────────────────────────────────────────────────
   RESOURCES (자료 카드 그리드)
   ─────────────────────────────────────────────────────────── */
.resources {
  width: var(--container);
  max-width: 100%;
  display: flex;
  flex-direction: column;
}

.resources__heading {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
  margin: 0 0 32px;
  padding: 0 8px;
}

.resources__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 8px;
  margin-bottom: 40px;
}

.resources__toolbar--search-only {
  justify-content: flex-end;
}

.resources__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  appearance: none;
  border: 0;
  cursor: pointer;
  background: #F2F2F2;
  color: #555;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 10px 18px;
  border-radius: 999px;
  transition: background .15s, color .15s, transform .15s;
  white-space: nowrap;
  font-family: inherit;
}

.chip:hover {
  background: #E8E8E8;
  color: #222;
}

.chip.is-active {
  background: #1A1A1A;
  color: #fff;
}

.resources__search {
  position: relative;
  width: 360px;
  flex-shrink: 0;
}

.resources__search input {
  width: 100%;
  height: 40px;
  background: #F2F2F2;
  border: 0;
  border-radius: 999px;
  padding: 0 44px 0 20px;
  font-size: 14px;
  font-family: inherit;
  color: var(--ink);
  outline: none;
  transition: background .15s;
}

.resources__search input::placeholder {
  color: #9b9b9b;
}

.resources__search input:focus {
  background: #EAEAEA;
}

.resources__search-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #888;
  pointer-events: none;
}

.resources__empty {
  text-align: center;
  color: #888;
  font-size: 15px;
  padding: 80px 0;
  margin: 0;
}

.resources__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 32px;
}

.rcard {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.rcard__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1.6 / 1;
  border-radius: 12px;
  background: #F2F2F2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px 26px;
  overflow: hidden;
  transition: transform .25s ease;
}

.rcard:hover .rcard__thumb {
  transform: translateY(-2px);
}

.rcard__tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

.rcard__brand {
  align-self: flex-end;
  position: absolute;
  bottom: 22px;
  left: 26px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0.7;
}

.rcard__meta {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-mute, #777);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.rcard__cat {
  color: var(--ink, #111);
  font-weight: 700;
}

.rcard__sep {
  color: #ccc;
}

.rcard__title {
  margin: 0px 0 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: var(--ink, #111);
  word-break: keep-all;
}

.rcard__lede {
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: #666;
  word-break: keep-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rcard--enter {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}

.rcard--enter-active {
  opacity: 1;
  transform: translateY(0);
}

.resources__sentinel {
  width: 100%;
  height: 1px;
  margin-top: 80px;
}

/* ───────────────────────────────────────────────────────────
   FAQ (자주 묻는 질문)
   ─────────────────────────────────────────────────────────── */
.faq {
  width: var(--container);
  max-width: 100%;
  display: flex;
  flex-direction: column;
}

.faq__heading {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink, #111);
  margin: 0 0 56px;
}

.faq__search {
  position: relative;
  border-bottom: 1px solid #E5E5E5;
  padding: 18px 0 18px 36px;
  margin-bottom: 56px;
}

.faq__search-icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  color: #999;
  pointer-events: none;
}

.faq__search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink, #111);
  font-family: inherit;
  padding: 0;
}

.faq__search input::placeholder {
  color: #B5B5B5;
  font-weight: 500;
}

.faq__search input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.faq__layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  align-items: start;
}

.faq__sidebar {
  position: sticky;
  top: 100px;
  padding-top: 14px; /* 첫 질문 텍스트(28px)와 첫 카테고리(14px) 상단 정렬 보정 */
}

.faq__cats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-cat {
  display: block;
  width: calc(100% + 28px);
  margin-left: -14px;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 14px;
  font-size: 19px;
  font-weight: 600;
  color: #888;
  cursor: pointer;
  border-radius: 10px;
  font-family: inherit;
  letter-spacing: -0.02em;
  line-height: 1.5;
  transition: color .15s, background-color .15s;
}

.faq-cat:hover {
  color: #1A1A1A;
  background: #F5F5F5;
}

.faq-cat.is-active {
  color: #1A1A1A;
  font-weight: 700;
  background: transparent;
}

.faq__main {
  min-width: 0;
}

.faq__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ── FAQ 아코디언 (Q. 질문 + 화살표 / 펼치면 회색 박스 답변) ── */
.faq-item {
  border-bottom: 1px solid #ededed;
}

.faq-item__head {
  appearance: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.faq-item__q {
  font-size: 19px;
  font-weight: 500;
  color: var(--ink, #1a1a1a);
  letter-spacing: -0.02em;
  line-height: 1.5;
  word-break: keep-all;
}

.faq-item__chev {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  color: #555;
  transition: transform .25s ease;
}

.faq-item__chev svg {
  width: 100%;
  height: 100%;
  display: block;
}

.faq-item.is-open .faq-item__chev {
  transform: rotate(180deg);
}

.faq-item__answer {
  padding: 0 8px 28px;
}

.faq-item__answer-inner {
  background: #f5f5f5;
  border-radius: 14px;
  padding: 28px 30px;
  color: #444;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: -0.02em;
  white-space: normal;
  word-break: keep-all;
}

.faq-answer-img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 16px 0;
}

.faq__empty {
  text-align: center;
  color: #888;
  font-size: 15px;
  padding: 80px 0;
  margin: 0;
}

.faq__pagination {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.pag-btn {
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border: 0;
  background: transparent;
  color: #666;
  font-size: 16px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color .15s, color .15s;
}

.pag-btn:hover:not(:disabled) {
  color: #1A1A1A;
}

.pag-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.pag-btn.is-active {
  background: #F2F2F2;
  color: #1A1A1A;
  font-weight: 700;
}

.pag-btn--arrow {
  color: #999;
}

/* ───────────────────────────────────────────────────────────
   PAGINATION (notice list bottom)
   ─────────────────────────────────────────────────────────── */
.pagination {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-left: -8px;
  color: var(--ink-mute);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}

.pagination__arrow,
.pagination__page {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: inherit;
  text-decoration: none;
  border-radius: 6px;
  cursor: pointer;
  transition: color .15s, background .15s;
}

.pagination__page:hover {
  color: var(--ink);
  background: #F3F3F3;
}

.pagination__page.is-active {
  color: var(--ink-strong);
  font-weight: 700;
}

.pagination__arrow {
  color: var(--ink);
  padding: 0;
}

.pagination__arrow:hover:not(:disabled) {
  background: #F3F3F3;
}

.pagination__arrow:disabled {
  opacity: .35;
  cursor: default;
}

.pagination__ellipsis {
  width: 28px;
  text-align: center;
  color: var(--ink-mute);
  user-select: none;
}

/* ───────────────────────────────────────────────────────────
   COMPANY CERTIFICATIONS
   ─────────────────────────────────────────────────────────── */
.certs {
  width: var(--container);
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
}

.certs__heading {
  text-align: left;
  margin: 0;
}

.certs__nav {
  justify-content: flex-start;
}

.certs__lede {
  margin: 20px 0 64px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.03em;
  color: #555;
  word-break: keep-all;
}

.certs__grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: max(40px, (100vw - var(--container)) / 2);
  padding: 4px 0 28px;
  margin-left: calc(-1 * max(40px, (100vw - var(--container)) / 2));
  margin-right: calc(-1 * max(40px, (100vw - var(--container)) / 2));
  padding-left: max(40px, (100vw - var(--container)) / 2);
  padding-right: max(40px, (100vw - var(--container)) / 2);
  scrollbar-width: none;
}

.certs__grid::-webkit-scrollbar {
  display: none;
}

.cert {
  position: relative;
  flex: 0 0 360px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  min-height: 460px;
  border: none;
  border-radius: 20px;
  padding: 40px 36px;
  background: #f5f5f7;
  transition: transform .25s ease;
}

.cert:hover {
  transform: translateY(-4px);
}

.cert__tag {
  margin: 0 0 16px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #6e6e73;
}

.cert__title {
  margin: 0 0 0;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: #1d1d1f;
  word-break: keep-all;
  white-space: pre-line;
}

/* 제목 안의 모바일 전용 줄바꿈 — 데스크톱은 폭이 넉넉해 그대로 흘린다 */
.cert__title .cert-br { display: none; }

.cert__desc {
  margin: 16px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #6e6e73;
  word-break: keep-all;
  white-space: pre-line;
}

.cert__add {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1d1d1f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  transition: transform .2s ease, background .2s ease;
  pointer-events: none;
}

.cert:hover .cert__add {
  transform: scale(1.08);
}

.cert__logo {
  position: absolute;
  left: 50%;
  bottom: 76px;
  transform: translateX(-50%);
  width: 132px;
  height: 132px;
  object-fit: contain;
  border-radius: 28px;
}

@media (max-width: 900px) {
  .cert {
    flex-basis: 300px;
  }
}

.certs__nav {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 36px;
}

.certs__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #d2d2d7;
  background: #fff;
  color: #1d1d1f;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease, opacity .2s ease;
}

.certs__arrow:hover {
  background: #f5f5f7;
}

.certs__arrow:disabled {
  opacity: .3;
  cursor: default;
}

/* ───────────────────────────────────────────────────────────
   FOOTER (dark)
   ─────────────────────────────────────────────────────────── */
.cert {
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  appearance: none;
}

/* cert detail modal */
.cert-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
}

.cert-modal[aria-hidden="false"] {
  display: block;
}

.cert-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  animation: certFade .2s ease;
}

.cert-modal__panel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(560px, calc(100vw - 48px));
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .3);
  animation: certRise .24s ease;
}

@keyframes certFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes certRise {
  from {
    opacity: 0;
    transform: translate(-50%, -46%);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.cert-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(0, 0, 0, .05);
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  color: #555;
  cursor: pointer;
  z-index: 2;
}

.cert-modal__close:hover {
  background: rgba(0, 0, 0, .1);
}

.cert-modal__media {
  width: 100%;
  min-height: 120px;
  background: #f0f0f2;
  border-radius: 16px 16px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cert-modal__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0.94);
}

.cert-modal__media-ph {
  font-size: 13px;
  letter-spacing: .14em;
  font-weight: 600;
  color: var(--ink-faint);
}

.cert-modal__body {
  padding: 36px 40px 44px;
  background: #fff;
}

.cert-modal__tag {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  color: #2f6bff;
}

.cert-modal__title {
  margin: 0 0 16px;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.cert-modal__detail {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: -0.03em;
  color: #555;
  word-break: keep-all;
  white-space: pre-line;
}

/* ───────────────────────────────────────────────────────────
   FOOTER (dark)
   ─────────────────────────────────────────────────────────── */
.footer {
  width: 100%;
  background: #1a1a1a;
  color: #e6e6e6;
  padding: 120px max(var(--gutter), calc((100% - var(--container)) / 2)) 96px;
  display: flex;
  flex-direction: column;
  gap: 120px;
  align-items: stretch;
}

/* CTA row */
.footer__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer__cta-text {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0;
  white-space: pre-line;
  word-break: keep-all;
}

.footer__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 26px 44px;
  background: #fff;
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .15s ease, background-color .15s ease;
  white-space: nowrap;
}

.footer__cta-btn:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
}

.footer__cta-btn-arrow {
  font-size: 20px;
  line-height: 1;
}

/* Column menu grid */
.footer__menu {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__col-title {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  margin: 0 0 4px 0;
}

.footer__col-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col-links a {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #fff;
  text-decoration: none;
  transition: color .15s ease;
}

.footer__col-links a:hover {
  color: #999;
}

/* Bottom row: company info + social */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-top: -60px;
}

.footer__inner {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  text-align: left;
}

.footer__company {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0;
}

.footer__info {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: -0.02em;
  color: #888;
  word-break: keep-all;
  margin: 0;
}

/* 항목별 <span> — 구분자는 CSS 로 넣어 텍스트에 섞이지 않게 한다.
   한 항목이 통째로 줄바꿈되므로 '|' 가 줄 끝에 홀로 남지 않는다.
   줄바꿈은 span 사이의 실제 공백에서만 일어난다(구분자 자체는 붙어 다님). */
.footer__info span {
  white-space: nowrap;
}

/* 주소는 한 줄에 안 들어가므로 이 항목만 줄바꿈 허용 */
.footer__info span:first-child {
  white-space: normal;
}

/* 구분자는 '앞 항목 뒤'에 붙인다. 뒤 항목 앞(::before)에 두면
   줄이 바뀔 때 '|' 가 다음 줄 맨 앞에 홀로 남는다. */
.footer__info span:not(:last-child)::after {
  content: "|";
  margin-left: 5px;
  color: #6a6a6a;
}

/* Social icons */
.footer__social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer__social a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .16);
  color: #e6e6e6;
  transition: background-color .15s ease, border-color .15s ease;
}

.footer__social a:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .32);
}

.footer__social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Copy line */
.footer__copy {
  width: 100%;
  margin: -88px 0 0 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #999;
}

/* ───────────────────────────────────────────────────────────
   BLACK STATEMENT SECTION (product page)
   ─────────────────────────────────────────────────────────── */
.statement {
  width: 100%;
  min-height: 364px;
  background: var(--bg-invert);
  color: var(--ink-invert);
  padding: 0 max(var(--gutter), calc((100% - var(--container)) / 2));
  display: flex;
  align-items: center;
  justify-content: center;
}

.statement__text {
  width: var(--container);
  font-size: 42px;
  font-weight: 700;
  line-height: 52px;
  letter-spacing: -0.04em;
  color: #fff;
  white-space: pre-line;
  word-break: keep-all;
  margin: 0;
}

/* 중앙 정렬 위계형 statement (product) */
.statement--stack {
  min-height: 420px;
  background: #05070f url("images/check-band.png?v=2") center / cover no-repeat;
}

.statement__check {
  display: none;
}

.statement__headline em {
  font-style: normal;
}

.statement__inner {
  width: var(--container);
  max-width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.statement__sub {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.04em;
  color: #fff;
  word-break: keep-all;
}

.statement__headline {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.04em;
  color: #fff;
  word-break: keep-all;
}

.statement__caption {
  margin: 26px 0 0;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #6e6e73;
}

/* ───────────────────────────────────────────────────────────
   공지사항 행 리스트 (토스 스타일)
   ─────────────────────────────────────────────────────────── */
.resources__grid.notice-list {
  display: block;
}

.nrow {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 32px;
  padding: 44px 4px;
  text-decoration: none;
  border-bottom: 1px solid #ececf0;
  transition: opacity 0.15s ease;
}

.nrow:hover {
  opacity: 0.6;
}

.nrow__title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: #333333;
  word-break: keep-all;
}

.nrow__date {
  flex-shrink: 0;
  font-size: 17px;
  font-weight: 500;
  color: #86868b;
}

/* FAQ 검색 제안 드롭다운 */
.faq-suggest {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: #fff;
  border: 1px solid #ececf0;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  max-height: 480px;
  overflow-y: auto;
  z-index: 30;
}

.faq-suggest__item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 18px 24px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  background: none;
  border: 0;
  cursor: pointer;
  word-break: keep-all;
}

.faq-suggest li + li .faq-suggest__item {
  border-top: 1px solid #f2f2f4;
}

.faq-suggest__item:hover {
  background: #f7f7f9;
}

/* ───────────────────────────────────────────────────────────
   RESPONSIVE (simple — scale 1920 container)
   keep design as-is; just center it.
   ─────────────────────────────────────────────────────────── */
/* ─── small viewports: keep a horizontal scroll at 1280 min ─── */
@media (max-width: 1280px) {

  html,
  body {
    overflow-x: auto;
  }
}


/* ───────── Company History — chevron timeline (brand.html) ───────── */
.chevron-history-section {
  padding: 160px 0 200px;
  background: #FFFFFF;
}

.chevron-history-container {
  width: var(--container);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0;
  display: block;
}

.chevron-history__heading {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #1A1A1A;
  margin: 0 0 80px;
  line-height: 1;
}

.chevron-history {
  --chev-teal: #6E8B9B;
  --chev-teal-deep: #4A6A7A;
  --chev-teal-dark: #3F5967;
  --chev-teal-darker: #365160;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 0;
  row-gap: 32px;
  align-items: start;
}

.chevron-history__icons {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  justify-items: center;
  padding-bottom: 18px;
}

.chevron-history__icon {
  width: 56px;
  height: 56px;
  color: #8097A5;
}

.chevron-history__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* chevron bar: single row of arrow-shaped blocks */
.chevron-history__bar {
  grid-column: 1 / -1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 56px;
}

.chevron-history__step {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
  /* chevron shape: pointed right + notch on left (except first) */
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%, 20px 50%);
  margin-left: -20px;
  padding: 0 20px;
}

.chevron-history__step:first-child {
  /* no left notch */
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
  margin-left: 0;
}

.chevron-history__step:nth-child(1) {
  background: var(--chev-teal);
  z-index: 4;
}

.chevron-history__step:nth-child(2) {
  background: var(--chev-teal-deep);
  z-index: 3;
}

.chevron-history__step:nth-child(3) {
  background: var(--chev-teal-dark);
  z-index: 2;
}

.chevron-history__step:nth-child(4) {
  background: var(--chev-teal-darker);
  z-index: 1;
}

.chevron-history__year {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

/* bullet lists beneath chevrons */
.chevron-history__notes {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 0;
  padding-top: 20px;
}

.chevron-history__list {
  list-style: none;
  margin: 0;
  padding: 0 24px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: #1A1A1A;
  word-break: keep-all;
}

.chevron-history__list li {
  position: relative;
  padding-left: 14px;
  text-indent: -14px;
}

.chevron-history__hash {
  color: #6E8B9B;
  font-weight: 700;
  margin-right: 4px;
}

/* ───────────────────────────────────────────────────────────
   DISTRIBUTION INQUIRY (유통문의)
   ─────────────────────────────────────────────────────────── */
.dist__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  width: 100%;
  margin: 0 auto;
  align-items: start;
}

/* LEFT — copy column */
.dist__copy {
  padding-top: 8px;
}

.dist__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.dist__title {
  margin: 0 0 32px;
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink-strong);
}

.dist__lede {
  margin: 0 0 80px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-mute);
  letter-spacing: -0.02em;
  word-break: keep-all;
}

.dist__points {
  list-style: none;
  margin: 0 0 80px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-top: 1px solid var(--line);
  padding-top: 40px;
}

.dist__points li {
  display: block;
}

.dist__points-title {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-strong);
  letter-spacing: -0.02em;
}

.dist__points-desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-mute);
  letter-spacing: -0.01em;
  word-break: keep-all;
}

.dist__direct {
  border-top: 1px solid var(--line);
  padding-top: 32px;
}

.dist__direct-label {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
  text-transform: uppercase;
}

.dist__direct-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink-strong);
  letter-spacing: -0.01em;
}

.dist__direct-row:hover {
  color: var(--ink-mute);
}

.dist__direct-icon {
  width: 22px;
  height: 22px;
  color: var(--ink-mute);
  flex: 0 0 22px;
}

.dist__direct-icon svg {
  width: 100%;
  height: 100%;
}

/* RIGHT — form */
.dist__formwrap {
  background: var(--bg-soft);
  border-radius: 24px;
  padding: 56px 48px;
}

.dist__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* fields */
.dist-field {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 0 20px;
  height: 60px;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.dist-field:focus-within {
  border-color: var(--ink-strong);
  box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.06);
}

.dist-field__icon {
  width: 22px;
  height: 22px;
  color: var(--ink-faint);
  flex: 0 0 22px;
  margin-right: 14px;
}

.dist-field__icon svg {
  width: 100%;
  height: 100%;
}

.dist-field__icon--top {
  align-self: flex-start;
  margin-top: 18px;
}

.dist-field input,
.dist-field select,
.dist-field textarea {
  flex: 1;
  /* flex 항목은 기본값이 min-width:auto 라 input 의 기본 폭(약 20자) 밑으로
     줄지 않는다. 좁은 화면에서 이것이 상자 전체를 화면 밖으로 밀어냈다. */
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  font: inherit;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-strong);
  letter-spacing: -0.01em;
  padding: 0;
  -webkit-appearance: none;
  appearance: none;
}

.dist-field input::placeholder,
.dist-field textarea::placeholder {
  color: var(--ink-faint);
  font-weight: 500;
}

.dist-field select {
  cursor: pointer;
  padding-right: 36px;
}

.dist-field select:invalid {
  color: var(--ink-faint);
  font-weight: 500;
}

.dist-field select option {
  color: var(--ink-strong);
}

.dist-field__req {
  color: #E84B4B;
  font-size: 14px;
  margin-left: 4px;
  align-self: center;
  flex: 0 0 auto;
}

/* floating placeholder label (so asterisk can sit RIGHT next to the text) */
.dist-field__label {
  position: absolute;
  left: 56px;
  /* 20px padding + 22px icon + 14px margin */
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-faint);
  letter-spacing: -0.01em;
  pointer-events: none;
  transition: opacity .15s ease;
}

.dist-field__label-text {
  color: var(--ink-faint);
}

.dist-field__label .dist-field__req {
  margin-left: 4px;
}

.dist-field input:not(:placeholder-shown)~.dist-field__label,
.dist-field input:focus~.dist-field__label,
.dist-field:has(input:not(:placeholder-shown)) .dist-field__label,
.dist-field:has(input:focus) .dist-field__label {
  opacity: 0;
}

.dist-field__caret {
  position: absolute;
  right: 20px;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  color: var(--ink-mute);
  pointer-events: none;
}

.dist-field__caret svg {
  width: 100%;
  height: 100%;
}

.dist-field--textarea {
  align-items: flex-start;
  height: auto;
  padding: 0 20px;
}

.dist-field--textarea textarea {
  padding: 18px 0;
  min-height: 120px;
  resize: none;
  line-height: 1.6;
  font-family: inherit;
}

/* custom dropdown */
.dist-field--dropdown {
  display: block;
  position: relative;
  padding: 0;
  height: auto;
  background: transparent;
  border: 0;
  box-shadow: none !important;
}

.dist-field--dropdown:focus-within {
  box-shadow: none;
}

.dist-field__trigger {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 60px;
  padding: 0 20px;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 14px;
  font: inherit;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-strong);
  letter-spacing: -0.01em;
  text-align: left;
  cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.dist-field--dropdown.is-open .dist-field__trigger {
  border-color: var(--ink-strong);
  box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.06);
}

.dist-field__value {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dist-field__value.is-placeholder {
  color: var(--ink-faint);
  font-weight: 500;
}

.dist-field--dropdown .dist-field__caret {
  transition: transform .2s ease;
}

.dist-field--dropdown.is-open .dist-field__caret {
  transform: translateY(-50%) rotate(180deg);
}

.dist-field__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  margin: 0;
  padding: 12px 0;
  list-style: none;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 40px -8px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
  z-index: 10;
  max-height: 360px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
}

.dist-field--dropdown.is-open .dist-field__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dist-field__menu li {
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-strong);
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: background-color .12s ease;
}

.dist-field__menu li:hover,
.dist-field__menu li.is-selected {
  background: var(--bg-soft);
}

/* agreement */
.dist-agree {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 4px 8px;
}

.dist-check {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.dist-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.dist-check__box {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1.5px solid var(--line-mute);
  background: #fff;
  flex: 0 0 20px;
  position: relative;
  transition: background-color .15s ease, border-color .15s ease;
}

.dist-check input:checked+.dist-check__box {
  background: var(--ink-strong);
  border-color: var(--ink-strong);
}

.dist-check input:checked+.dist-check__box::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.dist-check__label {
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.dist-check__label b {
  font-weight: 600;
  color: var(--ink-strong);
}

.dist-check__link {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--ink-strong);
}

.dist-check--all .dist-check__label {
  font-weight: 600;
  color: var(--ink-strong);
}

.dist-check--all {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 4px;
}

/* submit */
.dist-submit {
  margin-top: 20px;
  height: 68px;
  border-radius: 14px;
  background: var(--ink-strong);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: transform .15s ease, background-color .15s ease;
}

.dist-submit:hover {
  background: #000;
  transform: translateY(-1px);
}

.dist-submit__arrow {
  font-size: 19px;
}

/* ========== Scroll reveal ========== */
@keyframes fxRise {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fx-rise {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
}

.fx-rise.fx-on {
  animation: fxRise 1.4s cubic-bezier(.2, .7, .2, 1) both;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* ───────────────────────────────────────────────────────────
   TABLET / 저해상도 노트북 (769px ~ 1280px)
   1024px 고정 컨테이너보다 좁은 화면에서 텍스트가 화면에 비해
   상대적으로 커 보이는 문제 보정 — 데스크톱과 모바일 사이 중간 단계
   ─────────────────────────────────────────────────────────── */
@media (max-width: 1280px) and (min-width: 769px) {
  :root {
    --gutter: 28px;
  }

  .hero__title--xl { font-size: 58px; line-height: 1.3; }
  .hero__title--lg { font-size: 48px !important; line-height: 1.3 !important; }
  .hero__title--md { font-size: 38px !important; line-height: 1.35 !important; }

  .hero--product .hero__inner--bottom {
    padding: 100px 40px 60px !important;
  }

  .section-title--xl { font-size: 40px; }
  .section-title--md { font-size: 40px; }
  .section-title--lg { font-size: 34px; line-height: 1.35; }

  .feature-carousel__title { font-size: 36px; }
  .fcard { flex: 0 0 640px; }

  .big-feature__title { font-size: 48px; }
  .big-feature__lede { font-size: 20px; line-height: 1.55; }
  .big-feature__media { height: 420px; }
  .big-feature__media--split .split-tile { height: 480px; }

  .video-banner__text h3 { font-size: 26px; }
  .video-banner__media { min-height: 260px; }
  .video-banner__media img { transform: none; object-position: center; }

  .footer__cta-text { font-size: 32px; }
  .footer__menu { grid-template-columns: repeat(4, 1fr); gap: 24px; }

  .dist__title { font-size: 56px; }

  .parts-card { padding: 90px 0 180px; }
  .spec-card { padding: 120px 40px 90px; }

  .value-card__title { font-size: 28px; }
  .certs__heading { font-size: 40px !important; }

  .resources__heading { font-size: 40px; }
  .faq__heading { font-size: 40px !important; }
}

/* ───────────────────────────────────────────────────────────
   MOBILE (≤768px) — 모든 페이지 공통 (viewport는 device-width로
   설정되어 있어 실제 기기 폭에서만 이 구간에 진입함)
   ─────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --gutter: 16px;
  }

  /* NAV — 데스크톱 드롭다운/언어 토글 숨기고 햄버거로 전환 */
  .nav__links,
  .nav__lang {
    display: none;
  }

  .nav__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: var(--ink-strong);
  }

  .nav__burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: transform .2s ease, opacity .2s ease;
  }

  .nav--invert .nav__burger,
  .nav--on-dark .nav__burger {
    color: #fff;
  }

  .nav__burger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav__burger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav__burger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav__mobile-panel {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    padding: 8px 24px 40px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility 0s linear .3s;
    z-index: 90;
  }

  .nav__mobile-panel.is-open {
    opacity: 1;
    visibility: visible;
    transition: opacity .3s ease, visibility 0s linear 0s;
  }

  .nav__mobile-screen {
    display: none;
    flex-direction: column;
  }

  .nav__mobile-screen.is-active {
    display: flex;
  }

  .nav__mobile-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
    border-bottom: 0;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink-strong);
    background: none;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    text-align: left;
    font-family: inherit;
    cursor: pointer;
  }

  .nav__mobile-row:last-child {
    border-bottom: none;
  }

  .nav__mobile-chevron {
    width: 16px;
    height: 16px;
    color: #bbb;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity .15s ease;
  }

  .nav__mobile-row:hover .nav__mobile-chevron {
    opacity: 1;
  }

  .nav__mobile-back {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 16px 0 24px;
    font-size: 15px;
    font-weight: 600;
    color: #666;
    background: none;
    border: 0;
    font-family: inherit;
    cursor: pointer;
  }

  .nav__mobile-back svg {
    width: 18px;
    height: 18px;
  }

  /* 메뉴 안의 언어 전환 — 메뉴 항목과 섞이지 않게 선을 긋고 작게 둔다 */
  .nav__mobile-lang {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, .08);
  }

  .nav__mobile-lang-link {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .02em;
    color: #86868b;
    text-decoration: none;
    padding: 6px 0;
  }

  .nav__mobile-lang-link.is-current {
    color: var(--ink-strong);
  }

  .nav__mobile-lang-div {
    width: 1px;
    height: 12px;
    background: rgba(0, 0, 0, .18);
  }

  /* 메뉴가 열린 동안 뒤 페이지가 움직이지 않게 잠근다.
     body 에만 걸면 실제 스크롤 주체는 html 이라 그대로 밀린다. */
  html:has(body.nav-mobile-open) {
    overflow: hidden;
  }

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

  /* 메뉴 안에서 끝까지 밀어도 뒤 페이지로 스크롤이 옮겨붙지 않게 */
  .nav__mobile-panel {
    overscroll-behavior: contain;
  }

  /* 메뉴 열렸을 때 헤더도 흰 배경으로 고정 — 뒤에 히어로 이미지/영상이 비치지 않게 */
  body.nav-mobile-open nav.nav {
    background: #fff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom-color: rgba(0, 0, 0, .06) !important;
  }

  body.nav-mobile-open nav.nav .nav__logo {
    background-image: url(./assets/mvitro-logo-light.png?v=2) !important;
    filter: none !important;
  }

  body.nav-mobile-open nav.nav .nav__burger {
    color: var(--ink-strong) !important;
  }

  /* CSS scroll-snap 은 여기서 무력하다: 스냅 영역이 화면보다 크거나 같으면
     브라우저가 스냅을 강제하지 않는데, 히어로가 정확히 100svh 라 항상 그 조건에 걸린다.
     (80/300/500/700px 어디로 스크롤해도 그대로 머무는 것을 확인)
     그래서 히어로→다음 섹션 이동은 hero-snap.js 가 담당한다. */

  /* HERO — 첫 화면은 뷰포트를 꽉 채운다.
     svh 를 쓰면 주소창이 접힐 때 높이가 튀지 않는다(dvh 는 스크롤 중 리플로우). */
  .hero--tall {
    aspect-ratio: auto;
    height: 100vh;
    height: 100svh;
    min-height: 460px;
    max-height: none;
  }

  /* 한글 볼드에 -0.04em 는 너무 좁아 자간/행간을 함께 푼다 */
  .hero__title--xl {
    font-size: 48px;
    line-height: 1.45;
    letter-spacing: -0.02em;
  }

  /* 모바일은 세로로 잘려 화면 가운데가 더 크게 확대된다.
     새 랜딩 영상은 그 자리가 햇빛 받는 밝은 부분이라
     데스크톱보다 한 단계 더 덮어야 제목이 읽힌다. */
  /* 모바일은 세로로 잘려 흰 본체가 더 크게 잡히므로 타원만 한 단계 진하게 */
  .hero--tall.hero--scrim::before {
    background:
      radial-gradient(
        ellipse 92% 21% at 50% 50%,
        rgba(0, 0, 0, 0.42) 0%,
        rgba(0, 0, 0, 0.25) 55%,
        rgba(0, 0, 0, 0) 100%
      ),
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.42) 0%,
        rgba(0, 0, 0, 0.22) 9%,
        rgba(0, 0, 0, 0.04) 20%,
        rgba(0, 0, 0, 0) 32%
      );
  }

  /* FEATURE CAROUSEL */
  .feature-carousel {
    padding: 120px 0 !important;
  }

  .feature-carousel__title {
    font-size: 32px;
  }

  .feature-carousel__head {
    margin-bottom: 32px;
  }

  .fcard {
    flex: 0 0 84vw;
    display: flex;
    flex-direction: column;
    aspect-ratio: auto;
    background: none;
    overflow: visible;
    border-radius: 0;
  }

  /* 제품 페이지의 .big-feature__media(343×360)와 같은 비율로 맞춘다 */
  .fcard__img {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 343 / 360;
    border-radius: 20px;
  }

  .fcard__scrim {
    display: none;
  }

  /* 세로로 크게 잘리는 영상이라 기기가 왼쪽으로 쏠린다.
     제품 페이지의 같은 영상과 같은 값으로 맞춘다. */
  .fcard__img:has(source[src="images/feature-2.mp4"]) {
    object-position: 20% center;
  }

  .fcard__caption {
    position: static;
    padding: 12px 4px 0;
    font-size: 18px;
    color: #666666 !important;
    -webkit-text-fill-color: #666666 !important;
  }

  .feature-carousel__arrow {
    width: 40px;
    height: 40px;
  }

  /* FOOTER */
  .footer {
    gap: 64px;
    padding-top: 80px !important;
    padding-bottom: 48px !important;
  }

  .footer__cta {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }

  .footer__cta-text {
    font-size: 26px;
  }

  .footer__cta-btn {
    padding: 18px 28px;
    font-size: 16px;
  }

  .footer__menu {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 24px;
    margin-top: 0;
  }

  .footer__info {
    width: auto !important;
    max-width: 100%;
  }

  /* 모바일에서도 웹과 같이 '|' 로 이어 쓰되, 폭이 모자라면 항목 단위로 넘어간다.
     (span 에 white-space: nowrap 이 걸려 있어 항목 중간에서는 끊기지 않는다) */

  .footer__copy {
    margin-top: 0;
  }

  /* ── generic .section wrapper (news/ir/press/faq/support/resources/
     distribution/brand) — normalizes the many inline paddings sitewide ── */
  /* 섹션 경계에서는 위/아래 패딩이 더해지므로 값 그대로가 아니라 2배로 벌어진다.
     40px → 경계 80px. */
  .section {
    padding: 40px max(var(--gutter), calc((100% - var(--container)) / 2)) 40px !important;
  }

  /* HERO variants used on inner pages */
  .hero--short {
    aspect-ratio: auto;
    height: 100vh;
    height: 100svh;
    min-height: 460px;
    max-height: none;
  }

  .hero--product {
    height: 100vh;
    height: 100svh;
    min-height: 620px;
  }

  /* 히어로 제목은 세 페이지 모두 42px — 섹션 제목(32px)과 한 단계 차이를 둔다 */
  /* 섹션 제목이 32px 이라 36px 로는 위계가 안 선다.
     전면 사진/영상 히어로라는 성격이 같은 랜딩(42px)에 맞춘다. */
  .hero__title--md {
    font-size: 42px !important;
    line-height: 1.45 !important;
    letter-spacing: -0.02em !important;
    text-align: center !important;
  }

  /* 랜딩 영상 히어로처럼 화면 정중앙에 */
  .hero--short .hero__inner--bottom {
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-bottom: 0;
  }

  /* 자간은 원래대로 -0.04em (브랜드 히어로만 -0.02em 로 풀어둔 것이라 여기엔 적용하지 않음) */
  .hero__title--lg {
    font-size: 47px !important;
    line-height: 1.25 !important;
    letter-spacing: -0.04em !important;
  }

  .hero__inner--bottom {
    padding-bottom: 40px;
  }

  /* 기기 크기를 화면 높이에 비례시킨다(짧은 화면은 600px 하한).
     812px 화면에서는 텍스트가 내비 아래로 내려오지 않는 한계가 약 610px 이라
     사실상 그대로이고, 화면이 길수록 커진다. */
  /* 기기 크기를 화면 높이에 '비례'시키면 글자와 부딪히는지는 알 수 없다.
     그래서 반대로 역산한다 — 글자 블록이 끝나는 지점에서 60px 아래에
     손이 시작하도록 기기 높이를 정한다. 어떤 화면 높이에서도 간격이 같다.

       내비 70 + 위 여백 24 + 글자 블록 약 181 + 손까지 60 = 335
       손이 보이기 시작하는 곳 = 화면아래에서 0.819 x 기기높이
       => 기기높이 = (화면높이 - 335) / 0.819 = 1.221 x (화면높이 - 335) */
  .hero--product {
    --device-h: clamp(300px, 75vh, 800px);
    --device-h: clamp(300px, calc(1.221 * (100svh - 335px)), 800px);
  }

  /* 위에서 띄우면 화면이 길수록 기기와의 간격이 벌어진다.
     아래(기기)를 기준으로 붙여 어떤 화면 높이에서도 간격이 일정하게 유지되도록.
     기기 렌더 높이 중 위 18.1% 는 빈 배경이므로 손이 보이는 위치는
     화면 아래에서 0.819 × 기기높이. 여기에 여유 52px 를 더한다. */
  /* 글자는 내비 바로 아래에 고정한다. 아래 여백으로 밀어 올리던 방식은
     화면 높이에 따라 헤더를 뚫거나 기기를 덮어 둘 다 어긋났다. */
  .hero--product .hero__inner--bottom {
    justify-content: flex-start !important;
    padding: calc(var(--nav-h) + 24px) 16px 0 !important;
  }

  /* 원본 1659x948, 위 18% 는 빈 배경이라 손은 렌더 높이의 81.9% 지점부터 보인다. */
  .hero--product .hero__image--contain {
    object-fit: cover;
    object-position: center bottom;
    padding: calc(100vh - var(--device-h)) 0 0;
    padding: calc(100svh - var(--device-h)) 0 0;
    transform: none;
  }

  /* 공통 L2 는 32px 이지만 브랜드만 30px 로 둔다.
     '엠비트로는 건강을…' 을 2줄로 지키는 상한이 30px 이라
     문장형 제목이 많은 이 페이지에 한해 한 칸 낮춘다.
     (같은 페이지의 연혁·인증 제목도 아래에서 같은 30px 로 맞춘다) */
  .section-title--md {
    font-size: 30px !important;
  }

  .section:has(.value-grid) {
    padding: 120px 16px 100px !important;
  }

  .section:has(.value-grid) > .container {
    gap: 36px !important;
    align-items: stretch !important;
  }

  /* 섹션 제목은 모두 중앙 정렬 */
  .section-title--md {
    text-align: center !important;
  }

  /* HTML 의 줄바꿈('일을' 뒤)을 그대로 살린다 (크기는 위 공통 25px 사용) */
  .section:has(.value-grid) .section-title--md {
    white-space: pre-line;
  }

  .section--soft:has(.history) {
    align-items: stretch;
    gap: 40px !important;
    padding-top: 100px !important;
  }

  .section-title--xl {
    font-size: 32px;
  }

  /* ── brand.html: value grid ── */
  .feature-grid,
  .value-grid {
    grid-template-columns: 1fr !important;
  }

  /* 카드 사이는 좁게(20px) 두고, 카드 안쪽은 넉넉히. */
  .value-card {
    padding: 36px 32px;
    min-height: 0;
  }

  /* 네 번째 카드만 문장이 길어 두 줄이 각각 또 넘어간다(=네 줄).
     여기서는 원고의 줄나눔을 버리고 문단으로 흐르게 둔다. */
  .value-grid .value-card:nth-child(4) .value-card__desc {
    white-space: normal;
  }

  .value-grid {
    row-gap: 20px !important;
  }

  /* 제목 24 / 본문 20 은 4px 차이뿐이라 위계가 약했다.
     섹션 27 → 카드 제목 20 → 본문 17 로 단계를 벌리고, 본문은 행간을 넉넉히. */
  .value-card__title {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 18px;
  }

  /* 본문에 박힌 하드 줄바꿈 때문에 줄이 짧게 끊겨 우측이 빈다.
     줄바꿈을 풀고 balance 로 두 줄 길이를 맞춘다(제목의 줄바꿈은 유지).
     짧은 문장이라 pretty 로는 249/94 처럼 둘째 줄만 남는다 → balance 는 174/170. */
  /* 애플 제품 페이지처럼 '시원하게' 읽히는 조건은 크기보다 행간과 명암이다.
     행간 1.45 는 한글 본문에 빡빡하고, #6e6e73 는 배경(#f5f5f7) 위에서 흐리다.
     제목은 오히려 조여서(1.3) 제목=단단 / 본문=여유 대비를 만든다. */
  /* HTML 에 문장 단위로 줄바꿈이 들어 있다('…않습니다.' 뒤).
     normal 로 두면 그게 무시돼 문장 중간에서 끊긴다. pre-line 으로 살린다. */
  .value-card__desc {
    font-size: 19px;
    line-height: 1.5;
    color: #3f3f44;
    white-space: pre-line;
    text-wrap: wrap;
  }

  /* ── brand.html: history timeline ── */
  .history {
    grid-template-columns: 64px 1fr !important;
    gap: 12px !important;
    padding: 40px 16px 40px 28px !important;
    min-height: 0;
  }

  .history__years {
    gap: 36px;
  }

  .history__years > li {
    grid-template-columns: 1fr 14px !important;
    column-gap: 16px !important;
  }

  /* 데스크톱은 아래 여백이 120px라 -80px 꼬리가 카드 안에 들어가지만,
     모바일은 여백이 40px뿐이라 선이 카드 밖으로 삐져나온다 */
  .history__years::before {
    right: 6.5px !important;   /* 1px 선의 중심을 점 중심(우측 7px)에 맞춤 */
    bottom: 0 !important;
    width: 1px !important;
  }

  .history__year-label {
    width: auto;
    min-width: 0;
    font-size: 15px;
  }

  .history__dot {
    width: 10px;
    height: 10px;
  }

  /* 연도(15px)와 이벤트 날짜(18px)의 행 중심이 5.5px 어긋나 있어 보정 */
  .history__events {
    padding-top: 0;
    margin-top: -1.5px;
  }

  .history__event-title {
    font-size: 16px;
    font-weight: 500;
  }

  /* 날짜는 보조 정보 — 제목과 크기가 비슷하면 세 줄이 서로 경쟁한다 */
  .history__event-date {
    font-size: 13px;
    margin-bottom: 2px;
  }

  /* 같은 연도 안의 항목 간격 (데스크톱 32px 은 모바일에서 과하다) */
  .history__events,
  #history-events {
    gap: 18px;
  }

  /* ── brand.html: certs carousel ── */
  .certs__grid {
    gap: 16px;
  }

  /* 애플 카드의 타입 스케일만 차용 — 라벨(작은 회색) → 제목(굵게) → 본문(작은 회색).
     배경·버튼 색은 기존 그대로 둔다. */
  .cert {
    flex-basis: 78vw;
    min-height: 380px;
    padding: 28px 24px;
  }

  .cert__tag {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 10px;
  }

  .cert__desc {
    margin-top: 10px;
    text-wrap: wrap;
  }

  /* 텍스트 '+' 글리프는 폰트 기준선 때문에 원 안에서 살짝 위로 뜨고 획도
     가늘어 미완성처럼 보인다. 두 개의 막대로 직접 그려 광학 중심에 맞춘다. */
  .cert__add {
    width: 36px;
    height: 36px;
    right: 20px;
    bottom: 20px;
    font-size: 0;
  }

  .cert__add::before,
  .cert__add::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: currentColor;
    border-radius: 1px;
  }
  .cert__add::before {
    width: 14px;
    height: 2px;
    transform: translate(-50%, -50%);
  }
  .cert__add::after {
    width: 2px;
    height: 14px;
    transform: translate(-50%, -50%);
  }

  /* 160px 기준으로 잡은 인라인 radius 30px 은 108px 로 줄어든 로고에서
     지나치게 둥글어 보인다. 같은 비율(약 1/5)로 낮춘다. */
  .cert__logo {
    width: 108px !important;
    height: 108px !important;
    border-radius: 20px !important;
    bottom: 64px;
  }

  /* 앞 섹션(연혁)과 붙어 보여 이 섹션만 상단 여백을 키운다 */
  .section:has(.certs) {
    padding-top: 100px !important;
  }

  /* 인라인 margin-bottom:60px 을 다른 섹션 제목과 같은 40px 로 */
  .certs__heading {
    margin-bottom: 40px !important;
  }

  /* 한 손 조작 시 엄지가 닿는 쪽으로 */
  .certs__nav {
    justify-content: flex-end;
  }

  /* ── product.html: black statement band ── */
  .statement__headline,
  .statement__sub {
    font-size: 22px !important;
  }

  .statement__caption {
    font-size: 15px !important;
    margin-top: 10px !important;
  }

  .statement--stack {
    min-height: 170px !important;
    background: #05070f url("images/check-band.png?v=2") 43% center / cover no-repeat !important;
  }

  .statement--stack + .big-feature {
    padding-top: 140px !important;
  }

  /* ── product.html: big-feature blocks ── */
  .big-feature {
    padding: 90px 16px 20px !important;
  }

  .big-feature + .big-feature {
    padding-top: 140px !important;
  }

  .big-feature__inner {
    gap: 28px;
  }

  .big-feature__head {
    text-align: left !important;
    align-items: flex-start !important;
  }

  /* 모바일 헤더는 글자 로고 대신 심볼만. 심볼의 두 가지 회색은 밝은 배경/어두운 배경
     양쪽에서 같은 색을 쓰므로(로고 파일 두 벌이 심볼 부분은 동일) 반전이 필요 없다. */
  .nav__logo,
  .nav--invert .nav__logo,
  .nav--on-dark .nav__logo,
  body.nav-mobile-open nav.nav .nav__logo {
    width: 31px;
    height: 22px;
    background-image: url(./assets/Icon.png?v=1) !important;
    filter: none !important;
  }

  /* 모바일에서만 끊는 자리. 데스크톱은 원래 줄바꿈(원본 줄넘김)을 그대로 쓴다 */
  .br-mo {
    display: inline;
  }

  /* 이 두 섹션은 제목을 가운데로 */
  .parts-section .big-feature__head,
  .spec-section .big-feature__head {
    text-align: center !important;
    align-items: center !important;
  }

  /* 사이트 공통 L2 값 32px */
  /* 제목과 본문이 40px 벌어져 두 덩어리로 떨어져 보인다.
     애플 쪽은 붙여서 '제목+설명'이 한 묶음으로 읽힌다. */
  /* 좌우 여백. 우리는 16px 이라 글이 화면 끝까지 닿고, 애플은 약 43px 을 둔다.
     애플은 '여백을 키운' 게 아니라 '글 폭에 상한'을 둔 것이다. 그래서 화면이
     넓어져도 한 줄이 길어지지 않는다(재보니 우리 35자 / 애플 26자).
     글 묶음에만 상한 640px 을 걸고 가운데 정렬한다. 사진·영상은 그대로 꽉 채운다.
       375px → 좌우 24px  |  735px → 좌우 47px (애플 43px) */
  .big-feature {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .big-feature__head {
    max-width: 640px;
    width: 100%;              /* 없으면 flex 항목이라 글자 폭만큼 쪼그라들고,
                                 auto 마진이 그 좁은 상자를 가운데로 밀어버린다 */
    margin-left: auto;
    margin-right: auto;
  }

  /* 제품 페이지 제목만 38px. 애플 제품 페이지의 제목:본문 비율(약 2배)에 맞춘다.
     10개 제목 전부 재서 줄 수가 안 바뀌는 상한이 38px 이다(40px 부터 하나가 넘어감). */
  /* Pretendard 는 애플 글꼴보다 글자 폭이 6% 좁다(100px 기준 172 vs 183).
     이미 좁은 글꼴에 -0.04em 을 더 조여 제목이 뭉쳐 보였다.
     두께도 애플 제목은 600(세미볼드)인데 우리는 700(볼드)이었다.
     제목 10개 전부 재서 줄 수가 안 바뀌는 것을 확인하고 조정. */
  .big-feature__title {
    font-size: 38px !important;
    font-weight: 600 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 10px !important;
  }

  /* 줄바꿈을 풀 제목에만 붙인다. HTML 의 하드 줄바꿈이 이 폭에서 어색한 경우에만.
     (전부 풀면 '제품으로' 처럼 한 어절만 남는 제목이 생긴다) */
  .big-feature__title--flow {
    white-space: normal !important;
  }

  /* 본문의 줄바꿈은 데스크톱 폭 기준으로 넣은 것이라 좁은 화면에서는
     '강도를' 처럼 한 어절만 남는 줄이 생긴다. 모바일에서는 자연스럽게 흘린다.
     (<br> 로 넣은 의도적 줄바꿈은 그대로 유지된다) */
  /* 애플 본문 느낌 — 작고 행간 넉넉하게.
     keep-all 이라 어절 단위로만 끊겨서 크기에 따라 채움률이 크게 흔들린다.
     실측: 16px 90% / 17px 96%(3줄) / 18px 76% / 20px 85% → 17px 채택. */
  /* 위 '채움률' 최적화는 한 줄을 꽉 채우는 데만 맞춘 값이라 글자가 작아졌다.
     애플 제품 페이지와 나란히 놓고 보면 크기(17 vs 22)와 명암(#666 vs 거의 검정)
     차이가 가장 컸다. 읽히는 쪽을 우선해 키우고 진하게 한다. */
  /* 본문은 19px / Regular(400).
     기본값이 500(미디엄)이라 본문 전체가 살짝 굵어, 강조(600)와 차이가 흐렸다.
     400 으로 내리니 강조 구절만 또렷하게 떠오른다. */
  /* 애플 본문 팔레트를 그대로 쓴다.
     기본 #86868b (연한 회색) + 강조 #1d1d1f (거의 검정).
     기본색만 보면 흐리지만, 강조가 짝으로 있어야 성립하는 조합이다.
     연한 기본 위로 사실 정보만 검게 떠오르는 게 애플 문단의 구조다. */
  /* 나란히 놓고 보면 두 가지가 달랐다.
     - 자간 -0.04em / 행간 1.5. 스크린샷과 눈으로 맞춘 값이다.
     - 색  : #86868b 는 애플보다 연하다. 획이 얇은 Pretendard 에서는
             같은 색이라도 더 흐려 보여서 한 단계 진하게 잡아야 비슷해진다. */
  /* text-wrap 은 wrap(기본)으로 둔다.
     pretty / balance 는 뒷줄이 짧아지지 않도록 앞줄을 미리 줄여 놓는데,
     사파리는 그 폭이 커서 좁은 화면에서 오른쪽이 한참 비어 보인다.
     한글은 어절 단위로만 끊기므로(word-break: keep-all) 그 손해가 더 크다. */
  .big-feature__lede {
    font-size: 19px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    letter-spacing: -0.04em !important;
    color: #6e6e73 !important;
    white-space: normal;
    text-wrap: wrap;
  }

  /* 애플 본문처럼 한 문단 안에서 톤을 둘로 나눈다.
     연결하는 말은 물러나고 숫자·작동 방식 같은 사실만 앞으로 나온다.
     (효능 표현은 의료기기 광고 심의 대상이라 강조 대상에서 뺐다) */
  .big-feature__lede strong {
    font-weight: 600;
    color: #1d1d1f;
  }

  /* 강조 구절이 줄 끝에서 쪼개지면('…강도를 여덟 / 단계로 조절할…')
     굵은 덩어리가 두 줄로 갈려 시선이 끊긴다. 통째로 다음 줄로 넘긴다.
     짧은 구절에만 붙인다 — 긴 구절에 붙이면 좁은 화면에서 넘친다. */
  .big-feature__lede strong.keep {
    white-space: nowrap;
  }

  /* 주석은 본문(19px)보다 한 단계 작게. 14px 은 본문과 5px 차이라 너무 물러났다.
     여기 문구가 '미성년자 사용 시 보호자가…' 같은 사용 안내라 읽혀야 한다. */
  .big-feature__note {
    font-size: 17px !important;
    line-height: 1.5 !important;
    letter-spacing: -0.04em !important;
    white-space: normal;
    text-wrap: wrap;
  }

  .big-feature__media {
    height: 360px !important;
    border-radius: 16px !important;
  }

  .big-feature__media video:has(source[src="images/feature-2.mp4"]) {
    object-position: 30% center;
  }

  .big-feature__media img[src*="OLED.png"] {
    max-width: 78% !important;
  }

  .big-feature__media:has(img[src*="Battery_Charge"]) {
    aspect-ratio: 1 / 1;
    height: auto !important;
  }

  .big-feature__media--split {
    height: auto !important;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .big-feature__media--split .split-tile {
    height: 420px;
  }

  .split-caption {
    margin-top: 12px;
  }

  .split-caption p {
    font-size: 13px;
  }

  .split-caption p strong {
    display: inline;
    margin-bottom: 0;
    margin-right: 4px;
  }

  .big-feature__media--split .split-tile img {
    height: 100%;
    object-position: center;
  }

  /* manual video banner */
  .video-banner {
    display: block;
    min-height: 0;
  }

  .video-banner__media {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .video-banner__media img {
    transform: none;
    object-position: 44% center;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.35) 14%, #000 38%);
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.35) 14%, #000 38%);
  }

  .big-feature:has(.video-banner) {
    padding-bottom: 100px !important;
  }

  .video-banner__text {
    padding: 52px 24px 32px;
    gap: 18px;
  }

  /* 위 .big-feature__title(34px)과 크기가 거의 같아 둘 다 제목으로 읽힌다.
     배너 안 라벨이라는 게 드러나도록 한 단계 낮춘다. */
  .video-banner__text h3 {
    font-size: 24px;
    font-weight: 600;
  }

  .video-banner__btn {
    padding: 11px 22px;
    font-size: 15px;
  }

  /* 파트별 명칭 */
  .parts-section {
    padding: 90px 16px 20px;
  }

  .parts-card {
    padding: 100px 0 110px;
    overflow: hidden;
  }

  .parts-figure + .parts-figure {
    margin-top: 130px;
  }

  .parts-figure {
    overflow: hidden;
    transform: scale(1.3);
  }

  /* 도형이 1.3배라 라벨 치수는 전부 1.3으로 나눠 넣는다(= 화면상 원래 크기).
     역스케일을 쓰면 축소 기준점이 '점'이라 점 위치마다 라벨 시작선이 달라져 정렬이 깨진다.
     이 방식은 라벨 상자를 left/right로 고정하고 남는 거리는 인출선(flex)이 흡수한다. */
  .pcall--left {
    left: 11%;
    transform: translate(2.31px, -50%);
  }

  .pcall--right {
    right: 11%;
    transform: translate(-2.31px, -50%);
  }

  .pcall em {
    width: 56.15px;       /* 화면상 73px */
    font-size: 10px;      /* 화면상 13px */
    margin: 0 4.62px;     /* 화면상 6px */
  }

  .pcall--right em {
    width: 65.38px;       /* 화면상 85px (우측은 인출선 여유가 더 큼) */
  }

  .pcall .ln {
    min-width: 6.15px;    /* 화면상 8px */
  }

  .pcall .dot {
    width: 4.62px;        /* 화면상 6px */
    height: 4.62px;
  }

  /* 보호캡 도형은 점이 32%로 라벨 구간에 가장 가까워 폭을 줄여야 인출선이 남는다 */
  .parts-figure:nth-of-type(4) .pcall em {
    width: 48px;
  }

  /* 상세 정보 및 스펙 */
  .spec-section {
    padding: 60px 16px 90px;
  }

  /* 주의문구 상자의 좌·우·아래 여백을 16px 로 동일하게 (아래만 넓어 보이던 문제) */
  .spec-card {
    padding: 110px 16px 16px;
  }

  .spec-figure {
    flex-direction: column;
    align-items: center;
    gap: 72px;
    margin-bottom: 90px;
  }

  .dim-item img {
    height: 240px !important;
  }

  .spec-table {
    grid-template-columns: 1fr;
    row-gap: 4px;
  }

  .spec-table dt {
    margin-top: 20px !important;
    font-size: 18px !important;
  }

  .spec-table dd {
    font-size: 17px !important;
  }

  .spec-guide h3 {
    font-size: 24px;
  }

  .spec-guide li {
    font-size: 17px;
    line-height: 1.6;
    text-wrap: wrap;
  }

  /* 데스크톱 폭에 맞춰 넣은 <br> 이라 좁은 화면에서는 줄이 어정쩡하게 끊긴다.
     모바일에서는 자연스럽게 흐르도록 해제. */
  .spec-guide li br {
    display: none;
  }

  .spec-notice {
    font-size: 20px;
    line-height: 1.4;
    padding: 28px 24px;
  }

  .spec-notice .notice-br {
    display: inline;
  }

  /* ── resources / news / ir / press ── */
  /* 페이지 제목(L1 일반) 40px — 유통문의 .dist__title 과 같은 단계 */
  .resources__heading {
    font-size: 40px;
  }

  .resources__toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .resources__search {
    width: 100%;
  }

  .resources__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .rcard__title {
    font-size: 20px;
  }

  /* 위아래 44px 은 구분선과 글자가 너무 떨어져 보인다.
     왼쪽 8px 은 굵은 한글이 구분선보다 튀어 보이는 시각 보정 (선 위치는 그대로). */
  .nrow {
    padding: 24px 4px 24px 8px;
  }

  /* FAQ 질문(.faq-item__q)과 같은 값으로 맞춤 —
     news.html 의 공지 목록이 실제로 쓰는 클래스는 .notice__title 이 아니라 이쪽이다. */
  .nrow__title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: -0.04em;
  }

  .nrow__date {
    font-size: 14px;
  }

  /* ── notice.html / notice-detail.html ── */
  /* 21px 은 좁은 화면에서 한 항목이 세 줄까지 늘어져 목록이 읽히지 않는다 */
  .notice__title {
    font-size: 18px;
    line-height: 1.45;
  }
  .notice__date {
    font-size: 13px;
  }

  .notice__heading {
    font-size: 32px;
  }

  .notice-detail__title {
    font-size: 26px;
    padding: 0;
  }

  .notice-detail__meta {
    font-size: 14px;
    padding: 0;
    margin-bottom: 20px;
  }

  .notice-detail__divider {
    margin-bottom: 32px;
  }

  .notice-detail__body {
    padding: 0;
    font-size: 16px;
    line-height: 1.75;
  }

  .notice-detail__back {
    margin-top: 48px;
    padding: 0;
  }

  /* ── faq.html ── */
  /* 페이지 제목(L1 일반) 40px */
  .faq__heading {
    font-size: 40px !important;
  }

  /* 1fr = minmax(auto,1fr) 이라 카테고리 줄(min-content 544px)이 트랙을 밀어
     사이드바·목록이 컨테이너 밖으로 나갔다. minmax(0,1fr) + min-width:0 으로 고정. */
  .faq__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .faq__sidebar {
    position: static;
    padding-top: 0;
    min-width: 0;
  }

  .faq__cats {
    flex-direction: row;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 0;
    /* 터치로 그냥 넘기게 — 스크롤바는 감추고 관성 스크롤만 남긴다 */
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .faq__cats::-webkit-scrollbar {
    display: none;
  }

  .faq-cat {
    width: auto;
    margin-left: 0;
    white-space: nowrap;
    border-radius: 999px;
    background: #f5f5f5;
    padding: 10px 16px;
  }

  .faq-cat.is-active {
    background: #1a1a1a;
    color: #fff;
  }

  /* 공지사항 목록 제목(.notice__title)과 완전히 같은 값으로 맞춤.
     자간이 -0.02em 이라 크기를 맞춰도 다르게 보였다. */
  .faq-item__q {
    font-size: 18px;
    line-height: 1.45;
    letter-spacing: -0.04em;
  }

  /* ── distribution.html ── */
  .dist__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dist__title {
    font-size: 40px !important;
  }

  .dist__lede {
    margin-bottom: 40px;
  }

  /* 1fr 은 최소값이 min-content 라 안쪽이 크면 칸이 화면 밖으로 커진다.
     minmax(0, 1fr) 로 바닥을 0 으로 내려 화면 안에 가둔다. */
  .dist__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .dist__copy,
  .dist__formwrap {
    min-width: 0;
  }

  .dist__formwrap {
    padding: 28px 18px;
    border-radius: 20px;
  }

  .dist-field {
    padding: 0 16px;
  }

  .dist-field__icon {
    margin-right: 12px;
  }
}
/* 임시 비공개 항목(리소스 / 사용가이드) — display 를 지정한 규칙보다 우선해야 한다.
   되살릴 때는 HTML 의 data-hidden-wip / hidden 속성을 제거하면 된다. */
[hidden] {
  display: none !important;
}

@media (max-width: 768px) {
  /* 인증 카드 설명도 데스크톱 기준 줄바꿈이 들어 있어 '(KIPA)' 같은 조각만
     남는 줄이 생긴다. 좁은 화면에서는 자연스럽게 흘린다. */
  .cert__desc {
    white-space: normal;
    text-wrap: wrap;
  }
}

/* 연혁 세로 목록 (모바일 전용) — 데스크톱에서는 존재해도 숨긴다 */
.history__list {
  display: none;
}

@media (max-width: 768px) {
  /* 탭 구조를 감추고 목록만 남긴다 */
  .history__years,
  .history__events {
    display: none;
  }

  .history {
    display: block;
    padding: 40px 24px !important;
    min-height: 0 !important;
  }

  .history__list {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
  }

  /* 점들을 잇는 세로선 */
  .history__list::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: var(--line);
  }

  .history__row {
    position: relative;
    padding-left: 26px;
  }

  .history__row + .history__row {
    margin-top: 44px;
  }

  /* 점 중심을 연도 글자 중심에 맞춘다. 검은 점이 10번 반복되면 시선을 뺏어
     연도 텍스트가 앵커 역할을 하도록 점은 작고 옅게. */
  .history__row::before {
    content: "";
    position: absolute;
    left: 1.5px;
    top: 6.5px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c7c7cc;
  }

  .history__row-year {
    margin: 0 0 12px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #1a1a1a;
  }

  .history__row .history__event + .history__event {
    margin-top: 16px;
  }
}

/* 연혁 '이전 연혁 더보기' — 목록과 같이 모바일에서만 쓴다 */
.history__more {
  display: none;
}

@media (max-width: 768px) {
  .history__row.is-collapsed {
    display: none;
  }

  .history__more {
    display: block;
    width: 100%;
    margin: 28px 0 0;
    padding: 14px 0;
    border: 1px solid #e5e5ea;
    border-radius: 12px;
    background: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    cursor: pointer;
  }

  .history__more[hidden] {
    display: none;
  }
}

/* 인증 섹션: 제목을 좌정렬하고 제목 > 카드제목 > 설명 위계를 벌린다.
   (연혁·가치 그리드 제목은 중앙 정렬 유지) */
@media (max-width: 768px) {
  /* 인증 제목은 좌정렬, 연혁 제목은 중앙 정렬 — 크기·굵기는 둘이 같게 간다 */
  .certs__heading,
  .section--soft:has(.history) .section-title--md {
    font-size: 30px !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    letter-spacing: -0.04em !important;
  }
  .certs__heading {
    text-align: left !important;
  }

  .cert__tag {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.02em;
  }
  /* 제목은 카드마다 지정한 지점에서 두 줄로 끊는다. 자동 줄바꿈에 맡기면
     한 줄짜리와 두 줄짜리가 섞여 카드 높이가 들쭉날쭉해진다. */
  .cert__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.03em;
  }
  .cert__title .cert-br { display: inline; }

  .cert__desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: -0.02em;
  }
}

/* 유통 문의 폼 전송 결과 */
.dist-note {
  margin: 16px 0 0;
  padding: 14px 16px;
  border-radius: 12px;
  background: #f2f7f2;
  border: 1px solid #d6e6d6;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #1f5130;
  word-break: keep-all;
}

.dist-note--error {
  background: #fdf3f3;
  border-color: #f0d7d7;
  color: #8c2b2b;
}

.dist-submit:disabled {
  opacity: 0.55;
  cursor: default;
}

/* ───────── 영문판 전용 (html lang="en") ─────────
   영어는 단어가 짧아 'FAQ' 같은 제목이 덩그러니 뜬다.
   한글판은 크기 52 → 38 만으로 층위가 잡히지만, 영문은 굵기까지 낮춰야
   '페이지 제목 / 섹션 제목' 이 구분된다. 한글판은 건드리지 않는다.
   (제목에 인라인 style 로 font-weight 가 박혀 있어 !important 가 필요하다) */
html[lang="en"] .support-search__title,
html[lang="en"] .support__subtitle {
  font-size: 32px !important;
  font-weight: 600 !important;
}

@media (max-width: 768px) {
  html[lang="en"] .support-search__title,
  html[lang="en"] .support__subtitle {
    font-size: 32px !important;
  }
}
