@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");

:root {
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  --blue: #00306e;
  --blue-2: #064b9b;
  --ink: #07152e;
  --muted: #647084;
  --line: #dbe4f2;
  --surface: #ffffff;
  --soft: #f4f7fb;
  --soft-blue: #eaf3ff;
  --shadow: 0 18px 45px rgba(20, 45, 82, 0.1);
  /* 감속이 강한 이징. 열릴 때 빠르게 나오다 부드럽게 멎어 기계적인 느낌이 사라진다. */
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  /* 하위 페이지 마스트헤드 공통 스케일.
     min-height는 '바닥값'일 뿐이어야 한다 — 이 값이 실제 콘텐츠보다 크면
     align-items:end 때문에 남는 공간이 전부 상단에 쌓여 페이지마다 여백이 달라진다. */
  --masthead-min-h: 380px;
  --masthead-pad-y: 72px;
}

* {
  box-sizing: border-box;
}

/* 타이포 기준값.
   모든 font-size가 rem이라 이 값 하나가 전체 글자 크기를 함께 끌어올린다.
   모바일은 16px으로 고정해 기존 크기를 그대로 두고(디자인이 이미 맞는 상태),
   화면이 넓어지는 만큼만 키운다 — 넓은 PC 화면에서 본문이 작아 보이던 문제를
   단계별 점프 없이 뷰포트에 비례해 해소하기 위한 것. */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

@media (min-width: 761px) {
  html {
    /* 761px에서 정확히 16px으로 만나 모바일 값과 이어지고, 1400px 부근에서 20px에 도달해 멈춘다. */
    font-size: clamp(16px, 11.2px + 0.63vw, 20px);
  }
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 4px;
  background: #fff;
  color: #082f68;
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(7, 24, 47, .18);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus { transform: translateY(0); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid #168675;
  outline-offset: 3px;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  /* 한글은 어절 중간에서 끊기면 읽기 나빠진다 ('수행기업' → '수행/기업').
     글자를 키우면 줄바꿈 지점이 늘어나므로 어절 단위 유지를 기본으로 두되,
     한 어절이 통째로 넘칠 때만 강제로 끊는다. */
  word-break: keep-all;
  overflow-wrap: break-word;
}

body.modal-open {
  overflow: hidden;
}

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

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

img,
svg {
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 74px;
  padding: 12px clamp(20px, 4vw, 46px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(219, 228, 242, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  min-width: 192px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  color: var(--blue);
}

.brand-mark svg,
.mail-icon svg,
.header-inquiry svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.brand strong {
  display: block;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0;
}

.brand small {
  display: block;
  color: #7d8798;
  font-size: 0.625rem;
  line-height: 1.2;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 46px);
  color: #07152e;
  font-size: 0.875rem;
  font-weight: 900;
}

.main-nav a {
  padding: 10px 0;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--blue-2);
}

.main-nav .is-active {
  color: var(--blue);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
  font-size: 0.8125rem;
  letter-spacing: 0;
  white-space: nowrap;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 22px rgba(0, 48, 110, 0.18);
}

.button-outline {
  background: #fff;
  color: var(--blue);
  border-color: var(--blue);
}

.button-light {
  background: #fff;
  color: var(--blue);
}

.button-small {
  min-height: 40px;
  padding: 0 18px;
}

.button-small svg {
  width: 16px;
  height: 16px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  transition: background 200ms ease, border-color 200ms ease;
}

.nav-toggle:hover { background: var(--soft); }
.nav-toggle:active { transform: scale(.94); }

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--blue);
  /* 막대 간격이 5px, 높이가 2px이라 중심 간 거리는 7px다. 그만큼 모아 X를 만든다. */
  transition: transform 420ms var(--ease-out), opacity 180ms ease;
}

.site-header.is-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.is-open .nav-toggle span:nth-child(2) { opacity: 0; transform: scaleX(.2); }
.site-header.is-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (prefers-reduced-motion: reduce) {
  .nav-toggle span,
  .main-nav,
  .main-nav a,
  .header-inquiry {
    transition-duration: 1ms !important;
    transition-delay: 0s !important;
  }
}

.eyebrow,
.section-heading span,
.contact-section span,
.inquiry-form > span {
  display: block;
  color: #536176;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 28px;
  min-height: calc(100vh - 74px);
  padding: clamp(40px, 6vw, 86px) clamp(20px, 4vw, 46px) clamp(46px, 6vw, 82px);
  background:
    radial-gradient(circle at 70% 38%, rgba(214, 230, 249, 0.86), transparent 35%),
    linear-gradient(120deg, #fff 0%, #f8fbff 46%, #edf4fb 100%);
}

.hero-copy {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.hero-copy h1 {
  max-width: 780px;
  margin: 12px auto 20px;
  color: var(--blue);
  font-size: clamp(42px, 4.7vw, 68px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 720px;
  margin: 0 auto 18px;
  color: #263852;
  font-size: clamp(17px, 1.45vw, 21px);
  font-weight: 500;
  word-break: keep-all;
}

.hero-copy .hero-tagline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin-top: 2px;
  margin-bottom: 28px;
  padding: 10px 16px;
  border: 1px solid rgba(0, 48, 110, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--blue);
  box-shadow: 0 10px 26px rgba(20, 45, 82, 0.07);
  font-size: clamp(14px, 1.25vw, 17px);
  font-weight: 700;
  line-height: 1.4;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hero-visual {
  width: min(100%, 1320px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.product-stage {
  position: relative;
  width: 100%;
  min-height: clamp(390px, 42vw, 560px);
  display: grid;
  place-items: center;
  padding: 28px 28px 38px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(230, 238, 248, 0.68)),
    radial-gradient(circle at 56% 40%, rgba(255, 255, 255, 0.96), transparent 44%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-stage::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 26px;
  height: 42%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(197, 209, 225, 0.48));
  border-radius: 999px 999px 28px 28px;
  filter: blur(1px);
}

.hero-visual img {
  position: relative;
  width: min(100%, 1220px);
  max-height: 440px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.pdf-stage {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  place-items: stretch;
}

.pdf-stage::before {
  display: none;
}

.pdf-stage img {
  width: 100%;
  height: 100%;
  max-height: none;
  min-height: 0;
  border-radius: 8px;
  background: #fff;
  object-fit: contain;
  box-shadow: 0 18px 34px rgba(20, 45, 82, 0.16);
  mix-blend-mode: normal;
}

.hero-product-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-product-list li {
  min-height: 72px;
  padding: 14px 12px;
  border: 1px solid rgba(219, 228, 242, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(20, 45, 82, 0.08);
}

.hero-product-list strong {
  display: block;
  color: var(--blue);
  font-size: 0.8125rem;
}

.hero-product-list span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.75rem;
  word-break: keep-all;
}

.section {
  padding: 68px clamp(20px, 4vw, 46px);
}

.page-hero {
  padding: clamp(62px, 9vw, 130px) clamp(20px, 4vw, 46px) clamp(42px, 6vw, 76px);
  background:
    radial-gradient(circle at 78% 24%, rgba(214, 230, 249, 0.9), transparent 30%),
    linear-gradient(120deg, #fff 0%, #f8fbff 48%, #edf4fb 100%);
  text-align: center;
}

.page-hero h1 {
  max-width: 980px;
  margin: 10px auto 16px;
  color: var(--blue);
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.1;
  letter-spacing: 0;
  word-break: keep-all;
}

.page-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: #263852;
  font-size: 1.125rem;
  word-break: keep-all;
}

.section-heading {
  max-width: 1440px;
  margin: 0 auto 26px;
}

.section-heading h2 {
  margin: 4px 0 8px;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.2;
  letter-spacing: 0;
  word-break: keep-all;
}

.section-heading p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  word-break: keep-all;
}

.product-section,
.news-section {
  background: #eef2f7;
}

.main-preview-section {
  background: #eef2f7;
}

.main-preview-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1440px;
  margin: 0 auto;
}

.preview-tile,
.value-grid article {
  display: block;
  min-height: 190px;
  padding: 26px;
  border: 1px solid rgba(219, 228, 242, 0.9);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.preview-tile span,
.value-grid span,
.product-kicker {
  display: block;
  color: #536176;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.preview-tile h2,
.value-grid h2 {
  margin: 12px 0 10px;
  color: var(--blue);
  font-size: 1.5rem;
  letter-spacing: 0;
}

.preview-tile p,
.value-grid p {
  margin: 0;
  color: var(--muted);
  word-break: keep-all;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 16px;
  max-width: 1440px;
  margin: 0 auto;
}

.product-card,
.about-card,
.news-item {
  border: 1px solid rgba(219, 228, 242, 0.9);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  padding: 18px;
}

.product-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background: #f7f9fc;
  object-fit: contain;
}

.product-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.125rem;
}

.product-page-section {
  padding-top: 42px;
}

.product-grid-large .product-card {
  min-height: 430px;
}

.product-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.8125rem;
}

.product-card a,
.product-card button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border: 0;
  background: transparent;
  color: var(--blue);
  cursor: pointer;
  font-size: 0.8125rem;
  font-weight: 900;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(360px, 1.08fr);
  gap: 18px;
  max-width: 1440px;
  margin: 0 auto;
}

.about-card {
  padding: 28px;
}

.about-card h3,
.news-item h3 {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 1.375rem;
  letter-spacing: 0;
}

.org-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.org-grid div {
  min-height: 96px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
}

.org-grid strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
}

.org-grid span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.8125rem;
}

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

.timeline li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: start;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

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

.timeline time {
  color: var(--blue);
  font-weight: 900;
}

.timeline span {
  color: #263852;
  word-break: keep-all;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 1440px;
  margin: 0 auto;
}

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

.wide-news {
  grid-column: 1 / -1;
}

.news-item {
  padding: 26px;
}

.news-item > span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 900;
}

.news-item h3 {
  margin-bottom: 10px;
  color: var(--ink);
}

.news-item p {
  margin: 0;
  color: var(--muted);
  word-break: keep-all;
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 40px clamp(20px, 4vw, 46px);
  background: var(--blue);
  color: #fff;
}

.contact-section > div {
  display: flex;
  align-items: center;
  gap: 22px;
}

.mail-icon {
  display: grid;
  place-items: center;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
}

.mail-icon svg {
  width: 28px;
  height: 28px;
}

.contact-section span {
  color: #c6d9f2;
}

.contact-section h2 {
  margin: 4px 0;
  font-size: 1.5rem;
  letter-spacing: 0;
  word-break: keep-all;
}

.contact-section p {
  margin: 0;
  color: #c6d9f2;
  word-break: keep-all;
}

