/* ============================================================
   WED-DETL-135 · 블루아워 · NEO 다크네온
   L 6% 잉크빛 지면 위 아주르(#3194F6) 네온. 상세페이지 1p.
   다크 무드라 SPEC 4-B 가 허용한 중립색 5개까지 재정의한다.
   ============================================================ */

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

:root {
  --brand:       #3194f6;
  --brand-ink:   #04121f;
  --accent:      #6fe3ff;
  --accent-ink:  #04121f;
  --surface:     #0a0e15;
  --surface-alt: #131a25;
  --ink:         #e7eef7;
  --ink-2:       #a6b4c6;
  --ink-3:       #7c8a9e;
  --line:        #23303f;
  --line-strong: #35485d;
  --font-display: var(--font-sans);
  --r: var(--r-md);
}

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

/* ── 공통 ──────────────────────────────────────────────────── */

.kicker {
  font-size: var(--fs-xs); font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-widest); text-transform: uppercase; color: var(--brand);
}
.label { font-size: var(--fs-xs); font-weight: var(--fw-semibold); letter-spacing: var(--ls-widest); text-transform: uppercase; color: var(--ink-3); }
.label--alt { color: var(--ink-2); }
.h2 { font-size: var(--fs-3xl); letter-spacing: var(--ls-tighter); line-height: 1.06; }
.h3 { font-size: var(--fs-lg); letter-spacing: var(--ls-tight); }
.body-lg { font-size: var(--fs-md); color: var(--ink-2); max-width: 48ch; }
.body-sm { font-size: var(--fs-sm); color: var(--ink-2); }
.sec-head { display: grid; gap: var(--sp-4); align-content: start; justify-items: start; }

.section { padding-block: var(--section-y); }
.section--alt { background: var(--surface-alt); }

.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);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.btn--solid { background: var(--brand); color: var(--brand-ink); box-shadow: 0 0 0 rgba(49, 148, 246, 0); }
.btn--solid:hover { background: var(--accent); color: var(--accent-ink); box-shadow: 0 0 28px rgba(111, 227, 255, .45); }
.btn--line { border: 1px solid var(--line-strong); color: var(--ink); }
.btn--line:hover { border-color: var(--brand); color: var(--brand); }
.btn--sm { padding: var(--sp-3) var(--sp-5); }

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

.nav {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-header);
  background: color-mix(in oklab, var(--surface) 88%, transparent);
  backdrop-filter: saturate(1.5) blur(16px);
  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-4);
  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-widest); text-transform: uppercase; }
.nav__mark { width: 9px; height: 9px; border-radius: var(--r-full); background: var(--brand); box-shadow: 0 0 12px var(--brand); flex: none; }
.nav__menu { display: none; gap: var(--sp-6); }
.nav__menu a { font-size: var(--fs-sm); color: var(--ink-2); transition: color var(--dur) var(--ease); }
.nav__menu a:hover { color: var(--brand); }
@media (min-width: 1024px) { .nav__menu { display: flex; } }

/* ── 히어로 ── 모바일: 사진 행 26svh + 아래 텍스트 (SPEC 8 해법 B) ── */

.hero {
  --header-h: 68px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: 24svh auto;
  min-height: 100svh;
  padding-top: var(--header-h);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: ""; position: absolute; z-index: 0;
  inset: -18% -10% auto -30%; height: 78%;
  /* ★ 이 위에 --ink-3 · --brand 소형 텍스트가 얹힌다. 원본 사진이 없는 순수 합성면이라
     최악값을 역산해 알파를 잡았다(합성 #122332 · ink-3 4.56:1 · brand 5.10:1). */
  background: radial-gradient(ellipse 52% 60% at 22% 30%, rgba(49, 148, 246, .08), transparent 62%),
              radial-gradient(ellipse 46% 52% at 78% 8%, rgba(111, 227, 255, .05), transparent 60%);
  pointer-events: none;
}
.hero__media { grid-area: 1 / 1 / 2 / 2; position: relative; z-index: 1; overflow: hidden; }
.hero__media .img-slot { position: absolute; inset: 0; aspect-ratio: auto; border-radius: 0; }
.hero__media--wide { display: none; }

