/* ============================================================
   ART-DETL-121 · 윤슬 레코즈 「해류」 · SFT 소프트·파스텔
   LP 바이닐 상세페이지 1p
   ============================================================ */

/* 암묵 그리드 트랙이 max-content 로 부풀어 페이지를 밀어내는 것을 원천 차단 */
* { grid-auto-columns: minmax(0, 1fr); }
/* 그리드/플렉스 자식이 내재 폭을 주장하지 못하게 한다 (중간 래퍼까지 커버) */
:where([style*="grid"], .grid, [class*="__grid"], [class*="__list"], [class*="__inner"],
       .hero, .spec, .tracks, .buy) > * { min-width: 0; }

:root {
  --brand:       #3E5ACC;
  --brand-ink:   #FFFFFF;
  --accent:      #F2A183;
  --accent-ink:  #3A1A0B;
  --surface:     #FBFAFF;
  --surface-alt: #EDEFFA;
  --font-display: var(--font-sans);
  --r: var(--r-xl);
}

body { background: var(--surface); }
::selection { background: var(--accent); color: var(--accent-ink); }

/* ── 공통 타입 ─────────────────────────────────────────────── */

.kicker, .label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--brand);
}
.label--mute { color: var(--ink-3); }
.section--alt .label--mute { color: var(--ink-2); }

.h2 {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-tight);
  line-height: 1.16;
}
.body-lg { font-size: var(--fs-md); color: var(--ink-2); max-width: 46ch; }

/* ── 버튼 ──────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-6);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  border-radius: var(--r-full);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease), transform var(--dur-fast) var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn--lg { padding: var(--sp-5) var(--sp-8); font-size: var(--fs-md); }

/* 브랜드 컬러 배경 위 라벨은 반드시 --brand-ink (실측 5.93:1) */
.btn--solid { background: var(--brand); color: var(--brand-ink); box-shadow: var(--sh-md); }
.btn--solid:hover { background: color-mix(in oklab, var(--brand) 84%, black); box-shadow: var(--sh-lg); }

.btn--soft { background: var(--accent); color: var(--accent-ink); }
.btn--soft:hover { background: color-mix(in oklab, var(--accent) 84%, white); }

.btn--line { border: 1px solid var(--line-strong); color: var(--ink); background: var(--surface); }
.btn--line:hover { border-color: var(--brand); color: var(--brand); }

/* ── 헤더 ──────────────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: color-mix(in oklab, var(--surface) 88%, transparent);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-block: var(--sp-3);
  padding-inline: max(var(--gutter), calc((100vw - var(--container)) / 2));
}
.nav__logo {
  display: inline-flex; align-items: center; gap: var(--sp-3);
  font-size: var(--fs-sm); font-weight: var(--fw-bold); letter-spacing: var(--ls-wide);
}
.nav__mark {
  width: 22px; height: 22px; flex: none;
  border-radius: var(--r-full);
  background: radial-gradient(circle at 50% 50%,
    var(--surface) 0 16%, var(--brand) 17% 100%);
}
.nav__menu { display: none; gap: var(--sp-6); }
.nav__menu a { font-size: var(--fs-sm); color: var(--ink-2); }
.nav__menu a:hover { color: var(--brand); }
@media (min-width: 768px) { .nav__menu { display: flex; } }

/* ── 히어로 ────────────────────────────────────────────────── */
/* SPEC 8절 해법 B — 사진 행을 상단 26svh 로 분리하고 텍스트는 solid 면에.
   본문이 사진 위에 얹히지 않으므로 대비가 구조적으로 보장된다.        */

.hero {
  --header-h: 56px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: 26svh minmax(0, 1fr);
}
.hero__media { grid-area: 1 / 1 / 2 / 2; position: relative; min-width: 0; }
.hero__media .img-slot {
  position: absolute; inset: 0;
  aspect-ratio: auto;
  border-radius: 0;
}
.hero__pic--d { display: none; }
@media (min-width: 768px) { .hero__pic--m { display: none; } .hero__pic--d { display: block; } }

.hero__text {
  grid-area: 2 / 1 / 3 / 2;
  display: grid;
  gap: var(--sp-4);
  align-content: center;
  padding: var(--sp-6) var(--gutter) var(--sp-8);
}
.hero__eyebrow { display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-3); }
.pill {
  display: inline-flex; align-items: center;
  padding: var(--sp-1) var(--sp-4);
  border-radius: var(--r-full);
  background: var(--surface-alt);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--ink-2);
}
.pill--hot { background: var(--accent); color: var(--accent-ink); }