.contact-page-section {
  background: #eef2f7;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1.18fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.contact-info-card,
.contact-form-card {
  border: 1px solid rgba(219, 228, 242, 0.9);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.contact-info-card {
  padding: 30px;
  background: var(--blue);
  color: #fff;
}

.contact-info-card h2 {
  margin: 0 0 4px;
  font-size: 1.875rem;
}

.contact-info-card p {
  margin: 0 0 28px;
  color: #c6d9f2;
}

.contact-info-card dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.contact-info-card div {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info-card dt {
  color: #c6d9f2;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.contact-info-card dd {
  margin: 6px 0 0;
  color: #fff;
  word-break: keep-all;
}

.contact-form-card {
  display: grid;
  gap: 14px;
  padding: 30px;
}

.contact-form-card h2 {
  margin: 4px 0 0;
  color: var(--blue);
  font-size: 1.875rem;
}

.contact-form-card label {
  display: grid;
  gap: 6px;
  color: #263852;
  font-size: 0.8125rem;
  font-weight: 900;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
}

.contact-form-card textarea {
  resize: vertical;
}

.inquiry-modal {
  width: min(560px, calc(100vw - 32px));
  padding: 0;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(0, 18, 42, 0.28);
}

.inquiry-modal::backdrop {
  background: rgba(4, 14, 30, 0.58);
  backdrop-filter: blur(4px);
}

.inquiry-form {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 30px;
}

.inquiry-form h2 {
  margin: 0;
  color: var(--blue);
  font-size: 1.75rem;
}

.inquiry-form p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.8125rem;
}

.inquiry-form label {
  display: grid;
  gap: 6px;
  color: #263852;
  font-size: 0.8125rem;
  font-weight: 900;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
}

.inquiry-form textarea {
  resize: vertical;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.form-status {
  min-height: 20px;
  color: #146a3a;
  font-size: 0.8125rem;
  font-weight: 900;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  /* display는 전환이 불가능해 예전 구현은 뚝 끊기듯 나타났다.
     항상 배치해두고 높이·투명도를 전환해 부드럽게 열고 닫는다. */
  .main-nav,
  .header-inquiry {
    display: flex;
    grid-column: 1 / -1;
    overflow: hidden;
    max-height: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition:
      max-height 400ms var(--ease-out),
      margin 400ms var(--ease-out),
      opacity 220ms ease,
      visibility 0s linear 400ms;
  }

  .site-header.is-open .main-nav,
  .site-header.is-open .header-inquiry {
    max-height: 330px;
    opacity: 1;
    visibility: visible;
    transition:
      max-height 460ms var(--ease-out),
      margin 460ms var(--ease-out),
      opacity 300ms ease,
      visibility 0s;
  }

  /* .reference-nav의 가로 간격(clamp)이 파일 뒤쪽에 있어 이기므로 구체성을 올려 0으로 되돌린다.
     세로 목록에서는 링크의 상하 여백이 간격 역할을 한다. */
  .site-header .main-nav {
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
  }

  .site-header.is-open .main-nav {
    margin-top: 6px;
  }

  /* 링크는 한꺼번에 나타나지 않고 위에서부터 차례로 밀려 들어온다. */
  .main-nav a {
    padding: 13px 2px;
    border-bottom: 1px solid rgba(219, 228, 242, .85);
    font-size: 0.9375rem;
    opacity: 0;
    transform: translateX(12px);
    transition:
      opacity 300ms ease,
      transform 420ms var(--ease-out),
      color 180ms ease;
  }

  .site-header.is-open .main-nav a {
    opacity: 1;
    transform: none;
  }

  .site-header.is-open .main-nav a:nth-child(1) { transition-delay: 70ms; }
  .site-header.is-open .main-nav a:nth-child(2) { transition-delay: 115ms; }
  .site-header.is-open .main-nav a:nth-child(3) { transition-delay: 160ms; }
  .site-header.is-open .main-nav a:nth-child(4) { transition-delay: 205ms; }
  .site-header.is-open .main-nav a:nth-child(5) { transition-delay: 250ms; }

  .main-nav a:last-child { border-bottom: 0; }

  .header-inquiry {
    width: fit-content;
    transform: translateY(-6px);
  }

  .site-header.is-open .header-inquiry {
    margin: 4px 0 10px;
    transform: none;
    transition:
      max-height 460ms var(--ease-out),
      margin 460ms var(--ease-out),
      opacity 300ms ease 200ms,
      transform 420ms var(--ease-out) 200ms,
      visibility 0s;
  }

  /* 대시보드는 토글 버튼이 없으므로 링크를 항상 노출한다. */
  .insights-page .main-nav {
    grid-column: auto;
    flex-direction: row;
    max-height: none;
    overflow: visible;
    opacity: 1;
    visibility: visible;
  }

  .insights-page .main-nav a {
    border-bottom: 0;
    opacity: 1;
    transform: none;
  }

  .product-stage {
    min-height: 300px;
  }

  .product-grid,
  .news-list,
  .main-preview-grid,
  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-layout,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 0;
    padding-top: 32px;
  }

  .hero-copy h1 {
    font-size: 2.25rem;
    text-align: left;
  }

  .hero-copy,
  .hero-copy p {
    text-align: left;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .hero-copy .hero-tagline {
    display: flex;
    width: 100%;
    padding: 10px 12px;
    font-size: 0.8125rem;
  }

  .hero-actions .button,
  .contact-section .button {
    width: 100%;
  }

  .product-stage {
    min-height: 220px;
    padding: 14px 12px 20px;
  }

  .pdf-stage {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .pdf-stage img {
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .hero-product-list,
  .product-grid,
  .org-grid,
  .news-list,
  .main-preview-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    grid-template-columns: 112px 1fr;
    grid-template-rows: auto auto;
    align-items: center;
  }

  .product-card img {
    grid-row: 1 / 3;
  }

  .product-grid-large .product-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: 0;
  }

  .product-grid-large .product-card img {
    grid-row: auto;
    width: 100%;
  }

  .contact-section,
  .contact-section > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .timeline li {
    grid-template-columns: 58px 1fr;
  }

  .page-hero {
    text-align: left;
  }

  .page-hero h1,
  .page-hero p {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 480px) {
  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 1.0625rem;
  }

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

  .hero-product-list li {
    min-height: 86px;
  }

  .product-card {
    grid-template-columns: 96px 1fr;
  }

  .inquiry-form {
    padding: 26px 20px;
  }
}

/* Main page: closely follows the supplied BOAZ HEALTH reference layout. */
.main-page {
  background: #f3f5f8;
}

.reference-header {
  position: relative;
  min-height: 72px;
  gap: 18px;
  padding: 10px clamp(28px, 3vw, 52px);
  border-bottom: 0;
  background: #fff;
}

.reference-header .brand {
  min-width: 210px;
}

.reference-nav {
  gap: clamp(28px, 3vw, 54px);
  font-size: 0.75rem;
  font-weight: 850;
}

.reference-nav a {
  position: relative;
}

.reference-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: #0d4a91;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.reference-nav a:hover::after,
.reference-nav a:focus-visible::after,
.reference-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.reference-header .header-inquiry {
  width: 136px;
  font-size: 0.6875rem;
}

.reference-hero {
  background: #fff;
  overflow: hidden;
}

/* 히어로의 세로 골격은 rem이다. 글자만 커지고 높이가 px으로 고정되면
   하단 지표 스트립이 제품 씬 캡션을 파고든다 — 둘이 같은 비율로 자라야 안 겹친다. */
.reference-hero-inner {
  position: relative;
  min-height: 28.4375rem;
  margin: 0 auto;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.94) 34%, rgba(242, 246, 250, 0.22) 58%, rgba(231, 236, 242, 0.58) 100%);
}

.reference-hero-copy {
  position: relative;
  z-index: 3;
  width: 38%;
  padding: 38px 0 0 clamp(30px, 3vw, 52px);
  animation: hero-copy-in 700ms cubic-bezier(.2,.75,.25,1) both;
}

.reference-hero-copy h1 {
  margin: 0 0 10px;
  color: #083574;
  font-size: clamp(38px, 3.25vw, 52px);
  font-weight: 800;
  line-height: 1.12;
}

.reference-hero-copy p {
  margin: 0 0 18px;
  color: #193b6d;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.55;
}

.reference-hero-copy .hero-actions {
  justify-content: flex-start;
}

.reference-hero-copy .button {
  min-width: 158px;
}

.reference-product-scene {
  position: absolute;
  z-index: 1;
  top: 1rem;
  right: 0;
  width: 62%;
  height: 20.9375rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.875rem;
  padding: 0 clamp(20px, 2.4vw, 40px) 6px 0;
  background: linear-gradient(180deg, #f4f7fa 0%, #eef2f5 56%, #fbfbfb 100%);
  --scene-x: 0px;
  --scene-y: 0px;
}

.reference-product-scene::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: -25%;
  width: 18%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.38), transparent);
  transform: skewX(-18deg);
  animation: scene-light 8s ease-in-out 1.2s infinite;
  pointer-events: none;
}

.reference-product-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,0) 13%);
  pointer-events: none;
}

.scene-message {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #12386c;
  font-family: "Apple SD Gothic Neo", Pretendard, sans-serif;
  font-size: 0.9375rem;
  font-weight: 650;
  line-height: 1.45;
  text-align: right;
  animation: scene-copy-in 850ms 380ms cubic-bezier(.2,.75,.25,1) both;
}

.scene-message::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  margin: 0 0 9px auto;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(22,136,212,0), #1688d4);
}

.scene-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 1.1vw, 16px);
  margin: 0;
  padding: 0;
  list-style: none;
  transform: translate3d(var(--scene-x), var(--scene-y), 0);
  transition: transform 650ms cubic-bezier(.2,.75,.25,1);
  will-change: transform;
}

.scene-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(180,198,218,.44);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(18,46,78,.07);
  transition: transform 420ms cubic-bezier(.2,.75,.25,1), box-shadow 420ms ease;
  /* backwards: 등장 후 transform 제어권을 놓아야 :hover 리프트가 먹는다 */
  animation: product-label-in 620ms cubic-bezier(.2,.75,.25,1) backwards;
}

.scene-card:nth-child(1) { animation-delay: 280ms; }
.scene-card:nth-child(2) { animation-delay: 370ms; }
.scene-card:nth-child(3) { animation-delay: 460ms; }
.scene-card:nth-child(4) { animation-delay: 550ms; }

.scene-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(18,46,78,.14);
}

.scene-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eff3f8;
}

/* 여러 컷을 같은 자리에 겹쳐두고 투명도로 교차시킨다.
   들어오는 컷은 살짝 확대된 상태에서 제자리로 풀리며 나타나 화면이 정지해 보이지 않는다. */
.scene-card-media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.045);
  transition: opacity 900ms ease, transform 1600ms cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform;
}

.scene-card-media img.is-active {
  opacity: 1;
  transform: scale(1);
}

/* 전환 중임을 알리는 얇은 진행 표시. 카드에 마우스를 올리면 멈춘다. */
.scene-card-media::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,.9) var(--scene-progress, 0%), rgba(255,255,255,.22) var(--scene-progress, 0%));
  opacity: 0;
  transition: opacity 400ms ease;
  pointer-events: none;
}

.scene-card[data-scene-ready] .scene-card-media::after { opacity: .85; }

@media (prefers-reduced-motion: reduce) {
  .scene-card-media img { transition-duration: 1ms; transform: none; }
  .scene-card-media::after { display: none; }
}

/* 제품 컷마다 촬영 배경이 달라, 옅은 쿨톤을 덮어 라인업 전체의 색온도를 맞춘다. */
.scene-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(226,236,246,.16), rgba(226,236,246,.32));
  pointer-events: none;
}

/* 웜톤 라이프스타일 컷은 채도를 낮춰 스튜디오 컷들과 나란히 놓이도록 한다.
   메인 히어로와 About 라인업이 같은 규칙을 공유한다. */
.scene-card[data-tone="warm"] img,
.scene-card-media img[data-tone="warm"],
.story-card[data-tone="warm"] img {
  filter: saturate(.6) brightness(1.05);
}

.scene-card-caption {
  padding: 9px 11px 11px;
  border-top: 1px solid rgba(180,198,218,.34);
  background: #fff;
}

.scene-card-caption strong {
  display: block;
  color: #071a34;
  font-size: 0.78125rem;
  font-weight: 850;
  letter-spacing: -.01em;
}

.scene-card-caption small {
  display: block;
  margin-top: 2px;
  color: #52627a;
  font-size: 0.65625rem;
  font-weight: 650;
}

.reference-stats {
  position: absolute;
  z-index: 4;
  left: clamp(30px, 3vw, 52px);
  bottom: 1.75rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(5.75rem, 1fr));
  gap: 1.5rem;
  /* 라벨이 커진 만큼 트랙도 넓어져야 <br>로 지정한 두 줄이 유지된다.
     이 위치는 제품 씬 캡션보다 아래라 폭을 넓혀도 겹치지 않는다. */
  width: min(38rem, 55%);
  margin: 0;
  padding: 0;
  list-style: none;
}

.reference-stats li {
  display: flex;
  gap: 0.5625rem;
  align-items: flex-start;
  animation: stat-in 600ms cubic-bezier(.2,.75,.25,1) both;
}

.reference-stats li:nth-child(1) { animation-delay: 500ms; }
.reference-stats li:nth-child(2) { animation-delay: 570ms; }
.reference-stats li:nth-child(3) { animation-delay: 640ms; }
.reference-stats li:nth-child(4) { animation-delay: 710ms; }
.reference-stats li:nth-child(5) { animation-delay: 780ms; }

.stat-icon {
  color: #1456a3;
  font-size: 1.5rem;
  line-height: 1;
}

.reference-stats strong,
.reference-stats small {
  display: block;
}

.reference-stats strong {
  color: #082e69;
  font-size: 1.25rem;
  line-height: 1;
}

.reference-stats small {
  margin-top: 0.4375rem;
  color: #46566d;
  font-size: 0.625rem;
  line-height: 1.35;
  /* 폭이 모자라도 '디자인'이 '디/자인'으로 쪼개지지 않게 어절 단위로만 끊는다. */
  word-break: keep-all;
}

.reference-achievements {
  padding: 28px clamp(28px, 3vw, 46px) 20px;
  background: #f3f5f8;
}

.reference-section-heading span,
.panel-heading span {
  color: #46617f;
  font-size: 0.6875rem;
  font-weight: 800;
}

.reference-section-heading h2,
.panel-heading h2 {
  margin: 4px 0 18px;
  color: #062f6b;
  font-size: 1.1875rem;
  line-height: 1.25;
}