.hero__text {
  grid-area: 2 / 1 / 3 / 2; position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center; gap: var(--sp-4);
  padding-inline: var(--gutter);
  padding-block: var(--sp-5) var(--sp-6);
}
.hero__title { font-size: var(--fs-4xl); line-height: 1.02; letter-spacing: var(--ls-tighter); }
.hero__title em {
  font-style: normal; color: var(--brand);
  text-shadow: 0 0 32px rgba(49, 148, 246, .55);
}
.hero__lead { font-size: var(--fs-md); color: var(--ink-2); max-width: 34ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.hero__badges { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.hero__badges li {
  padding: var(--sp-2) var(--sp-4);
  border: 1px solid var(--line-strong); border-radius: var(--r-full);
  font-size: var(--fs-xs); color: var(--ink-2);
}
.hero__price {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: var(--sp-3);
  padding-top: var(--sp-5); border-top: 1px solid var(--line);
}
.hero__price b { font-size: var(--fs-2xl); font-weight: var(--fw-bold); letter-spacing: var(--ls-tight); color: var(--ink); }
.hero__price s { color: var(--ink-3); font-size: var(--fs-sm); }
.hero__price em { font-style: normal; color: var(--brand); font-size: var(--fs-sm); font-weight: var(--fw-semibold); }

@media (min-width: 1024px) {
  .hero {
    --header-h: 0px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 50%);
    grid-template-rows: minmax(0, 1fr);
    padding-top: 0;
  }
  .hero__text {
    grid-area: 1 / 1 / 2 / 2;
    gap: var(--sp-5);
    padding-block: var(--sp-9) var(--sp-7);
    padding-left: max(var(--gutter), calc((100vw - var(--container)) / 2));
    padding-right: var(--sp-8);
  }
  .hero__media { grid-area: 1 / 2 / 2 / 3; display: none; }
  .hero__media--wide { display: block; }
}

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

.specs { border-bottom: 1px solid var(--line); background: var(--surface-alt); }
.specs__grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-inline: max(var(--gutter), calc((100vw - var(--container)) / 2));
}
.spec { padding-block: var(--sp-5); padding-right: var(--sp-4); border-bottom: 1px solid var(--line); }
.spec:nth-child(odd) { border-right: 1px solid var(--line); }
.spec:nth-child(even) { padding-left: var(--sp-4); }
.spec dt { font-size: var(--fs-xs); letter-spacing: var(--ls-wide); text-transform: uppercase; 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); color: var(--ink-2); font-weight: var(--fw-medium); }
@media (min-width: 768px) {
  .specs__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .spec { border-bottom: 0; border-right: 1px solid var(--line); padding-inline: var(--sp-5); }
  .spec:first-child { padding-left: 0; }
  .spec:last-child { border-right: 0; }
}

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