.hero__title {
  font-size: var(--fs-4xl);
  letter-spacing: var(--ls-tighter);
  line-height: 1.02;
}
.hero__title em { font-style: normal; color: var(--brand); }
.hero__lead { font-size: var(--fs-md); color: var(--ink-2); max-width: 38ch; }
.hero__price {
  display: flex; align-items: baseline; gap: var(--sp-3);
  font-size: var(--fs-2xl); font-weight: var(--fw-bold); letter-spacing: var(--ls-tight);
}
.hero__price s { font-size: var(--fs-md); font-weight: var(--fw-normal); color: var(--ink-3); }
.hero__price b { color: var(--brand); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-2); }
.hero__note { font-size: var(--fs-xs); color: var(--ink-3); }

@media (min-width: 1024px) {
  .hero {
    --header-h: 64px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 52%);
    grid-template-rows: minmax(0, 1fr);
    min-height: calc(100svh - var(--header-h));
  }
  /* ★ 미디어가 DOM 앞이므로 행까지 못박는다 (SPEC 8절 2번) */
  .hero__media { grid-area: 1 / 2 / 2 / 3; }
  .hero__text  { grid-area: 1 / 1 / 2 / 2;
                 padding-left: max(var(--gutter), calc((100vw - var(--container)) / 2));
                 padding-right: var(--sp-8); padding-block: var(--sp-8); }
}

/* ── 스펙 바 ───────────────────────────────────────────────── */

.spec { background: var(--surface-alt); }
.spec__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  padding-inline: max(var(--gutter), calc((100vw - var(--container)) / 2));
}
.spec__grid > div { background: var(--surface-alt); padding: var(--sp-5) var(--sp-4); }
.spec dt { font-size: var(--fs-xs); letter-spacing: var(--ls-wide); color: var(--ink-2); margin-bottom: var(--sp-2); }
.spec dd { font-size: var(--fs-lg); font-weight: var(--fw-bold); letter-spacing: var(--ls-tight); }
.spec dd span { font-size: var(--fs-sm); font-weight: var(--fw-medium); color: var(--ink-2); margin-left: 3px; }

@media (min-width: 768px) { .spec__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* ── 트랙리스트 ────────────────────────────────────────────── */

.tracks__inner { display: grid; gap: var(--sp-7); }
.tracks__head { display: grid; gap: var(--sp-4); align-content: start; }
.tracks__list { display: grid; gap: var(--sp-1); }
.track {
  display: grid;
  grid-template-columns: minmax(0, 2.4rem) minmax(0, 1fr) minmax(0, auto);
  gap: var(--sp-4);
  align-items: center;
  padding: var(--sp-4);
  border-radius: var(--r);
  transition: background var(--dur) var(--ease);
}
.track:hover { background: var(--surface-alt); }
.track__n { font-size: var(--fs-sm); color: var(--ink-3); }
.track__t { font-size: var(--fs-md); font-weight: var(--fw-semibold); }
.track__t small { display: block; font-size: var(--fs-xs); font-weight: var(--fw-normal); color: var(--ink-2); margin-top: 2px; }
.track__d { font-size: var(--fs-sm); color: var(--ink-3); }
.track.is-single .track__t { color: var(--brand); }

@media (min-width: 1024px) {
  .tracks__inner { grid-template-columns: minmax(0, 340px) minmax(0, 1fr); gap: var(--sp-9); }
  .tracks__head { position: sticky; top: var(--sp-9); }
}

/* ── 구성품 ────────────────────────────────────────────────── */

.items { display: grid; gap: var(--sp-6); }
.item { display: grid; gap: var(--sp-4); }
.item .img-slot { box-shadow: var(--sh-md); }
.item h3 { font-size: var(--fs-md); font-weight: var(--fw-bold); letter-spacing: var(--ls-tight); }
.item p { font-size: var(--fs-sm); color: var(--ink-2); }
@media (min-width: 768px) { .items { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--sp-5); } }

/* ── 이야기 (풀블리드 + 겹침 카드) ─────────────────────────── */