.achievement-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.achievement-row article {
  min-height: 150px;
  padding: 16px 10px;
  border: 1px solid #e5e9ef;
  border-radius: 8px;
  background: #fff;
  text-align: center;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.achievement-row article:hover {
  border-color: #cdd9e9;
  box-shadow: 0 12px 30px rgba(16,53,99,.09);
  transform: translateY(-5px);
}

.achievement-mark {
  display: grid;
  place-items: center;
  width: 55px;
  height: 34px;
  margin: 0 auto 10px;
  color: #0f5c9f;
  font-size: 1.125rem;
  font-weight: 900;
}

.achievement-mark.good { color: #e31e34; }
.achievement-mark.blue { color: #17468a; font-size: 0.875rem; }

.achievement-row strong,
.achievement-row small {
  display: block;
}

.achievement-row strong {
  color: #101827;
  font-size: 0.75rem;
  line-height: 1.35;
}

.achievement-row small {
  margin-top: 7px;
  color: #6e7887;
  font-size: 0.625rem;
  line-height: 1.4;
}

.achievement-note {
  margin: 12px 0 0;
  color: #8791a0;
  font-size: 0.5625rem;
  text-align: center;
}

.reference-achievements {
  position: relative;
  overflow: hidden;
  padding: 58px clamp(28px, 4vw, 64px) 38px;
  background: #072f68;
  color: #fff;
}

.reference-achievements::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px) 0 0 / 88px 88px,
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px) 0 0 / 88px 88px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.achievement-intro,
.achievement-showcase,
.reference-achievements .achievement-note {
  position: relative;
  z-index: 1;
}

.achievement-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 36px;
}

.achievement-intro .reference-section-heading {
  max-width: 670px;
  margin: 0;
}

.achievement-intro .reference-section-heading span {
  color: #8eb8ea;
  font-size: 0.6875rem;
}

.achievement-intro .reference-section-heading h2 {
  margin: 10px 0 13px;
  color: #fff;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 800;
  line-height: 1.13;
}

.achievement-intro .reference-section-heading p {
  max-width: 590px;
  margin: 0;
  color: #b9cae0;
  font-size: 0.875rem;
  word-break: keep-all;
}

.achievement-totals {
  display: grid;
  grid-template-columns: repeat(3, minmax(100px, 1fr));
  min-width: min(100%, 470px);
  margin: 0;
  border-top: 1px solid rgba(255,255,255,.24);
  border-bottom: 1px solid rgba(255,255,255,.24);
}

.achievement-totals div {
  padding: 15px 18px;
  border-right: 1px solid rgba(255,255,255,.16);
}

.achievement-totals div:last-child {
  border-right: 0;
}

.achievement-totals dt {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.achievement-totals dd {
  margin: 7px 0 0;
  color: #9fb7d5;
  font-size: 0.625rem;
  font-weight: 700;
}

.achievement-showcase {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(560px, 1.48fr);
  gap: clamp(24px, 3vw, 48px);
  align-items: stretch;
}

.achievement-feature {
  --feature-accent: #e31f3d;
  --feature-secondary: #0c3d79;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 350px;
  padding: 28px;
  overflow: hidden;
  border-radius: 8px;
  background: #f7f9fc;
  color: #081b37;
  box-shadow: 0 25px 55px rgba(0,13,35,.22);
}

.achievement-feature::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 100%;
  background: var(--feature-accent);
  transform: scaleY(.22);
  transform-origin: top;
  transition: transform 420ms cubic-bezier(.2,.75,.25,1);
}

.achievement-feature:hover::after {
  transform: scaleY(1);
}

.feature-topline {
  display: flex;
  justify-content: space-between;
  color: #607087;
  font-size: 0.5625rem;
  font-weight: 800;
}

.feature-topline b {
  color: var(--feature-accent);
  font-size: 0.6875rem;
}

.feature-symbol {
  display: flex;
  margin: 24px 0 auto;
  color: var(--feature-accent);
  font-size: clamp(58px, 5.2vw, 88px);
  font-weight: 900;
  line-height: .8;
}

.feature-symbol span:last-child {
  margin: 19px 0 0 -9px;
  color: var(--feature-secondary);
  transition: transform 350ms cubic-bezier(.2,.75,.25,1);
}

.achievement-feature:hover .feature-symbol span:last-child {
  transform: translate(7px, -7px);
}

.achievement-feature > div:nth-of-type(3) strong {
  display: block;
  font-size: 1.4375rem;
  line-height: 1.12;
  white-space: pre-line;
}

.achievement-feature > div:nth-of-type(3) p {
  margin: 10px 0 0;
  color: #68768a;
  font-size: 0.6875rem;
  white-space: pre-line;
}

.achievement-feature.is-updating .feature-topline,
.achievement-feature.is-updating .feature-symbol,
.achievement-feature.is-updating > div:nth-of-type(3) {
  animation: feature-content-switch 360ms cubic-bezier(.2,.75,.25,1) both;
}

/* display 선언이 hidden 속성을 이기므로 명시적으로 되돌린다.
   개별 성과에는 연결할 상세 페이지가 없어 링크를 감춘다. */
.achievement-feature > a[hidden] { display: none; }

.achievement-feature > a {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid #dce3ec;
  color: #0b3c78;
  font-size: 0.6875rem;
  font-weight: 800;
}

.achievement-feature > a span {
  transition: transform 180ms ease;
}

.achievement-feature > a:hover span {
  transform: translate(3px, -3px);
}

.achievement-ledger {
  border-top: 1px solid rgba(255,255,255,.34);
}

.achievement-ledger article {
  display: grid;
  grid-template-columns: 42px minmax(240px, 1fr) minmax(120px, .45fr) 24px;
  gap: 18px;
  align-items: center;
  min-height: 70px;
  padding: 12px 12px 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.24);
  transition: padding 230ms ease, background 230ms ease, color 230ms ease;
  cursor: pointer;
  outline: none;
}

.achievement-ledger article:hover,
.achievement-ledger article:focus-visible,
.achievement-ledger article.is-active {
  padding-left: 14px;
  background: rgba(255,255,255,.09);
}

.achievement-ledger article:focus-visible {
  box-shadow: inset 3px 0 #8eb8ea;
}

.achievement-ledger article.is-active .ledger-index,
.achievement-ledger article.is-active i {
  color: #fff;
}

.ledger-index {
  color: #79a9df;
  font-size: 0.6875rem;
  font-weight: 800;
}

.achievement-ledger small,
.achievement-ledger strong {
  display: block;
}

.achievement-ledger small {
  margin-bottom: 4px;
  color: #80a9d9;
  font-size: 0.5rem;
  font-weight: 800;
}

.achievement-ledger strong {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
}

.achievement-ledger p {
  margin: 0;
  color: #a8bad1;
  font-size: 0.625rem;
}

.achievement-ledger i {
  color: #8cb4e2;
  font-size: 1rem;
  font-style: normal;
  transition: transform 180ms ease;
}

.achievement-ledger article:hover i,
.achievement-ledger article:focus-visible i,
.achievement-ledger article.is-active i {
  transform: translate(3px, -3px);
}

@keyframes feature-content-switch {
  0% { opacity: .25; transform: translateY(9px); }
  100% { opacity: 1; transform: translateY(0); }
}

.reference-achievements .achievement-note {
  margin-top: 20px;
  color: #8ea7c5;
  text-align: right;
}

.achievement-feature.reveal-ready,
.achievement-ledger article.reveal-ready {
  opacity: 0;
  transform: translateY(18px);
}

.achievement-feature.is-revealed,
.achievement-ledger article.is-revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(.2,.75,.25,1), padding 230ms ease, background 230ms ease;
}

.reference-dashboard {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1.1fr;
  gap: 16px;
  padding: 0 clamp(28px, 3vw, 46px) 28px;
  background: #f3f5f8;
}

.dashboard-panel {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 20px;
  border: 1px solid #e3e8ef;
  border-radius: 8px;
  background: #fff;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.dashboard-panel:hover {
  box-shadow: 0 16px 38px rgba(20,45,82,.1);
  transform: translateY(-4px);
}

.panel-heading h2 {
  color: #07152e;
  font-size: 1.0625rem;
}

.compact-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.compact-products a {
  min-width: 0;
  text-align: center;
}

.compact-products img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  border-radius: 6px;
  background: #f3f5f7;
  object-fit: cover;
  transition: transform 360ms cubic-bezier(.2,.75,.25,1);
}