.ticker { overflow: hidden; border-bottom: 1px solid var(--line); padding-block: var(--sp-4); }
.ticker__track { display: flex; align-items: center; gap: var(--sp-6); width: max-content; animation: ticker 36s linear infinite; }
.ticker__track span { font-size: var(--fs-sm); letter-spacing: var(--ls-wide); text-transform: uppercase; color: var(--ink-2); white-space: nowrap; }
.ticker__track i { width: 5px; height: 5px; border-radius: var(--r-full); background: var(--brand); box-shadow: 0 0 10px var(--brand); flex: none; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ── 러닝오더 ── 큰 숫자 스텝 ────────────────────────────── */

.runs { display: grid; gap: var(--sp-5); }
.run {
  display: grid; gap: var(--sp-3);
  padding: var(--sp-5);
  border: 1px solid var(--line); border-radius: var(--r);
  background: color-mix(in oklab, var(--surface-alt) 70%, transparent);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.run:hover { border-color: var(--brand); box-shadow: 0 0 0 1px rgba(49, 148, 246, .22), 0 18px 44px rgba(0, 0, 0, .5); }
.run__time { font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: var(--ls-wide); color: var(--brand); }
.run__num { font-size: var(--fs-2xl); font-weight: var(--fw-bold); letter-spacing: var(--ls-tighter); line-height: 1; color: var(--line-strong); }
.run h3 { font-size: var(--fs-lg); letter-spacing: var(--ls-tight); }
.run p { font-size: var(--fs-sm); color: var(--ink-2); }
@media (min-width: 768px) { .runs { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1280px) { .runs { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* ── 시안 갤러리 ── 비대칭 2단 + sticky ─────────────────── */

.cases__inner { display: grid; gap: var(--sp-7); }
.cases__list { display: grid; gap: var(--sp-6); }
.case { display: grid; gap: var(--sp-4); }
.case__media { border-radius: var(--r); }
.case__body { display: grid; gap: var(--sp-2); }
.case__tag { font-size: var(--fs-xs); letter-spacing: var(--ls-wide); text-transform: uppercase; color: var(--brand); }
.case p { font-size: var(--fs-sm); color: var(--ink-2); }
@media (min-width: 768px) { .cases__list { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) {
  .cases__inner { grid-template-columns: minmax(0, 320px) minmax(0, 1fr); gap: var(--sp-9); }
  .cases__head { position: sticky; top: var(--sp-9); align-self: start; }
}

/* ── 풀블리드 + 겹침 카드 ────────────────────────────────── */

.stage { position: relative; padding-bottom: var(--section-y); }
.stage__media { border-radius: 0; aspect-ratio: 4 / 5; }
.stage__card {
  position: relative;
  margin-top: calc(var(--sp-8) * -1);
  padding: var(--sp-6);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  display: grid; gap: var(--sp-4);
  box-shadow: 0 -12px 60px rgba(0, 0, 0, .55);
}
.stage__list { display: grid; gap: var(--sp-3); margin-top: var(--sp-2); }
.stage__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); }
.stage__list b { color: var(--ink); min-width: 5.5em; flex: none; }
@media (min-width: 768px) {
  .stage__media { aspect-ratio: 21 / 9; }
  .stage__card { margin-top: calc(var(--sp-10) * -1); margin-right: auto; max-width: 660px; padding: var(--sp-8); }
}

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

.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 b { color: var(--ink); font-weight: var(--fw-semibold); }

/* ── 추가 옵션 ─────────────────────────────────────────────── */

.adds { display: grid; gap: 0; border-top: 1px solid var(--line-strong); }
.add {
  display: grid; gap: var(--sp-3);
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding-block: var(--sp-5);
  border-bottom: 1px solid var(--line);
}
.add__name { font-size: var(--fs-md); font-weight: var(--fw-semibold); }
.add__name span { display: block; font-size: var(--fs-sm); font-weight: var(--fw-normal); color: var(--ink-2); margin-top: var(--sp-2); }
.add__price { font-size: var(--fs-md); font-weight: var(--fw-bold); white-space: nowrap; color: var(--brand); }

/* ── 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: 64ch; }

/* ── 문의 폼 ───────────────────────────────────────────────── */

.cta { position: relative; overflow: hidden; padding-block: var(--section-y); border-top: 1px solid var(--line); }
.cta::before {
  content: ""; position: absolute; inset: -20% -10% auto -10%; height: 90%;
  background: radial-gradient(ellipse 46% 62% at 30% 20%, rgba(49, 148, 246, .08), transparent 62%),
              radial-gradient(ellipse 40% 50% at 78% 12%, rgba(111, 227, 255, .05), transparent 60%);
  pointer-events: none;
}
.cta__inner { position: relative; z-index: 1; display: grid; gap: var(--sp-6); }
.cta__title { font-size: var(--fs-3xl); letter-spacing: var(--ls-tighter); line-height: 1.06; }
.form { display: grid; gap: var(--sp-4); }
.form__row { display: grid; gap: var(--sp-4); }
.field { display: grid; gap: var(--sp-2); }
.field > span { font-size: var(--fs-xs); font-weight: var(--fw-semibold); letter-spacing: var(--ls-wide); text-transform: uppercase; color: var(--ink-2); }
.field input, .field select, .field textarea {
  width: 100%; padding: var(--sp-4);
  background: var(--surface-alt); border: 1px solid var(--line-strong);
  border-radius: var(--r); font-size: var(--fs-sm); color: var(--ink);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { border-color: var(--brand); }
.field textarea { min-height: 7rem; resize: vertical; }
.form__note { font-size: var(--fs-xs); color: var(--ink-2); }
@media (min-width: 768px) { .form__row { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) {
  .cta__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 520px); gap: var(--sp-9); align-items: start; }
}

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

.foot { padding-block: var(--sp-8) var(--sp-6); border-top: 1px solid var(--line); background: var(--surface-alt); }
.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-widest); text-transform: uppercase; }
.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-2); }
@media (min-width: 768px) { .foot__inner { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--sp-7); } }