.story { position: relative; padding-bottom: var(--section-y); }
.story__media { border-radius: 0; aspect-ratio: 4 / 5; }
.story__card {
  position: relative;
  margin-top: calc(var(--sp-8) * -1);
  padding: var(--sp-6);
  background: var(--surface);
  border-radius: var(--r);
  box-shadow: var(--sh-lg);
  display: grid;
  gap: var(--sp-4);
}
.story__list { display: grid; gap: var(--sp-3); margin-top: var(--sp-2); }
.story__list li {
  display: flex; gap: var(--sp-4);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--line);
  font-size: var(--fs-sm); color: var(--ink-2);
}
.story__list b { color: var(--brand); min-width: 5em; }

@media (min-width: 768px) {
  .story__media { aspect-ratio: 21 / 9; }
  .story__card { margin-top: calc(var(--sp-10) * -1); max-width: 620px; padding: var(--sp-8); }
}

/* ── 티커 ──────────────────────────────────────────────────── */

.ticker { overflow: hidden; background: var(--surface-alt); padding-block: var(--sp-4); }
.ticker__track { display: flex; align-items: center; gap: var(--sp-6); width: max-content; animation: ticker 40s linear infinite; }
.ticker__track span { font-size: var(--fs-sm); letter-spacing: var(--ls-wide); color: var(--ink-2); white-space: nowrap; }
.ticker__track i { width: 7px; height: 7px; border-radius: var(--r-full); background: var(--accent); flex: none; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ── 인용 ──────────────────────────────────────────────────── */

.quote { display: grid; gap: var(--sp-5); text-align: center; }
.quote p { font-size: var(--fs-xl); font-weight: var(--fw-medium); line-height: 1.5; letter-spacing: var(--ls-tight); }
.quote footer { font-size: var(--fs-sm); color: var(--ink-2); }
.quote footer span { color: var(--brand); font-weight: var(--fw-semibold); }

/* ── 상세 표 ───────────────────────────────────────────────── */

.tablewrap { overflow-x: auto; min-width: 0; border-radius: var(--r); border: 1px solid var(--line); }
table.tbl { width: 100%; min-width: 520px; border-collapse: collapse; background: var(--surface); }
.tbl th, .tbl td { padding: var(--sp-4); text-align: left; font-size: var(--fs-sm); border-bottom: 1px solid var(--line); }
.tbl th { width: 34%; color: var(--ink-2); font-weight: var(--fw-medium); background: var(--surface-alt); }
.tbl tr:last-child th, .tbl tr:last-child td { border-bottom: 0; }

/* ── FAQ ───────────────────────────────────────────────────── */

.qa { border-top: 1px solid var(--line); }
.qa:last-child { border-bottom: 1px solid var(--line); }
.qa summary {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-5);
  padding-block: var(--sp-5);
  font-size: var(--fs-md); font-weight: var(--fw-semibold);
  cursor: pointer; list-style: none;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { color: var(--brand); }
.qa summary::after {
  content: ""; width: 12px; height: 12px; flex: none;
  background:
    linear-gradient(var(--ink), var(--ink)) center / 100% 1px no-repeat,
    linear-gradient(var(--ink), var(--ink)) center / 1px 100% no-repeat;
  transition: transform var(--dur) var(--ease);
}
.qa[open] summary::after { transform: rotate(45deg); }
.qa p { padding-bottom: var(--sp-5); font-size: var(--fs-sm); color: var(--ink-2); max-width: 62ch; }

/* ── 구매 CTA ──────────────────────────────────────────────── */

.buy {
  background: var(--surface-alt);
  border-radius: var(--r-xl);
  padding: var(--sp-7) var(--sp-6);
  display: grid;
  gap: var(--sp-5);
  align-items: center;
}
.buy__title { font-size: var(--fs-2xl); font-weight: var(--fw-bold); letter-spacing: var(--ls-tight); line-height: 1.14; }
.buy__lead { font-size: var(--fs-sm); color: var(--ink-2); margin-top: var(--sp-3); }
.buy__side { display: grid; gap: var(--sp-3); }
.buy__price { display: flex; align-items: baseline; gap: var(--sp-3); font-size: var(--fs-2xl); letter-spacing: var(--ls-tight); font-weight: var(--fw-bold); }
.buy__price b { color: var(--brand); }
.buy__price s { font-size: var(--fs-md); font-weight: var(--fw-normal); color: var(--ink-2); }
.buy__note { font-size: var(--fs-xs); color: var(--ink-2); }

@media (min-width: 1024px) {
  .buy { grid-template-columns: minmax(0, 1fr) minmax(0, 340px); padding: var(--sp-8); gap: var(--sp-8); }
}

/* ── 하단 고정 바 (모바일) ─────────────────────────────────── */

.stickybar {
  position: sticky;
  bottom: 0;
  z-index: var(--z-sticky);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-3) var(--gutter);
  background: color-mix(in oklab, var(--surface) 92%, transparent);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}
