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

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

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

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

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

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

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

* {
  box-sizing: border-box;
}

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

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

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

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

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

html,
body {
  width: 100%;
  /* No overflow-x here: it would scope position:sticky and stop the nav
     following scroll. Full-bleed sections clip their own horizontal overflow. */
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.nav__lang button[aria-pressed="false"] {
  color: var(--ink-faint);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hero__title--xl {
  font-size: clamp(38px, 6.2vw, 72px);
  line-height: 1.08;
  text-align: center;
}

.hero__title--lg {
  font-size: clamp(34px, 5.4vw, 60px);
  line-height: 1.12;
}

.hero__title--md {
  font-size: clamp(32px, 4.6vw, 52px);
  line-height: 1.2;
}

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

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

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

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

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

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

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

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

.section-title--xl {
  font-size: clamp(32px, 4.6vw, 52px);
  line-height: 1.02;
}

.section-title--lg {
  font-size: clamp(28px, 3.8vw, 42px);
  line-height: 1.2;
}

.section-title--md {
  font-size: clamp(30px, 4.6vw, 52px);
  line-height: 1.25;
  font-weight: 700;
}

.section-title--sm {
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.3;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.modal[hidden] {
  display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.slides__arrow:hover {
  background: #F5F5F5;
}

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

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

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

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

.big-feature__title {
  margin: 16px 0 0;
  font-size: clamp(30px, 4.6vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--ink);
  white-space: pre-line;
  word-break: keep-all;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#history-events {
  gap: 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.rcard__sep {
  color: #ccc;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.faq__sidebar {
  position: sticky;
  top: 100px;
}

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

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

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

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

.faq__main {
  min-width: 0;
}

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

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

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

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

.faq-item__chev {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  color: #555;
  transition: transform .25s ease;
}
.faq-item__chev svg { width: 100%; height: 100%; display: block; }
.faq-item.is-open .faq-item__chev { transform: rotate(180deg); }

.faq-item__answer {
  padding: 0 8px 28px;
}
.faq-item__answer-inner {
  background: #f5f5f5;
  border-radius: 14px;
  padding: 28px 30px;
  color: #444;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: -0.02em;
  white-space: normal;
  word-break: keep-all;
}
.faq-answer-img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 16px 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.certs__arrow:hover {
  background: #f5f5f7;
}

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

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

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

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

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

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

@keyframes certFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

.chevron-history__heading {
  font-size: clamp(30px, 4.2vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #1A1A1A;
  margin: 0 0 80px;
  line-height: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dist__points li {
  display: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dist-field input,
.dist-field select,
.dist-field textarea {
  flex: 1;
  border: 0;
  outline: none;
  background: transparent;
  font: inherit;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-strong);
  letter-spacing: -0.01em;
  padding: 0;
  -webkit-appearance: none;
  appearance: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ---- scroll-reveal variants (set via data-fx) ---- */
@keyframes fxScale {
  from { opacity: 0; transform: scale(.94); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes fxLeft {
  from { opacity: 0; transform: translate3d(-42px, 0, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes fxRight {
  from { opacity: 0; transform: translate3d(42px, 0, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}
.fx-scale { opacity: 0; transform: scale(.94); }
.fx-left  { opacity: 0; transform: translate3d(-42px, 0, 0); }
.fx-right { opacity: 0; transform: translate3d(42px, 0, 0); }
.fx-scale.fx-on { animation: fxScale 1.2s cubic-bezier(.2, .7, .2, 1) both; animation-delay: var(--fx-delay, 0ms); }
.fx-left.fx-on  { animation: fxLeft  1.2s cubic-bezier(.2, .7, .2, 1) both; animation-delay: var(--fx-delay, 0ms); }
.fx-right.fx-on { animation: fxRight 1.2s cubic-bezier(.2, .7, .2, 1) both; animation-delay: var(--fx-delay, 0ms); }
@media (prefers-reduced-motion: reduce) {
  .fx-rise, .fx-scale, .fx-left, .fx-right { opacity: 1 !important; transform: none !important; animation: none !important; }
}