/* ── ★SPEC v1.8 · 유틸 색상 재확정 ──────────────────────────
   `.run p` 처럼 섹션 스코프 요소 선택자는 특이도 (0,1,1) 이라 색 유틸 (0,1,0) 을
   조용히 덮어쓴다. 레이아웃은 멀쩡하고 색만 새기 때문에 육안으로 안 잡힌다.
   파일 끝에서 요소 한정 선택자로 다시 못박는다 (동률이면 나중 규칙이 이긴다). */
p.kicker { color: var(--brand); }
p.label { color: var(--ink-3); }
p.label--alt { color: var(--ink-2); }
p.run__time { color: var(--brand); }
p.run__num { color: var(--line-strong); }
p.case__tag { color: var(--brand); }

/* ============================================================
   ★ SPEC 4-C — 브랜드 마크 · 아이콘 · 인터랙션 보강
   NEO 다크네온. 반응은 "빛이 번지는" 쪽으로 몰아준다.
   아이콘 색은 --brand(#3194F6) = 6.16:1 on --surface 로 실측 통과.
   ============================================================ */

/* base.css 의 `svg { display:block }` 때문에 인라인 아이콘이 제 줄로 떨어진다.
   inline-block 으로 되돌려야 글자 옆에 붙는다. */
.ico { display: inline-block; width: 1em; height: 1em; flex: none; vertical-align: -.125em; }
:is(dt, dd, h2, h3, p, li, span, b) > .ico:first-child { margin-inline-end: var(--sp-2); }

/* ── 브랜드 마크 — 지평선에 반쯤 잠긴 해(블루아워) ──────────── */
.nav__mark {
  width: 26px; height: 26px; flex: none; align-self: center;
  border: 0; border-radius: 0; background: none; box-shadow: none; transform: none;
  color: var(--brand);
  transition: transform var(--dur-slow) var(--ease-out), color var(--dur) var(--ease),
              filter var(--dur) var(--ease);
}
.nav__logo:hover .nav__mark,
.nav__logo:focus-visible .nav__mark {
  transform: translateY(-3px); color: var(--accent);
  filter: drop-shadow(0 0 8px color-mix(in oklab, var(--accent) 60%, transparent));
}
.foot__brand .nav__mark { width: 22px; height: 22px; }
.foot__brand:hover .nav__mark { transform: translateY(-3px); color: var(--accent); }

/* ── 아이콘 자리 ────────────────────────────────────────────── */
.spec dt .ico, .run__time .ico, .add__name .ico, .case__tag .ico { color: var(--brand); }
.foot__addr { display: grid; gap: var(--sp-3); line-height: 1.6; }
.foot__addr span { display: flex; align-items: flex-start; transition: color var(--dur) var(--ease); }
.foot__addr .ico { color: var(--brand); font-size: var(--fs-lg); margin-top: .05em; }
.foot__addr span:hover { color: var(--ink); }

/* ── 버튼 화살표 ────────────────────────────────────────────── */
.btn__arrow { font-size: 1.25em; transition: transform var(--dur) var(--ease-out); }
.btn:hover .btn__arrow { transform: translateX(5px); }