.stickybar__p { font-size: var(--fs-md); font-weight: var(--fw-bold); }
.stickybar__p span { display: block; font-size: var(--fs-xs); font-weight: var(--fw-normal); color: var(--ink-2); }
@media (min-width: 1024px) { .stickybar { display: none; } }

/* ── 푸터 ──────────────────────────────────────────────────── */

.foot { padding-block: var(--sp-8) var(--sp-6); border-top: 1px solid var(--line); }
.foot__inner { display: grid; gap: var(--sp-5); }
.foot__brand { display: inline-flex; align-items: center; gap: var(--sp-3); font-size: var(--fs-sm); font-weight: var(--fw-bold); letter-spacing: var(--ls-wide); }
.foot__addr { font-style: normal; font-size: var(--fs-sm); color: var(--ink-2); line-height: 1.9; }
.foot__nav { display: flex; flex-wrap: wrap; gap: var(--sp-5); }
.foot__nav a { font-size: var(--fs-sm); color: var(--ink-2); }
.foot__nav a:hover { color: var(--brand); }
.foot__copy { grid-column: 1 / -1; padding-top: var(--sp-5); border-top: 1px solid var(--line); font-size: var(--fs-xs); color: var(--ink-3); }

@media (min-width: 768px) { .foot__inner { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--sp-7); } }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .ticker__track { animation: none; }
}

/* ============================================================
   ★ SPEC 4-C 보강 — 브랜드 마크 · 아이콘 · 인터랙션
   레이아웃·색·타이포는 건드리지 않는다. 반응만 더한다.
   ============================================================ */

/* base.css 가 svg 를 display:block 으로 리셋하므로 inline-block 으로 되돌린다. */
.ico { width: 1em; height: 1em; flex: none; display: inline-block; vertical-align: -0.125em; }

/* ── 브랜드 마크 ────────────────────────────────────────────
   레코드판 한가운데를 물결이 가로지른다 — 윤슬 + 「해류」.
   마우스를 올리면 판이 돌고 물결이 한 번 흐른다. */

.bmark { flex: none; align-self: center; color: var(--brand); overflow: visible; }
.bmark__disc { transform-origin: 50% 50%; transition: transform var(--dur-slow) var(--ease-out); }
.bmark__wave {
  stroke-dasharray: 30 0;
  transition: stroke var(--dur) var(--ease);
}
.nav__logo:hover .bmark__disc,
.nav__logo:focus-visible .bmark__disc { transform: rotate(180deg); }
.foot__brand:hover .bmark__disc { transform: rotate(180deg); }
.nav__logo:hover .bmark__wave { animation: bmarkFlow var(--dur-slow) var(--ease-out); stroke: var(--accent); }
@keyframes bmarkFlow {
  from { stroke-dasharray: 0 30; }
  to   { stroke-dasharray: 30 0; }
}

.nav__logo { transition: color var(--dur) var(--ease); }
.nav__logo:hover { color: var(--brand); }
.foot__brand .bmark { transition: transform var(--dur) var(--ease-out); }

/* ── 아이콘이 붙는 자리 ─────────────────────────────────────── */

.spec dt { display: flex; align-items: center; gap: var(--sp-2); }
.spec dt .ico { color: var(--brand); font-size: var(--fs-base); transition: transform var(--dur) var(--ease-out); }
.spec__grid > div:hover .ico { transform: translateY(-2px); }

.track__d { display: inline-flex; align-items: center; gap: var(--sp-2); }
.track__d .ico { color: var(--ink-2); transition: color var(--dur) var(--ease), transform var(--dur) var(--ease-out); }
.track:hover .track__d .ico { color: var(--brand); transform: rotate(24deg); }

.story__list li { display: flex; align-items: baseline; gap: var(--sp-3); }
.story__list li .ico { color: var(--brand); align-self: center; transition: transform var(--dur) var(--ease-out); }
.story__list li:hover .ico { transform: scale(1.18); }

