/* ==========================================================================
   J&K COMPANY LIMITED — 의류 프로모션
   블랙 · 광택 · 스크롤 구동
   ========================================================================== */

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

:root {
  --bg:        #050506;
  --bg-2:      #0a0a0c;
  --line:      rgba(255,255,255,.09);
  --line-2:    rgba(255,255,255,.16);
  --tx:        #ffffff;
  --tx-2:      rgba(255,255,255,.62);
  --tx-3:      rgba(255,255,255,.38);
  --red:       #ff1414;
  --red-2:     #ff4d4d;

  --pad:       clamp(20px, 5vw, 88px);
  --sec:       clamp(96px, 14vh, 200px);
  --ease:      cubic-bezier(.16, 1, .3, 1);

  /* 광택 — 의류 새틴 느낌의 표면 */
  --sheen: linear-gradient(135deg,
    rgba(255,255,255,.13) 0%, rgba(255,255,255,.02) 26%,
    rgba(255,255,255,0) 50%, rgba(255,255,255,.05) 74%,
    rgba(255,255,255,.14) 100%);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--tx);
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: -.015em;
  word-break: keep-all;
  overflow-wrap: break-word;
  overflow-x: hidden;
}

h1, h2, h3, h4, p, figure, dl, dd, ul, ol { margin: 0; padding: 0; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--red); color: #fff; }

/* 필름 그레인 — 순수 검정의 밴딩을 덮습니다 */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ==========================================================================
   TYPE
   ========================================================================== */

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: clamp(11px, 1.1vw, 13px); font-weight: 800;
  letter-spacing: .22em; color: var(--tx-3); text-transform: uppercase;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--red); flex: none;
}

.d1 {
  font-size: clamp(44px, 9.2vw, 148px);
  font-weight: 800; line-height: .96; letter-spacing: -.05em;
}
.d2 {
  font-size: clamp(32px, 5.4vw, 82px);
  font-weight: 800; line-height: 1.08; letter-spacing: -.042em;
}
.d3 {
  font-size: clamp(22px, 2.6vw, 38px);
  font-weight: 800; line-height: 1.25; letter-spacing: -.032em;
}
.d4 {
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 700; line-height: 1.4; letter-spacing: -.024em;
}
.lead {
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.72; color: var(--tx-2); font-weight: 400;
}
.sm { font-size: clamp(13px, 1.05vw, 15px); line-height: 1.65; color: var(--tx-3); }

/* 금속 광택 텍스트 — 의류 새틴 느낌 */
.gloss {
  background: linear-gradient(96deg, #fff 8%, #9aa0aa 34%, #ffffff 52%, #7d838d 70%, #fff 94%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: sweep 7s var(--ease) infinite;
}
@keyframes sweep { 0%,100% { background-position: 0% 0 } 50% { background-position: 100% 0 } }
.red { color: var(--red); }

/* ==========================================================================
   LAYOUT
   ========================================================================== */

.wrap { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 var(--pad); }
.sec { position: relative; padding: var(--sec) 0; }
.sec--tight { padding: calc(var(--sec) * .6) 0; }

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ==========================================================================
   NAV
   ========================================================================== */

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad);
  transition: background .45s var(--ease), border-color .45s var(--ease), padding .45s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(5,5,6,.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
  padding-top: 12px; padding-bottom: 12px;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand__mark {
  font-size: 27px; font-weight: 900; letter-spacing: -.055em; color: var(--red); line-height: .86;
}
.brand__sub {
  font-size: 9px; font-weight: 800; line-height: 1.15; letter-spacing: .04em; color: var(--tx);
  padding-top: 2px;
}
.nav__links { display: flex; align-items: center; gap: clamp(14px, 2.2vw, 34px); }
.nav__links a {
  font-size: 14px; font-weight: 600; color: var(--tx-2);
  transition: color .3s var(--ease);
}
.nav__links a:hover { color: var(--tx); }
@media (max-width: 860px) { .nav__links .hide-sm { display: none; } }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 22px; border-radius: 999px;
  font-size: 14px; font-weight: 700; letter-spacing: -.01em;
  border: 1px solid var(--line-2); background: transparent; color: var(--tx);
  cursor: pointer; position: relative; overflow: hidden;
  transition: border-color .35s var(--ease), transform .35s var(--ease), color .35s var(--ease);
}
.btn::after {
  content: ""; position: absolute; inset: 0; opacity: 0;
  background: var(--sheen); transition: opacity .5s var(--ease);
}
.btn:hover { border-color: rgba(255,255,255,.42); transform: translateY(-1px); }
.btn:hover::after { opacity: 1; }
.btn--red {
  background: var(--red); border-color: var(--red); color: #fff;
  box-shadow: 0 8px 30px rgba(255,20,20,.28);
}
.btn--red:hover { border-color: var(--red-2); box-shadow: 0 12px 40px rgba(255,20,20,.4); }
.btn--lg { padding: 17px 34px; font-size: 16px; }
.btn--block { width: 100%; }