/* ── 링크 밑줄 ──────────────────────────────────────────────── */
.nav__menu a, .foot__nav a { position: relative; }
.nav__menu a::after, .foot__nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 1.5px;
  background: var(--brand); box-shadow: 0 0 8px color-mix(in oklab, var(--brand) 70%, transparent);
  transform: scaleX(0); transform-origin: right;
  transition: transform var(--dur) var(--ease-out);
}
.nav__menu a:hover::after, .foot__nav a:hover::after { transform: scaleX(1); transform-origin: left; }

/* ── 지표: 숫자가 켜진다 ────────────────────────────────────── */
.spec { transition: transform var(--dur) var(--ease-out); }
.spec:hover { transform: translateY(-3px); }
.spec dd { transition: color var(--dur) var(--ease), text-shadow var(--dur) var(--ease); }
.spec:hover dd { color: var(--accent); text-shadow: 0 0 18px color-mix(in oklab, var(--accent) 55%, transparent); }
.spec dt .ico { transition: transform var(--dur) var(--ease-out); }
.spec:hover dt .ico { transform: scale(1.14); }

/* ── 러닝오더: 시간 축이 밝아지고 번호가 커진다 ─────────────── */
.run { transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease-out); }
.run:hover { transform: translateY(-4px); }
.run__num { transition: color var(--dur) var(--ease), transform var(--dur) var(--ease-out); }
.run:hover .run__num { color: var(--accent); transform: scale(1.08); }
.run__time { transition: color var(--dur) var(--ease); }
.run:hover .run__time { color: var(--brand); }

/* ── 연출 시안 카드: 사진이 당겨지고 태그가 켜진다 ──────────── */
.case__media { overflow: hidden; }
.case__media img { transition: transform 900ms var(--ease-out), filter var(--dur-slow) var(--ease); }
.case:hover .case__media img { transform: scale(1.06); filter: saturate(1.14); }
.case__tag { transition: color var(--dur) var(--ease), letter-spacing var(--dur-slow) var(--ease); }
.case:hover .case__tag { color: var(--accent); letter-spacing: var(--ls-wide); }
.case__body h3 { transition: color var(--dur) var(--ease); }
.case:hover .case__body h3 { color: var(--brand); }

/* ── 추가 옵션: 행이 차오른다 ───────────────────────────────── */
.add { position: relative; transition: background var(--dur) var(--ease), padding-left var(--dur) var(--ease-out); }
.add::before {
  content: ""; position: absolute; left: 0; bottom: -1px; height: 1px; width: 0;
  background: var(--brand); box-shadow: 0 0 10px color-mix(in oklab, var(--brand) 70%, transparent);
  transition: width var(--dur-slow) var(--ease-out);
}
.add:hover { padding-left: var(--sp-3); background: color-mix(in oklab, var(--brand) 7%, transparent); }
.add:hover::before { width: 100%; }
.add__price { transition: color var(--dur) var(--ease); }
.add:hover .add__price { color: var(--accent); }