.buy__note, .stickybar__p { display: flex; align-items: center; gap: var(--sp-2); flex-wrap: wrap; }
.buy__note .ico, .stickybar__p .ico { color: var(--brand); flex: none; }

.foot__lines { display: grid; gap: 0; }
.foot__lines span { display: flex; align-items: center; gap: var(--sp-3); }
.foot__lines .ico { color: var(--brand); font-size: var(--fs-lg);
                    transition: transform var(--dur) var(--ease-out), color var(--dur) var(--ease); }
.foot__lines span:hover .ico { transform: scale(1.12); }

.btn__arrow { font-size: 1.25em; transition: transform var(--dur) var(--ease-out); }
.btn:hover .btn__arrow { transform: translateX(5px); }

/* ── 버튼 ──────────────────────────────────────────────────── */

.btn { transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
                   border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
                   transform var(--dur-fast) var(--ease-out); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(1px); }

/* ── 내비: 밑줄이 한쪽에서 그어진다 ─────────────────────────── */

.nav__menu a { position: relative; padding-block: 3px; }
.nav__menu a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  border-radius: var(--r-full);
  background: var(--brand); transform: scaleX(0); transform-origin: right;
  transition: transform var(--dur) var(--ease-out);
}
.nav__menu a:hover::after { transform: scaleX(1); transform-origin: left; }

/* ── 제품 요약 ─────────────────────────────────────────────── */

.spec__grid > div { transition: background var(--dur) var(--ease); }
.spec__grid > div:hover { background: var(--surface); }
.spec dd { transition: color var(--dur) var(--ease), transform var(--dur) var(--ease-out); }
.spec__grid > div:hover dd { color: var(--brand); transform: translateY(-2px); }

/* ── 트랙리스트: 행이 밀려나며 번호가 커진다 ────────────────── */

.track { transition: background var(--dur) var(--ease), transform var(--dur) var(--ease-out); }
.track:hover { transform: translateX(5px); }
.track__n { transition: color var(--dur) var(--ease), letter-spacing var(--dur) var(--ease); }
.track:hover .track__n { color: var(--brand); letter-spacing: var(--ls-wide); }
.track__t { transition: color var(--dur) var(--ease); }
.track:hover .track__t { color: var(--brand); }
.track.is-single .track__t { transition: color var(--dur) var(--ease); }

/* ── 구성품 카드: 들어올려지고 사진이 당겨진다 ──────────────── */

.item { transition: transform var(--dur) var(--ease-out); }
.item .img-slot { overflow: hidden; transition: box-shadow var(--dur) var(--ease); }
.item .img-slot img { transition: transform var(--dur-slow) var(--ease-out); }
.item:hover { transform: translateY(-6px); }
.item:hover .img-slot { box-shadow: var(--sh-lg); }
.item:hover .img-slot img { transform: scale(1.06); }
.item h3 { transition: color var(--dur) var(--ease); }
.item:hover h3 { color: var(--brand); }

/* ── 티커: 올리면 멈춘다 ────────────────────────────────────── */

.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__track span { transition: color var(--dur) var(--ease); }
.ticker:hover .ticker__track span { color: var(--brand); }
.ticker__track i { transition: transform var(--dur) var(--ease-out); }
.ticker:hover .ticker__track i { transform: scale(1.6); }

/* ── 이야기 카드 · 상세표 ──────────────────────────────────── */

.story__card { transition: box-shadow var(--dur-slow) var(--ease-out); }
.story__card:hover { box-shadow: var(--sh-xl); }
.tbl tr { transition: background var(--dur) var(--ease); }
.tbl tr:hover { background: var(--surface-alt); }
.tbl th { transition: color var(--dur) var(--ease); }
.tbl tr:hover th { color: var(--brand); }

/* ── FAQ: 열릴 때 답이 흘러나온다 ──────────────────────────── */

@keyframes qaOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}
.qa[open] p { animation: qaOpen var(--dur) var(--ease-out) both; }
.qa summary { transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease-out); }
.qa summary:hover { padding-left: var(--sp-3); }

/* ── 구매 · 하단 고정바 ────────────────────────────────────── */

.buy__price b { transition: color var(--dur) var(--ease); }
.buy:hover .buy__price b { color: var(--brand); }
.stickybar { transition: box-shadow var(--dur) var(--ease); }
.stickybar:hover { box-shadow: var(--sh-xl); }
.pill { transition: transform var(--dur) var(--ease-out); }
.pill:hover { transform: translateY(-2px); }
.pill--hot { animation: pillPulse 3.4s var(--ease) infinite; }
@keyframes pillPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}