/* ==========================================================================
   HERO
   ========================================================================== */

.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__art {
  /* 오른쪽 절반에 두고 contain 으로 통째로 보여줍니다.
     영상 배경이 순수 검정이라 레터박스가 그대로 페이지 배경과 이어집니다. */
  position: absolute; inset: 0 -2% 0 34%;
  will-change: transform, opacity;
}
.hero__art img,
.hero__art video {
  width: 100%; height: 100%; display: block; background: var(--bg);
  object-fit: contain; object-position: center 44%;
}
@media (max-width: 1100px) {
  .hero__art { inset: 0 0 auto 0; height: 56%; }
  .hero__art video { object-position: center 40%; }
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 6% 96%, rgba(255,20,20,.15), transparent 56%),
    linear-gradient(96deg, var(--bg) 26%, rgba(5,5,6,.78) 42%, rgba(5,5,6,.10) 66%, rgba(5,5,6,.34) 100%),
    linear-gradient(to top, var(--bg) 2%, transparent 42%);
}
.hero__in { position: relative; width: 100%; padding-bottom: clamp(64px, 12vh, 132px); }
.hero__title { margin-top: 26px; }
.hero__title span { display: block; }
.hero__sub { font-size: clamp(20px, 3.4vw, 46px); font-weight: 700; letter-spacing: -.035em; color: var(--tx-2); margin-top: 6px; }
.hero__lead { margin-top: 30px; max-width: 560px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px; }

.hero__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 36px; }
.chip {
  padding: 7px 15px; border-radius: 999px; border: 1px solid var(--line);
  font-size: 12.5px; font-weight: 700; color: var(--tx-2); letter-spacing: -.01em;
  background: rgba(255,255,255,.03);
}

.scrollcue {
  position: absolute; right: var(--pad); bottom: clamp(28px, 5vh, 52px);
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 800; letter-spacing: .2em; color: var(--tx-3);
}
.scrollcue i {
  display: block; width: 1px; height: 46px; background: var(--line-2); position: relative; overflow: hidden;
}
.scrollcue i::after {
  content: ""; position: absolute; left: 0; top: 0; width: 1px; height: 16px; background: var(--red);
  animation: drop 2.1s var(--ease) infinite;
}
@keyframes drop { 0% { transform: translateY(-18px) } 100% { transform: translateY(48px) } }
@media (max-width: 720px) { .scrollcue { display: none; } }

/* ==========================================================================
   REVEAL — 스크롤 진입 애니메이션
   ========================================================================== */

/* 기본은 "보임". JS가 .js-anim 을 달아야 비로소 숨겼다가 등장시킵니다.
   JS가 죽거나 IntersectionObserver 가 안 돌아도 페이지가 백지가 되지 않습니다. */
.js-anim [data-rv] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .95s var(--ease), transform .95s var(--ease);
  transition-delay: var(--d, 0ms);
}
.js-anim [data-rv="fade"] { transform: none; }
.js-anim [data-rv="left"] { transform: translateX(-30px); }
.js-anim [data-rv="scale"] { transform: scale(.955); }
.js-anim [data-rv].is-in { opacity: 1; transform: none; }

/* 가로 라인 그리기 */
.js-anim .drawline { height: 1px; background: var(--line); transform-origin: left; transform: scaleX(0); transition: transform 1.3s var(--ease); }
.drawline.is-in { transform: scaleX(1); }

/* ==========================================================================
   MARQUEE — 클라이언트 로고
   ========================================================================== */

.marq { overflow: hidden; position: relative; padding: 30px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent); mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent); }
.marq__track { display: flex; align-items: center; gap: clamp(48px, 7vw, 104px); width: max-content; animation: slide 42s linear infinite; }
.marq:hover .marq__track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
.marq img {
  height: clamp(26px, 3.2vw, 42px); width: auto; opacity: .5;
  transition: opacity .4s var(--ease);
}
.marq img:hover { opacity: 1; }