/* ── 스테이지 목록 ──────────────────────────────────────────── */
.stage__list li { transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.stage__list li:hover { color: var(--ink); border-color: var(--brand); }
.stage__card { transition: box-shadow var(--dur-slow) var(--ease); }
.stage__card:hover { box-shadow: 0 0 0 1px color-mix(in oklab, var(--brand) 40%, transparent), 0 24px 60px rgba(0, 0, 0, .5); }

/* ── 티커: 올리면 멈춘다 ────────────────────────────────────── */
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__track span { transition: color var(--dur) var(--ease), text-shadow var(--dur) var(--ease); }
.ticker:hover .ticker__track span { color: var(--accent); text-shadow: 0 0 14px color-mix(in oklab, var(--accent) 45%, transparent); }

/* ── FAQ ────────────────────────────────────────────────────── */
@keyframes qaFlow { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.qa[open] p { animation: qaFlow var(--dur) var(--ease-out) both; }
.qa summary::after { transition: transform var(--dur) var(--ease-out); }
.qa:hover summary::after { transform: rotate(90deg); }

/* ── 해가 뜨듯 마크가 한 번 번진다 (로고 hover) ─────────────── */
@keyframes sunRise {
  0%   { transform: translateY(3px); filter: drop-shadow(0 0 0 transparent); }
  60%  { transform: translateY(-5px); filter: drop-shadow(0 0 14px color-mix(in oklab, var(--accent) 75%, transparent)); }
  100% { transform: translateY(-3px); filter: drop-shadow(0 0 8px color-mix(in oklab, var(--accent) 60%, transparent)); }
}
.nav__logo:hover .nav__mark { animation: sunRise var(--dur-slow) var(--ease-out) both; }

/* ── 견적 CTA 가 천천히 맥동한다 ────────────────────────────── */
@keyframes neonHalo {
  0%, 100% { box-shadow: 0 0 0 0 color-mix(in oklab, var(--accent) 34%, transparent); }
  55%      { box-shadow: 0 0 0 12px color-mix(in oklab, var(--accent) 0%, transparent); }
}
.hero__actions .btn--solid { animation: neonHalo 3.6s var(--ease) infinite; }
.hero__actions .btn--solid:hover { animation: none; }

/* ── 폼 ─────────────────────────────────────────────────────── */
.field input, .field select, .field textarea { transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--brand); }
.field input:focus, .field textarea:focus { box-shadow: 0 0 0 3px color-mix(in oklab, var(--brand) 22%, transparent); }
.check span { transition: color var(--dur) var(--ease); }
.check:hover span { color: var(--ink); }

/* ── 형제 계단식 지연 ───────────────────────────────────────── */
html.js .specs__grid .reveal:nth-child(2) { transition-delay: 70ms; }
html.js .specs__grid .reveal:nth-child(3) { transition-delay: 140ms; }
html.js .specs__grid .reveal:nth-child(4) { transition-delay: 210ms; }
html.js .runs .reveal:nth-child(2) { transition-delay: 80ms; }
html.js .runs .reveal:nth-child(3) { transition-delay: 160ms; }
html.js .runs .reveal:nth-child(4) { transition-delay: 240ms; }
html.js .cases .reveal:nth-child(2) { transition-delay: 90ms; }
html.js .cases .reveal:nth-child(3) { transition-delay: 180ms; }
html.js .cases .reveal:nth-child(4) { transition-delay: 270ms; }
html.js .adds .reveal:nth-child(2) { transition-delay: 60ms; }
html.js .adds .reveal:nth-child(3) { transition-delay: 120ms; }
html.js .adds .reveal:nth-child(4) { transition-delay: 180ms; }
html.js .adds .reveal:nth-child(5) { transition-delay: 240ms; }

@media (prefers-reduced-motion: reduce) {
  html.js .reveal { transition-delay: 0s !important; }
  .nav__logo:hover .nav__mark, .hero__actions .btn--solid, .qa[open] p { animation: none; }
  .nav__logo:hover .nav__mark, .foot__brand:hover .nav__mark,
  .spec:hover, .spec:hover dt .ico, .run:hover, .run:hover .run__num,
  .case:hover .case__media img, .add:hover,
  .btn:hover .btn__arrow { transform: none; }
}


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

/* 다크네온 — 글자 자체가 발광한다. */
.nav__menu a::after, .foot__nav a::after { display: none !important; }
.nav__menu a, .foot__nav a:hover { text-shadow: 0 0 14px currentColor, 0 0 4px currentColor; }
.nav__logo:hover .nav__mark, .nav__logo:focus-visible .nav__mark, .foot__brand:hover .nav__mark, .spec:hover, .run:hover { transform: none; }
.nav__logo:hover .nav__mark, .nav__logo:focus-visible .nav__mark, .foot__brand:hover .nav__mark, .spec:hover, .run:hover { box-shadow: 0 0 0 1px color-mix(in oklab, var(--brand) 55%, transparent),
                      0 0 26px color-mix(in oklab, var(--brand) 22%, transparent); }

/* webit-touch */
@media (max-width: 767px) {
  .nav__inner { flex-wrap: wrap; overflow: visible; }
  .hero__actions, .hero__acts { flex-wrap: wrap; }
}
html.tier-premium .pm-progress { box-shadow: 0 0 18px var(--brand); }
html.tier-premium .btn--solid { text-shadow: 0 0 18px color-mix(in oklab, var(--brand) 45%, transparent); }