/* ── 푸터 링크 ─────────────────────────────────────────────── */

.foot__nav a { position: relative; display: inline-block; }
.foot__nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform var(--dur) var(--ease-out);
}
.foot__nav a:hover::after { transform: scaleX(1); transform-origin: left; }

/* ── 형제 계단식 지연 ───────────────────────────────────────── */

html.js .spec__grid .reveal:nth-child(2) { transition-delay: 60ms; }
html.js .spec__grid .reveal:nth-child(3) { transition-delay: 120ms; }
html.js .spec__grid .reveal:nth-child(4) { transition-delay: 180ms; }
html.js .items .reveal:nth-child(2) { transition-delay: 90ms; }
html.js .items .reveal:nth-child(3) { transition-delay: 180ms; }
html.js .tracks__list .reveal:nth-child(2) { transition-delay: 40ms; }
html.js .tracks__list .reveal:nth-child(3) { transition-delay: 80ms; }
html.js .tracks__list .reveal:nth-child(4) { transition-delay: 120ms; }
html.js .tracks__list .reveal:nth-child(5) { transition-delay: 160ms; }
html.js .tracks__list .reveal:nth-child(6) { transition-delay: 200ms; }

@media (prefers-reduced-motion: reduce) {
  html.js .reveal { transition-delay: 0s !important; }
  .nav__logo:hover .bmark__disc, .foot__brand:hover .bmark__disc,
  .btn:hover, .track:hover, .item:hover, .item:hover .img-slot img,
  .spec__grid > div:hover dd, .spec__grid > div:hover .ico,
  .track:hover .track__d .ico, .story__list li:hover .ico,
  .ticker:hover .ticker__track i, .pill:hover,
  .foot__lines span:hover .ico { transform: none; }
  .pill--hot { animation: none; }
}


/* ===== 획일성 제거 — SFT 무드 어휘 =====================================
   160작품이 레퍼런스의 밑줄 draw·카드 리프트·대문자 킥커를 그대로 복사해
   같은 사이트 리스킨으로 보였다. 반응 방식을 무드에 맞게 갈아끼운다.
   ==================================================================== */
/* 세로 카덴스를 작품마다 다르게 — 전부 같은 --section-y 를 쓰는 게 구조적 tell 이었다 */
:root { --section-y: clamp(4.33rem, 2.6930rem + 7.0251vw, 8.66rem); }

/* 소프트 — 알약 배경이 부드럽게 번진다. */
.nav__menu a::after, .foot__nav a::after { display: none !important; }
.foot__nav a, .nav__menu a { border-radius: var(--r-full); transition: color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease); }
.foot__nav a, .nav__menu a:hover {
  background: color-mix(in oklab, var(--brand) 12%, transparent);
  box-shadow: 0 0 0 9px color-mix(in oklab, var(--brand) 12%, transparent);
}
.spec__grid > div:hover .ico, .btn:hover, .spec__grid > div:hover dd, .item:hover, .pill:hover { transform: none; }
.spec__grid > div:hover .ico, .btn:hover, .spec__grid > div:hover dd, .item:hover, .pill:hover { transform: translateY(-3px); box-shadow: 0 10px 28px color-mix(in oklab, var(--brand) 14%, transparent); }


/* ===== 티커 걷어내기 — SFT 무드에 마퀴는 어울리지 않는다 ==========
   내용(실적·목록·인증)은 실제 정보라 유지하고 장치만 바꾼다.
   ================================================================ */
/* 티커 → 알약 칩. */
.ticker { overflow: visible; }
.ticker__track { animation: none !important; width: auto; flex-wrap: wrap; gap: var(--sp-2) var(--sp-3); }
.ticker__track > span {
  padding: var(--sp-2) var(--sp-5);
  background: color-mix(in oklab, var(--brand) 11%, transparent);
  border-radius: var(--r-full);
}
.ticker__track > i { display: none; }

/* webit-touch */
@media (max-width: 767px) {
  .nav__inner { flex-wrap: wrap; overflow: visible; }
  .hero__actions, .hero__acts { flex-wrap: wrap; }
}
html.tier-premium .hero__lead { letter-spacing: -.01em; }