.compact-products a:hover img {
  transform: scale(1.055);
}

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scene-copy-in {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes product-label-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes stat-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scene-light {
  0%, 55% { left: -25%; opacity: 0; }
  68% { opacity: .8; }
  82%, 100% { left: 112%; opacity: 0; }
}

.compact-products strong,
.compact-products small,
.compact-products b {
  display: block;
}

.compact-products strong { margin-top: 8px; font-size: 0.6875rem; }
.compact-products small { color: #6a7482; font-size: 0.5625rem; }
.compact-products b { margin-top: 10px; color: #073879; font-size: 0.5625rem; }

.business-types {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 14px;
}

.business-types div {
  padding: 0 5px;
  border-right: 1px solid #e3e8ef;
  text-align: center;
}

.business-types div:last-child { border-right: 0; }
.business-types i { display: block; color: #0f4e99; font-size: 1.4375rem; font-style: normal; }
.business-types strong, .business-types small { display: block; }
.business-types strong { margin-top: 5px; font-size: 0.625rem; }
.business-types small { color: #6f7988; font-size: 0.5rem; }

.partner-reasons {
  margin-top: auto;
  padding: 12px 14px;
  border-radius: 5px;
  background: #edf5ff;
}

.partner-reasons strong { color: #113a73; font-size: 0.5625rem; }
.partner-reasons p { margin: 6px 0 0; color: #193b68; font-size: 0.5625rem; line-height: 1.8; }
.panel-button { width: 100%; min-height: 34px; margin-top: 10px; font-size: 0.625rem; }

.network-visual {
  display: grid;
  grid-template-columns: 1fr 118px;
  gap: 12px;
  align-items: center;
  flex: 1;
}

.map-word {
  display: grid;
  place-items: center;
  min-height: 130px;
  border-radius: 50% 42% 48% 44%;
  background:
    radial-gradient(circle, rgba(36, 95, 163, .25) 1.2px, transparent 1.5px) 0 0 / 8px 8px,
    #f4f8fc;
  color: rgba(13, 72, 139, .36);
  font-size: 1.1875rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
}

.network-visual ul { margin: 0; padding: 0; list-style: none; }
.network-visual li { display: flex; gap: 7px; margin: 9px 0; color: #6e7887; font-size: 0.5rem; }
.network-visual li b { color: #dc273d; }
.network-visual li strong { display: block; color: #182438; font-size: 0.5625rem; }

.reference-contact {
  padding: 25px clamp(40px, 13vw, 210px);
  background: #073b7c;
}

.reference-contact h2 { font-size: 1.125rem; }
.reference-contact p { font-size: 0.6875rem; }
.reference-contact .mail-icon { flex-basis: 50px; width: 50px; height: 50px; }
.reference-contact .button { min-width: 180px; }

@media (max-width: 1180px) {
  .reference-header { grid-template-columns: auto auto; }
  .reference-hero-inner { min-height: 42.5rem; }
  .reference-hero-copy { width: 55%; }
  /* 아래 통계 행(left/width)과 좌우 거터를 맞춘다 */
  .reference-product-scene { top: 14.375rem; width: 100%; padding-left: 30px; padding-right: 30px; }
  .reference-stats { width: calc(100% - 60px); grid-template-columns: repeat(5, 1fr); }
  .achievement-row { grid-template-columns: repeat(3, 1fr); }
  .achievement-intro { align-items: flex-start; }
  .achievement-showcase { grid-template-columns: minmax(260px, .75fr) minmax(460px, 1.25fr); }
  .achievement-ledger article { grid-template-columns: 36px minmax(220px, 1fr) 22px; }
  .achievement-ledger article p { display: none; }
  .reference-dashboard { grid-template-columns: 1fr 1fr; }
  .network-panel { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .reference-header { position: sticky; }
  .reference-hero-inner { min-height: auto; padding-bottom: 26px; }
  .reference-hero-copy { width: 100%; padding: 36px 20px 18px; }
  .reference-hero-copy h1 { font-size: 2.375rem; }
  .reference-hero-copy .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .reference-hero-copy .button { width: 100%; min-width: 0; padding: 0 10px; }
  .reference-product-scene { position: relative; top: auto; width: 100%; height: auto; min-height: 0; padding: 4px 20px 10px; }
  .scene-message { text-align: left; font-size: 0.875rem; }
  .scene-message::before { margin: 0 auto 9px 0; }
  .scene-grid { grid-template-columns: repeat(2, 1fr); }
  .reference-stats { position: relative; left: auto; bottom: auto; grid-template-columns: repeat(2, 1fr); gap: 18px; width: auto; margin: 22px 20px 0; }
  .reference-stats li:last-child { grid-column: 1 / -1; }
  .reference-achievements { padding: 44px 20px 28px; }
  .achievement-intro { align-items: stretch; flex-direction: column; gap: 26px; margin-bottom: 28px; }
  .achievement-intro .reference-section-heading h2 { font-size: 2.125rem; }
  .achievement-totals { min-width: 0; width: 100%; }
  .achievement-totals div { padding: 13px 10px; }
  .achievement-totals dt { font-size: 1.625rem; }
  .achievement-showcase { grid-template-columns: 1fr; gap: 28px; }
  .achievement-feature { min-height: 320px; }
  .achievement-ledger article { grid-template-columns: 32px minmax(0, 1fr) 20px; gap: 10px; min-height: 76px; }
  .achievement-ledger strong { font-size: 0.75rem; word-break: keep-all; }
  .reference-achievements .achievement-note { text-align: left; line-height: 1.5; }
  .achievement-row { grid-template-columns: repeat(2, 1fr); }
  .reference-dashboard { grid-template-columns: 1fr; padding: 0 20px 24px; }
  .network-panel { grid-column: auto; }
  .compact-products { grid-template-columns: repeat(2, 1fr); gap: 16px 10px; }
  .business-types { grid-template-columns: repeat(3, 1fr); row-gap: 18px; }
  .business-types div:nth-child(3) { border-right: 0; }
  .network-visual { grid-template-columns: 1fr; }
  .reference-contact { padding: 28px 20px; }
}

@media (max-width: 420px) {
  .reference-hero-copy h1 { font-size: 2.0625rem; }
  .reference-hero-copy p { font-size: 0.875rem; }
  .reference-hero-copy .hero-actions { grid-template-columns: 1fr; }
  .achievement-row { grid-template-columns: 1fr 1fr; gap: 8px; }
  .achievement-row article { min-height: 144px; }
}

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

/* Editorial inner pages */
.inner-page {
  background: #f6f7f9;
}

.inner-page .reference-header {
  position: sticky;
}

.inner-page [data-reveal].reveal-ready {
  opacity: 0;
  transform: translateY(24px);
}

.inner-page [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 720ms ease, transform 720ms cubic-bezier(.2,.75,.25,1);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  color: #0b3d79;
  font-size: 0.75rem;
  font-weight: 800;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

/* Product catalogue */
.product-editorial-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  background: #eef2f5;
  overflow: hidden;
}

.inner-hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  grid-template-rows: auto auto auto;
  align-content: center;
  column-gap: clamp(40px, 8vw, 130px);
  min-height: calc(var(--masthead-min-h) - 20px);
  padding: var(--masthead-pad-y) clamp(32px, 5vw, 76px);
  background: #fff;
}

.inner-hero-copy .eyebrow {
  grid-column: 1;
  color: #56718f;
}

.inner-hero-copy h1 {
  grid-column: 1;
  grid-row: 2 / span 2;
  margin: 14px 0 22px;
  color: #082f68;
  font-size: clamp(54px, 6vw, 92px);
  font-weight: 800;
  line-height: .98;
}

.inner-hero-copy p {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  max-width: 490px;
  margin: 0 0 34px;
  color: #43536a;
  font-size: 1rem;
  word-break: keep-all;
}

.inner-hero-copy .text-link {
  grid-column: 2;
  grid-row: 3;
  align-self: start;
  width: fit-content;
}

.product-hero-media {
  --scene-x: 0px;
  --scene-y: 0px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
  /* 4:3 원본을 4칸으로 나누므로, 3/1이면 카드가 너무 세로로 길어 좌우가 46%나 잘렸다.
     기존 합성 이미지의 패널 비율(약 0.87)에 맞춰 크롭을 줄인다. */
  aspect-ratio: 3.6 / 1;
  background: #edf1f4;
}

.product-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(8,47,104,.08);
  pointer-events: none;
}

.hero-lineup {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-shot {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: #e8edf2;
}

/* 컷이 머무는 9초 내내 아주 느리게 확대·이동한다. 멈춘 사진이 아니라
   숨 쉬는 화면처럼 보이게 하는 부분이라 전환보다 이쪽이 더 중요하다.
   카드마다 --drift-x/y 방향이 달라 넷이 같은 방향으로 흐르지 않는다. */
@keyframes hero-drift {
  from { transform: scale(1) translate3d(0, 0, 0); }
  to { transform: scale(1.075) translate3d(var(--drift-x), var(--drift-y), 0); }
}

.hero-shot img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1);
  /* 나가는 컷은 드리프트를 이어받아 같은 속도로 계속 흐른다. 되감기면 눈에 띈다. */
  transition: opacity 2000ms ease, transform 2000ms linear;
  will-change: opacity, transform;
}

.hero-shot img.is-active {
  opacity: 1;
  animation: hero-drift 11000ms linear both;
}

.hero-shot img.is-leaving {
  opacity: 0;
  transform: scale(1.075) translate3d(var(--drift-x), var(--drift-y), 0);
}

@media (prefers-reduced-motion: reduce) {
  .hero-shot img { transition-duration: 1ms; }
  .hero-shot img.is-active { animation: none; }
}

@media (max-width: 760px) {
  /* 2×2로 접히므로 3:1 비율을 유지하면 카드가 납작해진다. */
  .product-hero-media { aspect-ratio: 1 / 1; }
  .hero-lineup { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

.product-hero-media > img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  transform: translate3d(var(--scene-x), var(--scene-y), 0) scale(1.005);
  transition: transform 700ms cubic-bezier(.2,.75,.25,1);
}

.hero-collection-count {
  position: absolute;
  top: 24px;
  right: 24px;
  bottom: auto;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 6px;
  background: rgba(255,255,255,.82);
  color: #082f68;
  backdrop-filter: blur(10px);
}

.hero-collection-count strong {
  font-size: 2.875rem;
  line-height: .8;
}

.hero-collection-count span {
  font-size: 0.5rem;
  font-weight: 800;
  line-height: 1.35;
}

.catalogue-index {
  position: sticky;
  top: 74px;
  z-index: 12;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #d8e0ea;
  border-bottom: 1px solid #d8e0ea;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
}

.catalogue-index a {
  padding: 16px clamp(14px, 2vw, 28px);
  border-right: 1px solid #d8e0ea;
  color: #10223a;
  font-size: 0.75rem;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease;
}

.catalogue-index a:last-child { border-right: 0; }
.catalogue-index a:hover { background: #082f68; color: #fff; }
.catalogue-index span { margin-right: 12px; color: #7190b3; font-size: 0.5625rem; }

.product-catalogue {
  padding: 40px clamp(24px, 4vw, 64px) 100px;
  background: #f6f7f9;
}

.catalog-product {
  display: grid;
  grid-template-columns: 100px minmax(480px, 1.45fr) minmax(290px, .75fr);
  gap: clamp(28px, 4vw, 62px);
  align-items: center;
  min-height: 570px;
  padding: 70px 0;
  border-bottom: 1px solid #ccd6e3;
  scroll-margin-top: 122px;
}

.catalog-number {
  align-self: start;
  padding-top: 8px;
}

.catalog-number span,
.catalog-number small {
  display: block;
}

.catalog-number span { color: #0b3d79; font-size: 1.75rem; font-weight: 800; }
.catalog-number small { margin-top: 8px; color: #718097; font-size: 0.5rem; font-weight: 800; writing-mode: vertical-rl; }

.catalog-product figure {
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #e8edf2;
  box-shadow: 0 25px 55px rgba(15,40,72,.14);
  transition: box-shadow 480ms ease, transform 720ms cubic-bezier(.2,.75,.25,1);
}

.catalog-product figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(.2,.75,.25,1);
}

.catalog-product:hover figure img { transform: scale(1.035); }
.catalog-product-reverse {
  grid-template-columns: 100px minmax(290px, .75fr) minmax(480px, 1.45fr);
}
.catalog-product-reverse figure { order: 3; }
.catalog-product-reverse .catalog-copy { order: 2; }

.catalog-copy > span { color: #6180a5; font-size: 0.5625rem; font-weight: 800; }
.catalog-copy h2 { margin: 8px 0 15px; color: #082f68; font-size: clamp(38px, 4vw, 58px); line-height: 1; }
.catalog-copy p { margin: 0; color: #4f5d70; font-size: 0.875rem; word-break: keep-all; }
.catalog-copy ul { display: flex; flex-wrap: wrap; gap: 7px; margin: 24px 0 32px; padding: 0; list-style: none; }
.catalog-copy li { padding: 7px 10px; border: 1px solid #ccd6e3; border-radius: 999px; color: #36506f; font-size: 0.5625rem; font-weight: 700; }
.catalog-cta { display: flex; justify-content: space-between; padding: 13px 0; border-top: 1px solid #9fb0c4; border-bottom: 1px solid #9fb0c4; color: #082f68; font-size: 0.6875rem; font-weight: 800; }
.catalog-cta span { transition: transform 180ms ease; }
.catalog-cta:hover span { transform: translate(3px, -3px); }
.demo-commerce-note { display: flex; align-items: center; gap: 10px; margin: 28px 0 0 !important; color: #607086 !important; font-size: 0.625rem !important; }

/* 카탈로그 이미지를 퀵뷰 트리거 버튼으로 쓴다 */
.catalog-media {
  display: block;
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  font: inherit;
  text-align: left;
}

.catalog-media-hint {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(8, 47, 104, .84);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 260ms ease, transform 260ms ease;
  pointer-events: none;
}

.catalog-product:hover .catalog-media-hint,
.catalog-media:focus-visible .catalog-media-hint { opacity: 1; transform: translateY(0); }

/* 제품 퀵뷰 모달 */
.quickview-modal {
  width: min(1120px, calc(100vw - 36px));
  max-width: none;
  max-height: calc(100dvh - 36px);
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 35px 110px rgba(3, 18, 37, .34);
  color: #102a43;
}

.quickview-modal::backdrop { background: rgba(3, 16, 33, .72); backdrop-filter: blur(5px); }

.quickview-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  max-height: calc(100dvh - 36px);
}

.quickview-close {
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(8,47,104,.16);
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  color: #082f68;
  font-size: 1.1875rem;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease;
}

.quickview-close:hover { background: #e8edf2; }

.quickview-gallery { display: flex; flex-direction: column; gap: 12px; padding: 20px; background: #f1f4f8; }

.quickview-stage { position: relative; overflow: hidden; border-radius: 6px; background: #e8edf2; }
.quickview-stage img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.quickview-nav {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(8,47,104,.14);
  border-radius: 50%;
  background: rgba(255,255,255,.88);
  color: #082f68;
  font-size: 1.375rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease;
}

.quickview-nav:hover { background: #fff; }
.quickview-prev { left: 12px; }
.quickview-next { right: 12px; }

.quickview-counter {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(8,47,104,.8);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 800;
}

.quickview-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }

.quickview-thumbs button {
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 5px;
  background: #e8edf2;
  cursor: pointer;
}

.quickview-thumbs button.is-active { border-color: #082f68; }
.quickview-thumbs img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.quickview-info { display: flex; flex-direction: column; overflow-y: auto; padding: 52px 34px 30px; }
.quickview-eyebrow { color: #6180a5; font-size: 0.5625rem; font-weight: 800; letter-spacing: .04em; }
.quickview-info h2 { margin: 8px 0 14px; color: #082f68; font-size: clamp(30px, 3vw, 42px); line-height: 1.02; }
.quickview-desc { margin: 0; color: #4f5d70; font-size: 0.875rem; line-height: 1.6; word-break: keep-all; }

.quickview-features { display: flex; flex-wrap: wrap; gap: 7px; margin: 20px 0 0; padding: 0; list-style: none; }
.quickview-features li { padding: 7px 10px; border: 1px solid #ccd6e3; border-radius: 999px; color: #36506f; font-size: 0.5625rem; font-weight: 700; }

.quickview-price { display: flex; align-items: baseline; gap: 9px; margin-top: auto; padding-top: 26px; }
.quickview-price strong { color: #082f68; font-size: 1.625rem; font-weight: 850; }
.quickview-price small { color: #7c8aa0; font-size: 0.625rem; font-weight: 700; }

.quickview-actions { display: grid; gap: 9px; margin-top: 16px; }
.quickview-actions .button { width: 100%; }

.quickview-pdf {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 12px;
  border: 1px solid #9fb0c4;
  border-radius: 3px;
  color: #082f68;
  font-size: 0.6875rem;
  font-weight: 800;
}

.quickview-pdf span { transition: transform 180ms ease; }
.quickview-pdf:hover span { transform: translate(3px, -3px); }
.demo-commerce-note strong { padding: 5px 7px; border: 1px solid #168675; border-radius: 3px; color: #126c5e; font-size: 0.5rem; }
.product-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.product-actions .catalog-cta { align-items: center; padding: 14px 12px; border: 1px solid #9fb0c4; }
.product-buy { display: flex; align-items: center; justify-content: space-between; gap: 15px; min-height: 48px; padding: 10px 12px; border: 1px solid #082f68; border-radius: 3px; background: #082f68; color: #fff; cursor: pointer; text-align: left; transition: background 180ms ease, transform 180ms ease; }
.product-buy:hover { background: #0d448a; transform: translateY(-2px); }
.product-buy span { font-size: 0.625rem; font-weight: 800; }
.product-buy b { color: #b8d4f2; font-size: 0.5rem; white-space: nowrap; }

/* Demo checkout */
.checkout-modal { width: min(1280px, calc(100vw - 36px)); max-width: none; height: min(900px, calc(100dvh - 36px)); max-height: none; margin: auto; padding: 0; overflow: hidden; border: 0; border-radius: 6px; background: #f8fafc; box-shadow: 0 35px 110px rgba(3, 18, 37, .34); color: #102a43; }
.checkout-modal::backdrop { background: rgba(3, 16, 33, .72); backdrop-filter: blur(5px); }
.checkout-shell { display: flex; flex-direction: column; height: 100%; overflow: auto; }
.checkout-header { position: sticky; top: 0; z-index: 5; display: flex; align-items: center; justify-content: space-between; min-height: 70px; padding: 0 24px; border-bottom: 1px solid #d5dee8; background: rgba(255,255,255,.96); backdrop-filter: blur(10px); }
.checkout-brand { display: flex; align-items: baseline; gap: 12px; color: #082f68; }
.checkout-brand strong { font-size: 1.0625rem; }
.checkout-brand span { color: #168675; font-size: 0.5rem; font-weight: 800; }
.checkout-close { display: grid; place-items: center; width: 38px; height: 38px; padding: 0; border: 1px solid #c5d0dc; border-radius: 50%; background: #fff; color: #082f68; cursor: pointer; font-size: 1.5rem; line-height: 1; }
.checkout-demo-banner { display: flex; align-items: center; gap: 14px; padding: 10px 24px; border-bottom: 1px solid #d7e4e1; background: #e7f3f0; }
.checkout-demo-banner strong { padding: 4px 6px; border-radius: 3px; background: #168675; color: #fff; font-size: 0.5rem; }
.checkout-demo-banner p { margin: 0; color: #416962; font-size: 0.5625rem; }
.checkout-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(340px, .65fr); flex: 1; }
.checkout-layout[hidden], .card-fields[hidden] { display: none; }
.checkout-details { padding: 48px clamp(30px, 5vw, 70px) 70px; background: #fff; }
.checkout-heading > span { color: #168675; font-size: 0.5625rem; font-weight: 800; }
.checkout-heading h2 { margin: 10px 0 42px; color: #082f68; font-size: clamp(34px, 3.5vw, 52px); line-height: 1.05; }
.checkout-section { padding: 25px 0 32px; border-top: 1px solid #c9d4df; }
.checkout-section-title { display: grid; grid-template-columns: 36px 1fr; align-items: baseline; margin-bottom: 22px; }
.checkout-section-title span { color: #168675; font-size: 0.5625rem; font-weight: 800; }
.checkout-section-title h3 { margin: 0; color: #173d67; font-size: 1rem; }
.checkout-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 19px 16px; }
.checkout-fields label { display: grid; gap: 7px; }
.checkout-fields label > span { color: #52657d; font-size: 0.5rem; font-weight: 800; }
.checkout-fields .field-wide { grid-column: 1 / -1; }
.checkout-fields input { width: 100%; min-height: 45px; padding: 10px 12px; border: 1px solid #bdc9d6; border-radius: 3px; outline: 0; background: #fff; color: #102a43; font-size: 0.75rem; transition: border-color 160ms ease, box-shadow 160ms ease; }
.checkout-fields input:focus { border-color: #0b3d79; box-shadow: 0 0 0 3px rgba(11,61,121,.1); }
.checkout-fields input[aria-invalid="true"] { border-color: #c62d48; }
.delivery-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 22px; }
.delivery-options label { display: grid; grid-template-columns: 18px 1fr auto; gap: 10px; align-items: center; min-height: 72px; padding: 13px; border: 1px solid #c8d3df; border-radius: 4px; cursor: pointer; transition: border-color 160ms ease, background 160ms ease; }
.delivery-options label:has(input:checked) { border-color: #0b3d79; background: #f1f6fb; }
.delivery-options input, .payment-options input { accent-color: #0b3d79; }
.delivery-options span { display: grid; gap: 3px; }
.delivery-options strong { color: #173d67; font-size: 0.625rem; }
.delivery-options small { color: #7a899b; font-size: 0.5rem; }
.delivery-options b { color: #173d67; font-size: 0.5625rem; }
.payment-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-bottom: 22px; }
.payment-options label { display: flex; align-items: center; gap: 8px; min-height: 50px; padding: 10px; border: 1px solid #c8d3df; border-radius: 4px; cursor: pointer; color: #36506f; font-size: 0.5625rem; font-weight: 800; }
.payment-options label:has(input:checked) { border-color: #0b3d79; background: #f1f6fb; color: #082f68; }
.payment-demo-note { margin: -8px 0 18px; color: #b2374e; font-size: 0.5rem; font-weight: 700; }
.checkout-summary { position: sticky; top: 70px; align-self: start; min-height: calc(100dvh - 176px); padding: 42px 32px; background: #07182f; color: #fff; }
.summary-kicker { display: flex; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.2); color: #83a6cf; font-size: 0.5rem; }
.summary-kicker strong { color: #45b9a5; }
.summary-product { display: grid; grid-template-columns: 92px 1fr auto; gap: 15px; align-items: start; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.summary-product img { width: 92px; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 3px; background: #fff; }
.summary-product h3 { margin: 2px 0 4px; color: #fff; font-size: 0.9375rem; }
.summary-product p { margin: 0 0 16px; color: #8195ad; font-size: 0.5rem; }
.summary-product > strong { color: #dce8f5; font-size: 0.625rem; white-space: nowrap; }
.quantity-control { display: grid; grid-template-columns: 28px 28px 28px; width: fit-content; border: 1px solid rgba(255,255,255,.25); border-radius: 3px; }
.quantity-control button, .quantity-control output { display: grid; place-items: center; width: 28px; height: 27px; padding: 0; border: 0; background: transparent; color: #fff; font-size: 0.6875rem; }
.quantity-control button { cursor: pointer; }
.quantity-control button:hover { background: rgba(255,255,255,.1); }
.summary-totals { margin: 24px 0 30px; }
.summary-totals div { display: flex; justify-content: space-between; padding: 7px 0; color: #9bacc0; font-size: 0.5625rem; }
.summary-totals dd { margin: 0; color: #dce8f5; }
.summary-totals .summary-total { margin-top: 15px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.22); color: #fff; font-size: 0.75rem; font-weight: 800; }
.summary-total dd { color: #fff; font-size: 1.0625rem; }
.checkout-pay { display: flex; align-items: center; justify-content: space-between; width: 100%; min-height: 54px; padding: 0 17px; border: 0; border-radius: 4px; background: #36b7a0; color: #062d35; cursor: pointer; font-size: 0.6875rem; font-weight: 900; }
.checkout-pay i { font-size: 1.125rem; font-style: normal; transition: transform 180ms ease; }
.checkout-pay:hover i { transform: translateX(4px); }
.checkout-pay-note { margin: 10px 0 0; color: #8195ad; font-size: 0.5rem; text-align: center; }
.checkout-complete { display: grid; place-items: center; flex: 1; padding: 70px 24px; background: #fff; text-align: center; outline: 0; }
.checkout-complete[hidden] { display: none; }
.checkout-complete-mark { display: grid; place-items: center; width: 62px; height: 62px; margin-bottom: 26px; border-radius: 50%; background: #dcefeb; color: #126c5e; font-size: 1.6875rem; font-weight: 900; }
.checkout-complete > p:first-of-type { margin: 0 0 12px; color: #168675; font-size: 0.5625rem; font-weight: 800; }
.checkout-complete h2 { margin: 0; color: #082f68; font-size: clamp(36px, 5vw, 64px); }
.checkout-complete h2 + p { max-width: 490px; margin: 18px 0 35px; color: #657589; font-size: 0.75rem; line-height: 1.7; }
.checkout-complete > div { display: grid; gap: 5px; min-width: 250px; padding: 16px 25px; border-top: 1px solid #bdc9d6; border-bottom: 1px solid #bdc9d6; }
.checkout-complete > div span { color: #7790aa; font-size: 0.5rem; }
.checkout-complete > div strong { color: #082f68; font-size: 1rem; }
.checkout-complete > button { margin-top: 32px; padding: 12px 20px; border: 0; border-radius: 3px; background: #082f68; color: #fff; cursor: pointer; font-size: 0.5625rem; font-weight: 800; }

/* About */
.about-manifesto {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .6fr;
  align-items: end;
  align-content: center;
  min-height: calc(var(--masthead-min-h) + 60px);
  padding: var(--masthead-pad-y) clamp(28px, 5vw, 76px);
  overflow: hidden;
  background: #f8fafc;
}

.about-manifesto h1 {
  position: relative;
  z-index: 2;
  margin: 16px 0 0;
  color: #082f68;
  font-size: clamp(68px, 8vw, 126px);
  line-height: .88;
}

.about-manifesto h1 em { color: #168675; font-style: normal; }
.about-manifesto > p { position: relative; z-index: 2; max-width: 420px; margin: 0 0 12px; color: #465b73; font-size: 1.125rem; word-break: keep-all; }
.manifesto-orbit { position: absolute; top: 50%; right: 8%; width: 330px; aspect-ratio: 1; transform: translateY(-50%); border: 1px solid rgba(8,47,104,.14); border-radius: 50%; }
.manifesto-orbit::before, .manifesto-orbit::after { content:""; position:absolute; inset: 17%; border: 1px solid rgba(8,47,104,.14); border-radius: 50%; }
.manifesto-orbit::after { inset: 34%; }
.manifesto-orbit span { position: absolute; padding: 5px 8px; background: #f8fafc; color: #0b3d79; font-size: 0.5625rem; font-weight: 800; }
.manifesto-orbit span:nth-child(1) { top: -8px; left: 48%; }
.manifesto-orbit span:nth-child(2) { right: -15px; top: 52%; }
.manifesto-orbit span:nth-child(3) { bottom: 25px; left: 9%; }

.about-story-band { display: grid; grid-template-columns: 1.15fr .85fr; min-height: 520px; background: #dcefeb; }
.about-story-media { display: flex; align-items: center; overflow: hidden; }

/* 제품 라인업 마퀴 — .contact-marquee와 같은 방식(내용 2벌 + translateX(-50%))이라
   한 벌 폭만큼 이동하면 이음매 없이 되감긴다. 세트 수를 바꾸면 -50%도 함께 바꿔야 한다. */
.story-marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.story-track {
  display: flex;
  width: max-content;
  /* 세트당 12장 기준. 카드 수를 바꾸면 체감 속도가 유지되도록 이 값도 비례해서 조정할 것 */
  animation: story-marquee 114s linear infinite;
}

.story-marquee:hover .story-track { animation-play-state: paused; }

@keyframes story-marquee { to { transform: translateX(-50%); } }

.story-set {
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0 9px;
  list-style: none;
}

.story-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 clamp(210px, 20vw, 272px);
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(16, 42, 67, .1);
}

.story-card-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eff3f8;
}

.story-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(226,236,246,.16), rgba(226,236,246,.32));
}

.story-card-caption { display: block; padding: 10px 13px 13px; }
.story-card-caption strong { display: block; color: #0b2440; font-size: 0.8125rem; font-weight: 850; letter-spacing: -.01em; }
.story-card-caption small { display: block; margin-top: 3px; color: #52627a; font-size: 0.65625rem; font-weight: 650; }
.about-story-copy { display: flex; flex-direction: column; justify-content: center; padding: 60px clamp(30px, 5vw, 80px); }
.about-story-copy > span, .section-editorial-heading > span { color: #357565; font-size: 0.625rem; font-weight: 800; }
.about-story-copy h2, .section-editorial-heading h2 { margin: 10px 0 20px; color: #102a43; font-size: clamp(32px, 3.4vw, 50px); line-height: 1.12; }
.about-story-copy p { margin: 0 0 30px; color: #3f5d5a; font-size: 0.875rem; word-break: keep-all; }
.about-story-copy .text-link { width: fit-content; color: #155f52; }

.operating-model { padding: 90px clamp(24px, 5vw, 76px); background: #fff; }
.section-editorial-heading { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 45px; }
.section-editorial-heading h2 { margin-top: 0; }
.operating-strips { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #bdc9d7; border-bottom: 1px solid #bdc9d7; }
.operating-strips article { display: flex; flex-direction: column; min-height: 330px; padding: 22px; border-right: 1px solid #bdc9d7; transition: background 240ms ease, color 240ms ease, transform 240ms ease; }
.operating-strips article:last-child { border-right: 0; }
.operating-strips article:hover { background: #082f68; color: #fff; transform: translateY(-8px); }
.operating-strips article > span { color: #7390b2; font-size: 0.625rem; font-weight: 800; }
.operating-strips h3 { margin: 45px 0 14px; color: #0a376f; font-size: 1.6875rem; }
.operating-strips article:hover h3, .operating-strips article:hover p { color: #fff; }
.operating-strips p { margin: 0; color: #5f6d80; font-size: 0.75rem; word-break: keep-all; }
.operating-strips b { margin-top: auto; color: #168675; font-size: 0.625rem; }

.history-section { padding: 90px clamp(24px, 5vw, 76px) 110px; background: #07182f; color: #fff; }
.history-section .section-editorial-heading > span { color: #78a6da; }
.history-section .section-editorial-heading h2 { color: #fff; }
.history-track { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; list-style: none; }
.history-track li { position: relative; padding-right: 28px; }
.history-track time { color: #fff; font-size: 2.125rem; font-weight: 800; }
.history-track li > span { display: block; position: relative; height: 1px; margin: 22px 0; background: rgba(255,255,255,.3); }
.history-track li > span::before { content:""; position:absolute; top:-4px; left:0; width:9px; height:9px; border-radius:50%; background:#25a18e; box-shadow:0 0 0 6px rgba(37,161,142,.15); }
.history-track strong { color: #8db3df; font-size: 0.625rem; }
.history-track p { margin: 8px 0 0; color: #b5c3d6; font-size: 0.75rem; word-break: keep-all; }

/* Newsroom */
.news-masthead { display: grid; grid-template-columns: 1fr .55fr; align-items: end; align-content: center; min-height: var(--masthead-min-h); padding: var(--masthead-pad-y) clamp(28px, 5vw, 76px); background: #fff; }
.news-masthead h1 { margin: 14px 0 0; color: #082f68; font-size: clamp(68px, 8vw, 120px); line-height: .85; }
.news-masthead > p { max-width: 430px; margin: 0 0 10px; color: #516176; font-size: 1.0625rem; word-break: keep-all; }
.featured-news { display: grid; grid-template-columns: .82fr 1.18fr; min-height: 560px; background: #edf1f5; }
.featured-news-visual { position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; background: #082f68; color: #fff; }
.featured-news-visual span { font-size: clamp(120px, 16vw, 240px); font-weight: 900; line-height: .7; }
.featured-news-visual span:nth-child(1) { color: #e42a45; }
.featured-news-visual span:nth-child(2) { margin: 70px 0 0 -28px; }
.featured-news-visual b { position: absolute; right: 24px; top: 22px; color: #9ebce0; font-size: 0.6875rem; }
.featured-news article { display: flex; flex-direction: column; justify-content: center; padding: 60px clamp(32px, 6vw, 92px); }
.news-meta { display: flex; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px solid #bdc9d7; color: #6f8198; font-size: 0.5625rem; font-weight: 800; }
.featured-news h2 { margin: 40px 0 22px; color: #082f68; font-size: clamp(42px, 5vw, 72px); line-height: .98; }
.featured-news article > p { max-width: 560px; margin: 0 0 38px; color: #516176; font-size: 0.9375rem; word-break: keep-all; }
.featured-news .text-link { width: fit-content; }
.news-source-actions { display: flex; flex-wrap: wrap; gap: 28px; }
.news-archive { padding: 90px clamp(24px, 5vw, 76px) 110px; background: #f8fafc; }
.news-archive-heading { display: grid; grid-template-columns: .3fr 1fr .5fr; gap: 24px; align-items: end; margin-bottom: 42px; }
.news-archive-heading > span { color: #6583a6; font-size: 0.625rem; font-weight: 800; }
.news-archive-heading h2 { margin: 0; color: #102a43; font-size: 2.125rem; }
.news-archive-heading p { margin: 0; color: #8290a3; font-size: 0.5625rem; text-align: right; }
.news-editorial-list { border-top: 1px solid #aebdce; }
.news-editorial-list article { display: grid; grid-template-columns: 70px minmax(280px, .9fr) minmax(300px, 1.1fr) auto; gap: 18px 24px; align-items: center; min-height: 150px; padding: 24px 8px 24px 0; border-bottom: 1px solid #bdc9d7; transition: padding 230ms ease, background 230ms ease; }
.news-editorial-list article:hover { padding-left: 16px; background: #edf3f8; }
.news-index { color: #6f8eaf; font-size: 0.75rem; font-weight: 800; }
.news-editorial-list small { color: #7594b7; font-size: 0.5rem; font-weight: 800; }
.news-editorial-list h3 { margin: 5px 0 0; color: #102a43; font-size: 1.25rem; }
.news-editorial-list p { margin: 0; color: #607086; font-size: 0.75rem; word-break: keep-all; }
.news-editorial-list > article > a { color: #0b3d79; font-size: 0.5625rem; font-weight: 800; white-space: nowrap; transition: transform 180ms ease; }
.news-editorial-list article:hover > a { transform: translate(3px,-3px); }
.news-record { grid-column: 2 / -1; display: grid; grid-template-columns: 150px 1fr; gap: 18px; padding-top: 14px; border-top: 1px solid #d8e0ea; color: #718097; font-size: 0.5625rem; }
.news-record strong { color: #41617f; }

/* Contact workspace */
.contact-masthead { display: grid; grid-template-columns: 1fr .52fr; align-items: end; align-content: center; min-height: var(--masthead-min-h); padding: var(--masthead-pad-y) clamp(28px, 5vw, 76px); background: #dcefeb; }
.contact-masthead h1 { margin: 14px 0 0; color: #082f68; font-size: clamp(62px, 7.5vw, 112px); line-height: .89; }
.contact-masthead-side { padding-bottom: 8px; }
.contact-masthead-side p { max-width: 430px; margin: 0 0 28px; color: #355c59; font-size: 1rem; word-break: keep-all; }
.contact-masthead-side a { display: flex; justify-content: space-between; padding: 12px 0; border-top: 1px solid #7ba69f; border-bottom: 1px solid #7ba69f; color: #145e53; font-size: 0.75rem; font-weight: 800; }
.contact-marquee { overflow: hidden; padding: 14px 0; background: #082f68; color: #fff; white-space: nowrap; }
.contact-marquee div { width: max-content; font-size: 0.75rem; font-weight: 800; animation: contact-marquee 22s linear infinite; }
@keyframes contact-marquee { to { transform: translateX(-50%); } }
.contact-workspace { display: grid; grid-template-columns: .78fr 1.22fr; min-height: 760px; }
.contact-brief { padding: 65px clamp(30px, 5vw, 72px); background: #07182f; color: #fff; }
.contact-brief > span { color: #7fa8d6; font-size: 0.5625rem; font-weight: 800; }
.contact-brief > h2 { margin: 18px 0 46px; font-size: clamp(34px, 3.4vw, 51px); line-height: 1.08; }
.contact-brief dl { margin: 0; }
.contact-brief dl div { display: grid; grid-template-columns: 92px 1fr; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.18); }
.contact-brief dt { color: #7fa8d6; font-size: 0.5rem; font-weight: 800; }
.contact-brief dd { margin: 0; color: #d9e3f0; font-size: 0.6875rem; }
.contact-process { margin: 45px 0 0; padding: 0; list-style: none; }
.contact-process li { display: grid; grid-template-columns: 35px 1fr; gap: 12px; padding: 12px 0; border-top: 1px solid rgba(255,255,255,.14); }
.contact-process li > span { color: #40b9a4; font-size: 0.5625rem; font-weight: 800; }
.contact-process p { margin: 0; color: #93a5bb; font-size: 0.625rem; }
.contact-process strong { display: block; margin-bottom: 3px; color: #fff; font-size: 0.75rem; }
.contact-inquiry-form { padding: 65px clamp(30px, 7vw, 105px); background: #fff; }
.contact-inquiry-form.is-complete { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; min-height: 760px; }
.contact-inquiry-form.is-complete .form-status { display: none; }
.form-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
.form-heading > span { color: #6284aa; font-size: 0.5625rem; font-weight: 800; }
.form-heading h2 { margin: 10px 0 12px; color: #082f68; font-size: clamp(38px, 4vw, 58px); line-height: 1.04; }
.form-heading p { margin: 0 0 30px; color: #7a8798; font-size: 0.625rem; }
.inquiry-progress { display: grid; grid-template-columns: repeat(2, 1fr); margin: 0 0 36px; padding: 0; border-top: 1px solid #c8d3df; list-style: none; }
.inquiry-progress li { display: grid; grid-template-columns: 28px 1fr; gap: 9px; padding: 13px 0; border-bottom: 1px solid #c8d3df; color: #8a98aa; transition: color 200ms ease, border-color 200ms ease; }
.inquiry-progress li:first-child { margin-right: 12px; }
.inquiry-progress li:last-child { margin-left: 12px; }
.inquiry-progress li span { font-size: 0.5625rem; font-weight: 800; }
.inquiry-progress li strong { font-size: 0.625rem; }
.inquiry-progress li.is-active { border-bottom-color: #082f68; color: #082f68; }
.inquiry-progress li.is-complete { border-bottom-color: #168675; color: #168675; }
.step-heading { margin-bottom: 27px; }
.step-heading > span { color: #168675; font-size: 0.5625rem; font-weight: 800; }
.step-heading h3 { margin: 7px 0 0; color: #102a43; font-size: 1.1875rem; line-height: 1.35; }
.inquiry-step.is-active { animation: inquiry-step-in 320ms cubic-bezier(.2,.75,.25,1) both; }
@keyframes inquiry-step-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.form-field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 18px; }
.contact-inquiry-form label { display: grid; gap: 8px; }
.contact-inquiry-form label > span { color: #52657d; font-size: 0.5625rem; font-weight: 800; }
.field-wide { grid-column: 1 / -1; }
.contact-inquiry-form input, .contact-inquiry-form select, .contact-inquiry-form textarea { width: 100%; padding: 12px 0; border: 0; border-bottom: 1px solid #aebdce; border-radius: 0; outline: 0; background: transparent; color: #102a43; transition: border-color 180ms ease; }
.contact-inquiry-form textarea { resize: vertical; }
.contact-inquiry-form input:focus, .contact-inquiry-form select:focus, .contact-inquiry-form textarea:focus { border-color: #0b3d79; }
.contact-inquiry-form [aria-invalid="true"] { border-color: #cf334e; }
.contact-inquiry-form .consent-field { display: flex; grid-template-columns: none; flex-direction: row; align-items: flex-start; gap: 10px; }
.contact-inquiry-form .consent-field input { flex: 0 0 auto; width: 16px; height: 16px; margin: 2px 0 0; accent-color: #082f68; }
.contact-inquiry-form .consent-field span { color: #607086; font-size: 0.625rem; font-weight: 500; line-height: 1.6; }
.contact-inquiry-form .consent-field a { color: #0b3d79; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.form-actions { display: flex; gap: 10px; margin-top: 30px; }
.form-actions-end { justify-content: flex-end; }
.form-next, .form-back { display: inline-flex; align-items: center; justify-content: space-between; min-height: 52px; border-radius: 4px; cursor: pointer; font-weight: 800; }
.form-next { gap: 55px; min-width: 210px; padding: 0 18px; border: 0; background: #082f68; color: #fff; }
.form-next i { font-size: 1.125rem; font-style: normal; transition: transform 180ms ease; }
.form-next:hover i { transform: translateX(4px); }
.form-back { gap: 9px; padding: 0 16px; border: 1px solid #aebdce; background: transparent; color: #36506f; }
.form-submit { display: flex; align-items: center; justify-content: space-between; width: 100%; margin-top: 30px; padding: 16px 18px; border: 0; border-radius: 4px; background: #082f68; color: #fff; cursor: pointer; font-weight: 800; }
.form-actions .form-submit { flex: 1; width: auto; margin-top: 0; }
.form-submit i { font-size: 1.125rem; font-style: normal; transition: transform 180ms ease; }
.form-submit:hover i { transform: translateX(4px); }
.form-submit:disabled, .form-next:disabled { cursor: wait; opacity: .68; }
.form-submit.is-loading i { animation: submit-arrow 850ms ease-in-out infinite; }
@keyframes submit-arrow { 50% { transform: translateX(5px); opacity: .4; } }
.form-status { display: block; min-height: 20px; margin-top: 12px; color: #168675; font-size: 0.625rem; font-weight: 700; }
.form-status[data-state="pending"] { color: #527293; }
.form-status[data-state="error"] { color: #c62d48; }
.inquiry-success { width: 100%; outline: 0; animation: inquiry-step-in 420ms cubic-bezier(.2,.75,.25,1) both; }
.inquiry-success .success-mark { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 40px; border-radius: 50%; background: #dcefeb; color: #126c5e; font-size: 1.5rem; font-weight: 800; }
.inquiry-success > p:first-of-type { margin: 0 0 12px; color: #168675; font-size: 0.5625rem; font-weight: 800; }
.inquiry-success h3 { max-width: 560px; margin: 0; color: #082f68; font-size: clamp(40px, 4vw, 62px); line-height: 1.05; }
.inquiry-success h3 + p { max-width: 480px; margin: 24px 0 40px; color: #627287; font-size: 0.8125rem; line-height: 1.7; word-break: keep-all; }
.inquiry-success button { padding: 13px 0; border: 0; border-top: 1px solid #9fb0c4; border-bottom: 1px solid #9fb0c4; background: transparent; color: #082f68; cursor: pointer; font-size: 0.625rem; font-weight: 800; }

.privacy-panel {
  display: grid;
  grid-template-columns: .45fr 1.55fr;
  gap: clamp(35px, 7vw, 110px);
  padding: 70px clamp(24px, 5vw, 76px) 85px;
  background: #eef3f5;
  scroll-margin-top: 90px;
}

.privacy-panel > div:first-child > span { color: #6284aa; font-size: 0.5625rem; font-weight: 800; }
.privacy-panel h2 { margin: 10px 0 0; color: #082f68; font-size: clamp(28px, 3vw, 42px); }
.privacy-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid #b9c7d4; }
.privacy-grid article { min-height: 130px; padding: 20px 20px 20px 0; border-bottom: 1px solid #c8d3dd; }
.privacy-grid article:nth-child(odd) { border-right: 1px solid #c8d3dd; }
.privacy-grid article:nth-child(even) { padding-left: 20px; }
.privacy-grid strong { color: #244b72; font-size: 0.625rem; }
.privacy-grid p { margin: 10px 0 0; color: #67768a; font-size: 0.6875rem; line-height: 1.7; word-break: keep-all; }

.site-footer {
  padding: 54px clamp(24px, 5vw, 76px) 24px;
  background: #050f1f;
  color: #fff;
}

.site-footer-main { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.site-footer-main > div > strong { font-size: 1.5rem; }
.site-footer-main > div > p { max-width: 430px; margin: 10px 0 0; color: #93a5bb; font-size: 0.75rem; }
.site-footer address { display: grid; gap: 8px; justify-items: end; color: #aebbc9; font-size: 0.6875rem; font-style: normal; }
.site-footer address a { color: #fff; }
.site-footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14); color: #75859a; font-size: 0.5625rem; }
.site-footer-bottom nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 20px; }
.site-footer-bottom a { color: #aebbc9; transition: color 180ms ease; }
.site-footer-bottom a:hover { color: #fff; }

@media (max-width: 1050px) {
  .inner-hero-copy { min-height: 420px; }
  .catalog-product, .catalog-product-reverse { grid-template-columns: 70px minmax(0, 1fr) minmax(0, 1fr); }
  .about-manifesto, .news-masthead, .contact-masthead { grid-template-columns: 1fr; gap: 35px; }
  .manifesto-orbit { opacity: .55; }
  .about-story-band { grid-template-columns: 1fr; }
  .about-story-media { min-height: 380px; }
  .operating-strips { grid-template-columns: repeat(2, 1fr); }
  .operating-strips article:nth-child(2) { border-right: 0; }
  .operating-strips article:nth-child(-n+2) { border-bottom: 1px solid #bdc9d7; }
  .featured-news { grid-template-columns: 1fr 1fr; }
  .contact-workspace { grid-template-columns: .9fr 1.1fr; }
}

@media (max-width: 760px) {
  .inner-page .reference-header { position: sticky; }
  .product-editorial-hero { min-height: 0; }
  .inner-hero-copy { display: flex; flex-direction: column; min-height: 360px; padding: 52px 20px; }
  .inner-hero-copy h1 { font-size: 3.4375rem; }
  /* 합성 이미지 한 장이던 시절의 규칙이었다. 지금은 카드 4개가 2×2로 접히므로
     3/1을 유지하면 카드가 납작해지고, img의 height:auto는 겹쳐 놓은 컷을 무너뜨린다. */
  .product-hero-media { min-height: 0; aspect-ratio: 1 / 1; }
  .hero-collection-count { top: 10px; right: 10px; bottom: auto; padding: 8px 10px; }
  .hero-collection-count strong { font-size: 1.875rem; }
  .hero-collection-count span { font-size: 0.375rem; }
  .catalogue-index { top: 72px; overflow-x: auto; grid-template-columns: repeat(4, minmax(140px, 1fr)); }
  .catalog-product, .catalog-product-reverse { grid-template-columns: 1fr; gap: 20px; min-height: 0; padding: 55px 0; }
  .catalog-number { display: flex; align-items: baseline; gap: 12px; }
  .catalog-number small { margin: 0; writing-mode: horizontal-tb; }
  .catalog-product figure, .catalog-product-reverse figure, .catalog-product .catalog-copy, .catalog-product-reverse .catalog-copy { order: initial; }
  .catalog-copy h2 { font-size: 2.625rem; }
  .product-actions { grid-template-columns: 1fr; }
  .checkout-modal { width: 100vw; height: 100dvh; border-radius: 0; }
  .quickview-modal { width: 100vw; max-height: 100dvh; height: 100dvh; border-radius: 0; }
  .quickview-shell { grid-template-columns: 1fr; max-height: 100dvh; overflow-y: auto; }
  .quickview-gallery { padding: 14px; }
  .quickview-info { overflow: visible; padding: 22px 20px 28px; }
  .quickview-info h2 { font-size: 1.875rem; }
  .quickview-nav { width: 34px; height: 34px; font-size: 1.1875rem; }
  .catalog-media-hint { opacity: 1; transform: none; }
  .checkout-header { min-height: 62px; padding: 0 16px; }
  .checkout-demo-banner { align-items: flex-start; padding: 10px 16px; }
  .checkout-demo-banner p { line-height: 1.5; }
  .checkout-layout { display: flex; flex-direction: column; }
  .checkout-details { padding: 38px 20px 55px; }
  .checkout-heading h2 { margin-bottom: 34px; font-size: 2.3125rem; }
  .checkout-fields { grid-template-columns: 1fr; }
  .checkout-fields .field-wide { grid-column: auto; }
  .delivery-options { grid-template-columns: 1fr; }
  .payment-options { grid-template-columns: 1fr; }
  .checkout-summary { position: static; min-height: 0; padding: 28px 20px 32px; }
  .summary-product { grid-template-columns: 76px 1fr; }
  .summary-product img { width: 76px; }
  .summary-product > strong { grid-column: 2; margin-top: -8px; }
  .checkout-complete { min-height: calc(100dvh - 62px); padding: 55px 20px; }
  .about-manifesto { min-height: 440px; padding: 62px 20px; }
  .about-manifesto h1 { font-size: 4.25rem; }
  .about-manifesto > p { font-size: 0.9375rem; }
  .manifesto-orbit { top: 50%; right: -160px; width: 380px; }
  /* 좁은 화면에서는 궤도 라벨이 본문 위로 겹쳐 읽기를 방해한다 */
  .manifesto-orbit span { display: none; }
  .about-story-media { min-height: 250px; }
  .about-story-copy { padding: 50px 20px; }
  .section-editorial-heading { display: block; }
  .operating-model, .history-section, .news-archive { padding: 65px 20px; }
  .operating-strips { grid-template-columns: 1fr; }
  .operating-strips article { min-height: 250px; border-right: 0; border-bottom: 1px solid #bdc9d7; }
  .history-track { grid-template-columns: 1fr; gap: 38px; }
  .history-track li { padding-right: 0; }
  .news-masthead { min-height: 380px; padding: 62px 20px; }
  .news-masthead h1 { font-size: 4.375rem; }
  .featured-news { grid-template-columns: 1fr; }
  .featured-news-visual { min-height: 320px; }
  .featured-news article { padding: 48px 20px 58px; }
  .featured-news h2 { font-size: 2.6875rem; }
  .news-archive-heading { grid-template-columns: 1fr; gap: 10px; }
  .news-archive-heading p { text-align: left; }
  .news-editorial-list article { grid-template-columns: 36px 1fr auto; gap: 10px; min-height: 112px; }
  .news-editorial-list article > p { display: none; }
  .news-editorial-list h3 { font-size: 0.9375rem; }
  .news-record { grid-column: 2 / -1; grid-template-columns: 1fr; gap: 5px; }
  .news-source-actions { gap: 18px; }
  .contact-masthead { min-height: 400px; padding: 62px 20px; }
  .contact-masthead h1 { font-size: 3.875rem; }
  .contact-workspace { grid-template-columns: 1fr; }
  .contact-brief, .contact-inquiry-form { padding: 55px 20px; }
  .contact-inquiry-form.is-complete { min-height: 590px; }
  .contact-inquiry-form { scroll-margin-top: 72px; }
  .form-field-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .form-actions { align-items: stretch; }
  .form-next { width: 100%; min-width: 0; }
  .form-back { flex: 0 0 auto; }
  .privacy-panel { grid-template-columns: 1fr; padding: 55px 20px 65px; }
  .privacy-grid { grid-template-columns: 1fr; }
  .privacy-grid article:nth-child(odd) { border-right: 0; }
  .privacy-grid article:nth-child(even) { padding-left: 0; }
  .site-footer { padding: 44px 20px 22px; }
  .site-footer-main { grid-template-columns: 1fr; gap: 28px; padding-bottom: 34px; }
  .site-footer address { justify-items: start; }
  .site-footer-bottom { flex-direction: column; }
  .site-footer-bottom nav { justify-content: flex-start; }
}

@media (max-width: 360px) {
  .reference-hero-copy h1 { font-size: 1.8125rem; line-height: 1.1; }
  .reference-hero-copy h1 span { white-space: nowrap; }
  .inner-hero-copy h1 { font-size: 3rem; }
  .contact-masthead h1 { font-size: 3.375rem; }
  .news-masthead h1 { font-size: 3.875rem; }
}

/* Compact bilingual control */
.reference-header {
  grid-template-columns: auto minmax(0, 1fr) auto auto;
}

.language-switcher {
  position: relative;
  z-index: 2;
  display: inline-flex;
  grid-column: 3;
  grid-row: 1;
  align-items: center;
  justify-content: center;
  gap: 13px;
  width: 68px;
  min-width: 68px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  visibility: visible;
  opacity: 1;
}

.language-switcher button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  color: #9aa6b5;
  cursor: pointer;
  font-size: 0.625rem;
  font-weight: 750;
  line-height: 1;
  transition: color 180ms ease, transform 180ms ease;
}

.language-switcher button + button::before {
  content: "/";
  position: absolute;
  left: -9px;
  color: #c7cfda;
  font-weight: 400;
  pointer-events: none;
}

.language-switcher button[aria-pressed="true"] {
  color: #082f68;
  font-weight: 900;
}

.language-switcher button[aria-pressed="true"]::after {
  content: "";
  position: absolute;
  right: 6px;
  bottom: 3px;
  left: 6px;
  height: 2px;
  background: #168675;
}

.language-switcher button:hover { color: #082f68; transform: translateY(-1px); }
.language-switcher button:focus-visible { outline: 2px solid #168675; outline-offset: 2px; }

@media (max-width: 1180px) {
  .reference-header {
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    gap: 12px;
  }

  .reference-header .brand { grid-column: 1; min-width: 0; }
  .reference-header .language-switcher { grid-column: 3; grid-row: 1; }
  .reference-header .nav-toggle { grid-column: 4; grid-row: 1; }
}

@media (max-width: 520px) {
  .reference-header { gap: 8px; padding-right: 16px; padding-left: 16px; }
  .reference-header .brand-mark { width: 32px; height: 32px; }
  .reference-header .brand { gap: 7px; }
  .reference-header .brand strong { font-size: 0.9375rem; }
  .reference-header .brand small { font-size: 0.5rem; }
  .language-switcher { gap: 11px; width: 60px; min-width: 60px; }
  .language-switcher button { width: 24px; }
  .language-switcher button + button::before { left: -8px; }
  .reference-header .nav-toggle { width: 40px; height: 40px; }
}


/* 구매 알림 신청 모달 */
.waitlist-modal { width: min(760px, calc(100vw - 32px)); max-width: none; max-height: calc(100dvh - 32px); margin: auto; padding: 0; overflow: hidden; border: 0; border-radius: 8px; background: #fff; box-shadow: 0 35px 110px rgba(3,18,37,.34); color: #102a43; }
.waitlist-modal::backdrop { background: rgba(3,16,33,.72); backdrop-filter: blur(5px); }
.waitlist-shell { position: relative; display: grid; grid-template-columns: .78fr 1.22fr; max-height: calc(100dvh - 32px); }
.waitlist-close { position: absolute; z-index: 3; top: 13px; right: 13px; width: 34px; height: 34px; border: 1px solid rgba(8,47,104,.16); border-radius: 50%; background: rgba(255,255,255,.9); color: #082f68; font-size: 1.125rem; line-height: 1; cursor: pointer; }
.waitlist-close:hover { background: #e8edf2; }

.waitlist-product { display: flex; flex-direction: column; gap: 16px; padding: 26px 22px; background: #f1f4f8; }
.waitlist-product img { width: 100%; aspect-ratio: 4 / 3; border-radius: 6px; object-fit: cover; }
.waitlist-product span { display: block; color: #6180a5; font-size: 0.5625rem; font-weight: 800; letter-spacing: .04em; }
.waitlist-product strong { display: block; margin-top: 6px; color: #082f68; font-size: 1.375rem; font-weight: 850; }
.waitlist-product b { display: block; margin-top: 8px; color: #36506f; font-size: 0.9375rem; font-weight: 800; }

.waitlist-form, .waitlist-done { display: flex; flex-direction: column; overflow-y: auto; padding: 46px 30px 28px; }
/* display 선언이 hidden 속성(UA의 display:none)을 이기므로 명시적으로 되돌린다 */
.waitlist-form[hidden], .waitlist-done[hidden] { display: none; }
.waitlist-form h2 { margin: 0 0 10px; color: #082f68; font-size: clamp(21px, 2.2vw, 27px); line-height: 1.22; word-break: keep-all; }
.waitlist-lead { margin: 0 0 22px; color: #4f5d70; font-size: 0.8125rem; line-height: 1.6; word-break: keep-all; }

.waitlist-field { display: block; margin-bottom: 14px; }
.waitlist-field span { display: block; margin-bottom: 6px; color: #36506f; font-size: 0.625rem; font-weight: 800; }
.waitlist-field input { width: 100%; min-height: 44px; padding: 0 12px; border: 1px solid #ccd6e3; border-radius: 3px; background: #fff; color: #102a43; font: inherit; font-size: 0.875rem; }
.waitlist-field input:focus-visible { border-color: #082f68; outline: 2px solid rgba(8,47,104,.18); outline-offset: 1px; }
.waitlist-field input[aria-invalid="true"] { border-color: #d33c4e; }

.waitlist-consent { display: flex; align-items: flex-start; gap: 8px; margin: 4px 0 18px; color: #4f5d70; font-size: 0.6875rem; line-height: 1.5; }
.waitlist-consent input { margin-top: 1px; accent-color: #082f68; }

.waitlist-status { min-height: 17px; margin: 0 0 10px; font-size: 0.6875rem; font-weight: 700; }
.waitlist-status[data-state="pending"] { color: #4f5d70; }
.waitlist-status[data-state="success"] { color: #157a5f; }
.waitlist-status[data-state="error"] { color: #c0392f; }

.waitlist-form .button { width: 100%; }
.waitlist-privacy { margin-top: 12px; color: #6180a5; font-size: 0.625rem; font-weight: 700; text-align: center; }

.waitlist-done { align-items: flex-start; justify-content: center; gap: 12px; }
.waitlist-done-mark { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: #e3f2ec; color: #157a5f; font-size: 1.1875rem; font-weight: 800; }
.waitlist-done strong { color: #082f68; font-size: 1.3125rem; }
.waitlist-done p { margin: 0; color: #4f5d70; font-size: 0.8125rem; line-height: 1.6; word-break: keep-all; }
.waitlist-done .button { margin-top: 8px; }

@media (max-width: 760px) {
  .waitlist-modal { width: 100vw; max-height: 100dvh; height: 100dvh; border-radius: 0; }
  .waitlist-shell { grid-template-columns: 1fr; max-height: 100dvh; overflow-y: auto; }
  .waitlist-product { flex-direction: row; align-items: center; gap: 13px; padding: 16px; }
  .waitlist-product img { width: 92px; aspect-ratio: 1; }
  .waitlist-product strong { font-size: 1.125rem; }
  .waitlist-form, .waitlist-done { overflow: visible; padding: 22px 18px 26px; }
}

/* 내부 집계 대시보드 (insights.html) — 개인정보는 표시하지 않는다 */
.insights-main { max-width: 1080px; margin: 0 auto; padding: 56px clamp(20px, 4vw, 48px) 80px; }
.insights-head { margin-bottom: 30px; }
.insights-head h1 { margin: 8px 0 12px; color: #082f68; font-size: clamp(30px, 4vw, 46px); line-height: 1.05; }
.insights-head p { max-width: 620px; margin: 0; color: #4f5d70; font-size: 0.8125rem; line-height: 1.65; word-break: keep-all; }
.insights-state { padding: 18px 20px; border: 1px solid #dbe4f2; border-radius: 6px; background: #f4f7fb; color: #4f5d70; font-size: 0.8125rem; line-height: 1.6; word-break: keep-all; }
.insights-state[data-tone="error"] { border-color: #f0c9c4; background: #fdf4f3; color: #a8402f; }

.insights-totals { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 20px; }
.insights-totals article { display: flex; flex-direction: column; gap: 4px; padding: 20px 18px; border: 1px solid #dbe4f2; border-radius: 6px; background: #fff; }
.insights-totals span { color: #6180a5; font-size: 0.625rem; font-weight: 800; }
.insights-totals strong { color: #082f68; font-size: 1.875rem; font-weight: 850; line-height: 1.05; word-break: break-all; }
.insights-totals small { color: #7c8aa0; font-size: 0.6875rem; font-weight: 700; }

.insights-panel { margin-bottom: 20px; padding: 24px clamp(18px, 3vw, 28px); border: 1px solid #dbe4f2; border-radius: 6px; background: #fff; }
.insights-panel h2 { margin: 0 0 18px; color: #082f68; font-size: 0.9375rem; font-weight: 850; }

.insights-bars { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.insights-bars li { display: grid; grid-template-columns: 120px 1fr 46px; align-items: center; gap: 12px; }
.insights-bars span { color: #36506f; font-size: 0.75rem; font-weight: 800; }
.insights-bars i { display: block; height: 22px; border-radius: 3px; background: linear-gradient(90deg, #0d448a, #1688d4); width: var(--w, 0%); min-width: 3px; transition: width 600ms cubic-bezier(.2,.75,.25,1); }
.insights-bars b { color: #082f68; font-size: 0.8125rem; font-weight: 850; text-align: right; }
.insights-empty { display: block !important; color: #7c8aa0; font-size: 0.75rem; }

.insights-trend { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; align-items: end; gap: 6px; height: 150px; margin: 0; padding: 0; list-style: none; }
.insights-trend li { display: grid; grid-template-rows: 1fr auto auto; align-items: end; justify-items: center; gap: 4px; height: 100%; }
.insights-trend i { display: block; width: 100%; max-width: 26px; height: var(--h, 0%); min-height: 2px; border-radius: 3px 3px 0 0; background: #1688d4; }
.insights-trend b { color: #082f68; font-size: 0.625rem; font-weight: 800; min-height: 12px; }
.insights-trend span { color: #8a97a9; font-size: 0.5rem; font-weight: 700; }

.insights-updated { margin: 0; color: #8a97a9; font-size: 0.6875rem; text-align: right; }

@media (max-width: 760px) {
  .insights-main { padding: 34px 18px 60px; }
  .insights-totals { grid-template-columns: repeat(2, 1fr); }
  .insights-bars li { grid-template-columns: 88px 1fr 38px; gap: 8px; }
  .insights-trend { height: 120px; }
  .insights-trend span { font-size: 0.4375rem; }
}

/* 유튜브 영상 섹션 — 채널 콘텐츠가 대부분 세로 숏폼이라 그 비율을 그대로 살린다.
   재생을 누르기 전에는 iframe을 만들지 않아, 유튜브로 요청이 전혀 나가지 않는다. */
.video-band {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 92px);
  background: var(--soft);
  border-top: 1px solid var(--line);
}

.video-band-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(28px, 4vw, 46px);
  flex-wrap: wrap;
}

.video-band-head h2 {
  margin: 10px 0 0;
  color: var(--blue);
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.12;
  word-break: keep-all;
}

.video-feature { margin-bottom: 18px; }
.video-feature .video-thumb { aspect-ratio: 16 / 9; }
.video-feature .video-meta strong { font-size: 1rem; }

.video-shorts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.video-play {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.video-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border-radius: 6px;
  background: #dde5ef;
  box-shadow: 0 14px 34px rgba(15, 40, 72, .1);
}

.video-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 620ms cubic-bezier(.2, .75, .25, 1), filter 360ms ease;
}

.video-play:hover .video-thumb img { transform: scale(1.04); }

/* 재생 삼각형. 배경 원은 호버 때 살짝 커지며 색이 진해진다. */
.video-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 8px 24px rgba(6, 20, 42, .28);
  transform: translate(-50%, -50%);
  transition: transform 320ms var(--ease-out), background 260ms ease;
}

.video-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 15px solid var(--blue);
  transform: translate(-50%, -50%);
}

.video-play:hover .video-icon,
.video-play:focus-visible .video-icon { transform: translate(-50%, -50%) scale(1.1); background: #fff; }
.video-feature .video-icon { width: 66px; height: 66px; }

.video-meta { display: block; padding: 12px 2px 0; }
.video-meta strong { display: block; color: var(--ink); font-size: 0.8125rem; font-weight: 850; line-height: 1.35; word-break: keep-all; }
.video-meta small { display: block; margin-top: 4px; color: var(--muted); font-size: 0.625rem; font-weight: 700; }

@media (max-width: 900px) {
  .video-shorts { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .video-band-head { align-items: flex-start; }
  .video-shorts { gap: 10px; }
  .video-icon { width: 44px; height: 44px; }
  .video-feature .video-icon { width: 52px; height: 52px; }
}

/* 영상 라이트박스 — 카드가 작은 모바일에서도 화면 가득 재생된다.
   세로 숏폼과 가로 영상의 비율이 달라 data-shape로 구분한다. */
.video-modal {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: hidden;
}

.video-modal::backdrop { background: rgba(3, 12, 26, .93); backdrop-filter: blur(6px); }

.video-modal-stage {
  --video-chrome: 140px;               /* 위아래 여백 + 자막 자리 */
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 64px 16px 76px;
}

/* grid 안에서는 height:100%가 해석되지 않아 너비 기준으로 커져 버린다.
   화면 높이에서 여백을 뺀 값으로 직접 묶어야 세로 영상이 넘치지 않는다. */
.video-modal-frame {
  display: block;
  width: 100%;
  max-width: min(1180px, 100%);
  max-height: calc(100dvh - var(--video-chrome));
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 8px;
  background: #000;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .5);
}

.video-modal[data-shape="portrait"] .video-modal-frame {
  aspect-ratio: 9 / 16;
  width: auto;
  height: calc(100dvh - var(--video-chrome));
  max-width: 100%;
}

.video-modal-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-size: 1.375rem;
  line-height: 1;
  cursor: pointer;
  transition: background 200ms ease;
}

.video-modal-close:hover { background: rgba(255, 255, 255, .2); }

.video-modal-caption {
  position: absolute;
  right: 20px;
  bottom: 22px;
  left: 20px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  word-break: keep-all;
}

@media (max-width: 520px) {
  .video-modal-stage { --video-chrome: 120px; padding: 58px 10px 62px; }
  .video-modal-close { top: 10px; right: 10px; width: 38px; height: 38px; }
}

/* 정가·할인율 표기 — 카탈로그 버튼, 퀵뷰, 구매 알림 모달이 같은 모양을 쓴다 */
.product-buy b s,
.quickview-price strong s,
.waitlist-product b s {
  margin-right: 6px;
  color: rgba(255, 255, 255, .55);
  font-weight: 700;
  text-decoration: line-through;
}

.quickview-price strong s,
.waitlist-product b s { color: #97a5b8; }

.product-buy b em,
.quickview-price strong em,
.waitlist-product b em {
  margin-right: 6px;
  color: #ff6b6b;
  font-style: normal;
  font-weight: 850;
}

.quickview-price strong em,
.waitlist-product b em { color: #d9455f; }

/* 아직 가격이 정해지지 않은 제품 */
.quickview-price strong[data-state="pending"],
.waitlist-product b[data-state="pending"] {
  color: #6b7b90;
  font-size: 0.9375rem;
  font-weight: 800;
}