/* 로고 격자 (정적) */
.logos { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.logos__c {
  display: flex; align-items: center; justify-content: center;
  min-height: clamp(96px, 12vw, 158px); padding: 24px;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.logos__c::before {
  content: ""; position: absolute; inset: 0; background: var(--sheen); opacity: 0;
  transition: opacity .5s var(--ease);
}
.logos__c:hover::before { opacity: 1; }
.logos__c img { height: clamp(24px, 2.8vw, 40px); width: auto; opacity: .62; transition: opacity .4s var(--ease); }
.logos__c:hover img { opacity: 1; }
@media (max-width: 720px) { .logos { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   STATS
   ========================================================================== */

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.stat { background: var(--bg); padding: clamp(26px, 3.4vw, 48px); position: relative; overflow: hidden; }
.stat::before { content: ""; position: absolute; inset: 0; background: var(--sheen); opacity: 0; transition: opacity .55s var(--ease); }
.stat:hover::before { opacity: 1; }
.stat__k { font-size: 12px; font-weight: 800; letter-spacing: .16em; color: var(--tx-3); text-transform: uppercase; }
.stat__v {
  margin-top: 16px; font-size: clamp(38px, 5.2vw, 76px); font-weight: 800;
  line-height: 1; letter-spacing: -.05em;
  font-feature-settings: "tnum"; font-variant-numeric: tabular-nums;
}
.stat__v small { font-size: .4em; font-weight: 700; letter-spacing: -.02em; margin-left: 3px; }
.stat__x { margin-top: 14px; font-size: 13.5px; color: var(--tx-3); line-height: 1.6; }
@media (max-width: 900px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   STICKY SCENE — 스크롤 스크럽 구간
   ========================================================================== */

.scene { position: relative; height: 320vh; }
.scene__cues { position: absolute; inset: 0; pointer-events: none; }
.scene__cues i { position: absolute; left: 0; width: 1px; height: 1px; }
.scene__pin { position: sticky; top: 0; height: 100svh; overflow: hidden; display: flex; align-items: center; }
.scene__bg { position: absolute; inset: 0; }
.scene__bg img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.scene__veil {
  position: absolute; inset: 0;
  background: linear-gradient(92deg, rgba(5,5,6,.95) 20%, rgba(5,5,6,.7) 52%, rgba(5,5,6,.35) 100%);
}
.scene__steps { position: relative; z-index: 2; width: 100%; }
.scene__step {
  /* 절대배치의 기준은 부모의 패딩 박스입니다. left:0 으로 두면 .wrap 의
     좌우 여백(--pad)을 건너뛰고 화면 끝에 붙어버립니다. 여백만큼 밀어 줍니다. */
  position: absolute; left: var(--pad); right: var(--pad); max-width: 620px;
  opacity: 0; transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  pointer-events: none;
}
.scene__step.is-on { opacity: 1; transform: none; pointer-events: auto; }
.scene__prog { position: absolute; z-index: 2; left: var(--pad); right: var(--pad); bottom: 8vh; display: flex; gap: 8px; }
.scene__prog span { flex: 1; height: 2px; background: rgba(255,255,255,.14); overflow: hidden; }
.scene__prog span::after { content: ""; display: block; height: 100%; width: 0; background: var(--red); transition: width .5s var(--ease); }
.scene__prog span.on::after { width: 100%; }

/* ==========================================================================
   TIMELINE
   ========================================================================== */

.tl { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; }
.tl__i { position: relative; padding: 34px 18px 0 0; }
.tl__i::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--line);
}
.tl__i::after {
  content: ""; position: absolute; top: -4px; left: 0; width: 9px; height: 9px; border-radius: 999px;
  background: var(--bg); border: 2px solid var(--line-2); transition: border-color .5s var(--ease), background .5s var(--ease);
}
.tl__i.is-in::after { border-color: var(--red); }
.tl__d { font-size: 12px; font-weight: 800; letter-spacing: .12em; color: var(--red); }
.tl__t { margin-top: 10px; font-size: clamp(16px, 1.5vw, 21px); font-weight: 800; letter-spacing: -.028em; }
.tl__x { margin-top: 8px; font-size: 13px; line-height: 1.62; color: var(--tx-3); }
@media (max-width: 980px) { .tl { grid-template-columns: repeat(3, 1fr); row-gap: 34px; } }
@media (max-width: 560px) { .tl { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   CARDS
   ========================================================================== */

.grid { display: grid; gap: clamp(14px, 1.6vw, 22px); }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .g3, .g4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .g2, .g3, .g4 { grid-template-columns: 1fr; } }

.card {
  position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  padding: clamp(24px, 2.6vw, 38px);
  transition: border-color .5s var(--ease), transform .5s var(--ease);
}
.card::before { content: ""; position: absolute; inset: 0; background: var(--sheen); opacity: 0; transition: opacity .55s var(--ease); }
.card:hover { border-color: var(--line-2); transform: translateY(-3px); }
.card:hover::before { opacity: 1; }
.card__n { font-size: 12px; font-weight: 800; letter-spacing: .16em; color: var(--red); }
.card__t { margin-top: 14px; }
.card__x { margin-top: 12px; font-size: 14.5px; line-height: 1.7; color: var(--tx-2); }

/* 사례 카드 */
.work { position: relative; overflow: hidden; border-radius: 16px; border: 1px solid var(--line); background: var(--bg-2); }
.work__img { aspect-ratio: 4 / 5; overflow: hidden; background: #111; }
/* 흰 배경 제품컷 — 카드 안에 통째로 넣고 회색조를 걸지 않습니다 */
.work__img--light { background: #f4f4f5; }
.work__img--light img { object-fit: contain; filter: none; padding: 6%; }
.work:hover .work__img--light img { transform: scale(1.04); filter: none; }
.work__img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(.32) contrast(1.04) brightness(.92);
  transform: scale(1.02);
  transition: transform 1.1s var(--ease), filter .7s var(--ease);
}
.work:hover .work__img img { transform: scale(1.07); filter: none; }
.work__body { padding: 20px 22px 24px; }
.work__logo { height: 22px; width: auto; opacity: .8; }
.work__x { margin-top: 12px; font-size: 13.5px; line-height: 1.65; color: var(--tx-3); }
.work__tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  padding: 6px 13px; border-radius: 999px;
  background: rgba(5,5,6,.7); backdrop-filter: blur(8px);
  font-size: 11px; font-weight: 800; letter-spacing: .1em; color: var(--tx-2);
}
.work__tag--real { background: var(--red); color: #fff; letter-spacing: -.01em; }

/* 원단 스와치 느낌의 리스트 */
.rows { border-top: 1px solid var(--line); }
.row {
  display: grid; grid-template-columns: 200px 1fr; gap: clamp(16px, 3vw, 56px);
  padding: clamp(20px, 2.2vw, 30px) 0; border-bottom: 1px solid var(--line);
  position: relative;
}
.row::after {
  content: ""; position: absolute; left: 0; bottom: -1px; height: 1px; width: 0; background: var(--red);
  transition: width .7s var(--ease);
}
.row:hover::after { width: 100%; }
.row__k { font-size: 14px; font-weight: 800; color: var(--tx-3); letter-spacing: -.01em; }
.row__v { font-size: clamp(15px, 1.25vw, 18px); line-height: 1.65; color: var(--tx); }
@media (max-width: 720px) { .row { grid-template-columns: 1fr; gap: 8px; } }

/* ==========================================================================
   FORM — 견적 문의
   ========================================================================== */

.form { display: grid; gap: clamp(26px, 3vw, 42px); }
.fld { display: block; }
.fld__l {
  display: flex; align-items: baseline; gap: 10px;
  font-size: 13px; font-weight: 800; letter-spacing: .1em; color: var(--tx-3); text-transform: uppercase;
}
.fld__l b { color: var(--red); font-size: 15px; }
.fld__h { font-size: 13px; color: var(--tx-3); font-weight: 400; letter-spacing: 0; text-transform: none; }

.pick { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 15px; }
.pick input { position: absolute; opacity: 0; width: 0; height: 0; }
.pick label {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 19px; border-radius: 999px;
  border: 1px solid var(--line-2); background: rgba(255,255,255,.02);
  font-size: 14.5px; font-weight: 600; cursor: pointer;
  transition: all .3s var(--ease); position: relative; overflow: hidden;
}
.pick label:hover { border-color: rgba(255,255,255,.34); }
.pick input:checked + label {
  background: #fff; color: #050506; border-color: #fff; font-weight: 800;
}
.pick input:focus-visible + label { outline: 2px solid var(--red); outline-offset: 2px; }

/* 수량 — 카드형 라디오 */
.qty { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 15px; }
.qty input { position: absolute; opacity: 0; width: 0; height: 0; }
.qty label {
  display: block; padding: 20px; border-radius: 14px; cursor: pointer;
  border: 1px solid var(--line-2); background: rgba(255,255,255,.02);
  transition: all .35s var(--ease); position: relative; overflow: hidden;
}
.qty label::before { content: ""; position: absolute; inset: 0; background: var(--sheen); opacity: 0; transition: opacity .5s var(--ease); }
.qty label:hover { border-color: rgba(255,255,255,.34); }
.qty label:hover::before { opacity: 1; }
.qty__v { font-size: clamp(17px, 1.7vw, 23px); font-weight: 800; letter-spacing: -.03em; }
.qty__x { margin-top: 6px; font-size: 12.5px; color: var(--tx-3); }
.qty input:checked + label { border-color: var(--red); background: rgba(255,20,20,.09); }
.qty input:checked + label .qty__v { color: var(--red); }
.qty input:focus-visible + label { outline: 2px solid var(--red); outline-offset: 2px; }
.qty label .qty__b {
  display: inline-block; margin-bottom: 8px; padding: 3px 9px; border-radius: 999px;
  background: var(--red); color: #fff; font-size: 10.5px; font-weight: 800; letter-spacing: .06em;
}
@media (max-width: 900px) { .qty { grid-template-columns: repeat(2, 1fr); } }

.in {
  width: 100%; margin-top: 13px; padding: 15px 17px;
  background: rgba(255,255,255,.03); border: 1px solid var(--line-2); border-radius: 12px;
  font-size: 15.5px; color: var(--tx);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.in::placeholder { color: rgba(255,255,255,.26); }
.in:focus { outline: none; border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.055); }
textarea.in { min-height: 128px; resize: vertical; line-height: 1.65; }

.two { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 620px) { .two { grid-template-columns: 1fr; } }

.note {
  display: flex; gap: 14px; padding: 18px 20px; border-radius: 12px;
  background: rgba(255,20,20,.06); border: 1px solid rgba(255,20,20,.2);
  font-size: 13.5px; line-height: 1.65; color: var(--tx-2);
}
.note b { color: #fff; }

/* 결과 패널 */
.done { display: none; }
.done.is-on { display: block; animation: pop .6s var(--ease); }
@keyframes pop { from { opacity: 0; transform: translateY(14px) } to { opacity: 1; transform: none } }
.done__box {
  margin-top: 20px; padding: 22px; border-radius: 14px;
  background: rgba(255,255,255,.035); border: 1px solid var(--line);
  font-size: 13.5px; line-height: 1.75; color: var(--tx-2);
  white-space: pre-wrap; max-height: 320px; overflow: auto;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
}
.done__cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.foot { border-top: 1px solid var(--line); padding: clamp(44px, 6vw, 76px) 0 40px; }
.foot__top { display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; align-items: flex-start; }
.foot__cts { display: flex; flex-wrap: wrap; gap: clamp(24px, 4vw, 64px); }
.foot__k { font-size: 11px; font-weight: 800; letter-spacing: .18em; color: var(--tx-3); }
.foot__v { margin-top: 7px; font-size: clamp(15px, 1.3vw, 19px); font-weight: 700; letter-spacing: -.02em; }
.foot__bot { margin-top: clamp(36px, 5vw, 60px); padding-top: 26px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; }


/* ==========================================================================
   FX-OFF — 모션 최소화 설정이거나, 스크롤 구동이 동작하지 않는 환경
   (구형 브라우저 · 임베드 뷰 · IntersectionObserver 미작동)
   ========================================================================== */
.fx-off { scroll-behavior: auto; }
.fx-off [data-rv] { opacity: 1 !important; transform: none !important; }
.fx-off .drawline { transform: scaleX(1) !important; }
.fx-off .scene { height: auto; }
.fx-off .scene__pin { position: relative; height: auto; padding: clamp(70px,9vw,120px) 0; display: block; }
.fx-off .scene__steps { position: relative; }
.fx-off .scene__step {
  position: relative; left: 0; right: auto;
  opacity: 1; transform: none; max-width: none;
  padding-bottom: 44px; pointer-events: auto;
}
.fx-off .scene__step + .scene__step { border-top: 1px solid var(--line); padding-top: 44px; }
.fx-off .scene__prog { display: none; }
.fx-off .hero__art { transform: none !important; opacity: 1 !important; }
.fx-off [data-plx] { transform: none !important; }

/* ==========================================================================
   접근성 — 모션 최소화 (JS 없이도 동작하도록 CSS 로 한 번 더)
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-rv] { opacity: 1 !important; transform: none !important; }
  .drawline { transform: scaleX(1) !important; }
  .scene { height: auto; }
  .scene__pin { position: relative; height: auto; padding: 80px 0; }
  .scene__steps { position: static; }
  .scene__step { position: static; opacity: 1; transform: none; margin-bottom: 40px; max-width: none; }
  .scene__prog { display: none; }
}

/* ==========================================================================
   하위 페이지 — 키워드별 랜딩
   ========================================================================== */

.phero { position: relative; padding: clamp(120px, 17vh, 200px) 0 clamp(50px, 7vw, 92px); overflow: hidden; }
.phero__bg { position: absolute; inset: 0; z-index: -1; }
.phero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .3; }
.phero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(110% 80% at 4% 92%, rgba(255,20,20,.14), transparent 58%),
    linear-gradient(92deg, var(--bg) 34%, rgba(5,5,6,.82) 60%, rgba(5,5,6,.5) 100%),
    linear-gradient(to top, var(--bg) 1%, transparent 46%);
}

/* 빵부스러기 */
.crumb { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; font-size: 13px; color: var(--tx-3); }
.crumb a { color: var(--tx-3); transition: color .3s var(--ease); }
.crumb a:hover { color: var(--tx); }
.crumb span[aria-current] { color: var(--tx-2); }
.crumb i { font-style: normal; opacity: .45; }

/* 본문 — 읽는 글 */
.doc { max-width: 46em; }
.doc h2 { font-size: clamp(24px, 2.9vw, 40px); font-weight: 800; letter-spacing: -.035em; line-height: 1.24; margin-top: clamp(46px, 6vw, 78px); }
.doc h3 { font-size: clamp(18px, 1.8vw, 25px); font-weight: 800; letter-spacing: -.028em; margin-top: clamp(30px, 3.6vw, 46px); }
.doc p  { font-size: clamp(15.5px, 1.25vw, 18px); line-height: 1.82; color: var(--tx-2); margin-top: 17px; }
.doc p b, .doc li b { color: #fff; font-weight: 700; }
.doc ul { margin-top: 18px; display: flex; flex-direction: column; gap: 11px; }
.doc li {
  position: relative; padding-left: 20px;
  font-size: clamp(15px, 1.2vw, 17.5px); line-height: 1.72; color: var(--tx-2);
}
.doc li::before { content: ""; position: absolute; left: 2px; top: .72em; width: 6px; height: 6px; border-radius: 999px; background: var(--red); }
.doc > :first-child { margin-top: 0; }

/* 다른 페이지로 넘기는 카드 */
.next { display: grid; gap: 14px; grid-template-columns: repeat(3, 1fr); margin-top: clamp(46px, 6vw, 76px); }
@media (max-width: 820px) { .next { grid-template-columns: 1fr; } }
.next a {
  display: block; padding: 26px 28px; border-radius: 16px;
  border: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  transition: border-color .4s var(--ease), transform .4s var(--ease);
}
.next a:hover { border-color: var(--line-2); transform: translateY(-3px); }
.next__k { font-size: 11.5px; font-weight: 800; letter-spacing: .16em; color: var(--red); }
.next__t { margin-top: 11px; font-size: clamp(17px, 1.5vw, 21px); font-weight: 800; letter-spacing: -.026em; }
.next__x { margin-top: 8px; font-size: 13.5px; line-height: 1.6; color: var(--tx-3); }

/* 페이지 하단 문의 유도 */
.cta {
  margin-top: clamp(46px, 6vw, 78px); padding: clamp(30px, 4vw, 52px);
  border-radius: 20px; border: 1px solid rgba(255,20,20,.22);
  background: linear-gradient(135deg, rgba(255,20,20,.08), rgba(255,20,20,.02));
}
.cta__row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
