/* ==========================================================================
   Standin 랜딩 — 흰색·검정·로열블루 3색 (persona-web globals.css 와 같은 규칙)
   #4169E1 는 흰 배경에서 4.85:1 이라 본문·버튼 배경 모두 AA 를 통과한다.
   ========================================================================== */

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --blue: #4169e1;
  --blue-deep: #3355c4;
  --blue-soft: rgba(65, 105, 225, 0.1);
  --blue-line: rgba(65, 105, 225, 0.45);

  --ink: var(--black);
  --muted: rgba(10, 10, 10, 0.6);
  --line: rgba(10, 10, 10, 0.1);
  --line-strong: rgba(10, 10, 10, 0.18);
  --tint: rgba(10, 10, 10, 0.025);

  --font: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
    system-ui, "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;

  --wrap: 1200px;
  --pad: 24px;
  --r-card: 24px;
  --r-pill: 999px;
  --shadow: 0 18px 44px rgba(10, 10, 10, 0.08);
  --shadow-lg: 0 30px 70px rgba(10, 10, 10, 0.12);
  --hdr-h: 72px;

  --wash: radial-gradient(95% 70% at 50% -12%, rgba(65, 105, 225, 0.1), transparent 62%),
    radial-gradient(52% 46% at 92% -4%, rgba(65, 105, 225, 0.06), transparent 72%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--hdr-h) + 12px); }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { margin: 0; letter-spacing: -0.02em; line-height: 1.25; font-weight: 800; }
p { margin: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); }
.wrap--narrow { max-width: 840px; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
}

.lead { font-size: 17px; line-height: 1.7; color: var(--muted); }

/* --- Buttons -------------------------------------------------------------- */

.btn {
  display: inline-block;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: var(--white);
  padding: 13px 26px;
  border-radius: var(--r-pill);
  font: 700 15px/1 var(--font);
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn:hover { filter: brightness(1.08); }
.btn:active { transform: scale(0.985); }
.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--block { display: block; text-align: center; }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover { background: var(--tint); filter: none; }

.lnk { font-size: 15px; font-weight: 600; color: var(--muted); }
.lnk:hover { color: var(--ink); }

/* --- Header --------------------------------------------------------------- */

.hdr {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}
.hdr--pinned {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.hdr__in {
  height: var(--hdr-h);
  display: flex;
  align-items: center;
  gap: 32px;
}
.hdr__logo img { height: 26px; width: auto; }
.hdr__nav { display: flex; gap: 26px; margin-right: auto; }
.hdr__nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  padding: 6px 0;
}
.hdr__nav a:hover { color: var(--ink); }
.hdr__cta { display: flex; align-items: center; gap: 16px; }

.hdr__burger {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}
.hdr__burger span {
  display: block;
  width: 18px; height: 2px;
  margin: 3px auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease;
}
.hdr__burger.is-open span:first-child { transform: translateY(2.5px) rotate(45deg); }
.hdr__burger.is-open span:last-child { transform: translateY(-2.5px) rotate(-45deg); }

.m-nav {
  /* 데스크톱에선 항상 숨긴다 — [hidden] 만으로는 display:flex 에 밀린다. */
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px var(--pad) 20px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.m-nav a { padding: 12px 2px; font-weight: 600; }
.m-nav .btn { margin-top: 10px; }

/* --- Hero ----------------------------------------------------------------- */

.hero {
  padding: calc(var(--hdr-h) + 76px) 0 84px;
  background: var(--wash), var(--white);
}
.hero__in {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.hero h1 {
  margin: 18px 0 0;
  font-size: clamp(34px, 4.6vw, 56px);
}
.hero h1 em { font-style: normal; color: var(--blue); }
.hero .lead { margin-top: 22px; max-width: 30em; }
.hero__btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
/* 혜택 배너 — 히어로·요청 화면 공용 */
.promo-banner {
  display: block;
  margin: 22px 0 0;
  max-width: 560px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(65, 105, 225, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.promo-banner img { width: 100%; height: auto; }
a.promo-banner:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(65, 105, 225, 0.22); }
a.promo-banner:active { transform: translateY(0); }

/* 컨테이너 폭을 꽉 채우는 큰 배너 */
.promo-banner--wide { max-width: none; border-radius: 20px; }
.reqpage .promo-banner--wide { margin: 0 0 44px; }

/* 배너가 첫 줄 전체를 차지하고, 히어로 카피와 영상이 그 아래에 놓인다.
   모바일(1단)에서도 DOM 순서대로 배너가 가장 먼저 나온다. */
.hero .promo-banner--wide { grid-column: 1 / -1; grid-row: 1; margin: 0 0 8px; }
.hero__copy { grid-column: 1; grid-row: 2; }
.hero__art { grid-column: 2; grid-row: 2; }

.hero__note { margin-top: 18px; font-size: 14px; color: var(--muted); }
.promo-banner + .hero__note { margin-top: 14px; }

@media (prefers-reduced-motion: reduce) {
  .promo-banner { transition: none; }
  a.promo-banner:hover { transform: none; }
}

.hero__art { position: relative; margin: 0; }
.hero__photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 20% center;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}
.hero__video { background: #eee5dc; }
.lic-chip {
  position: absolute;
  left: -18px;
  bottom: -22px;
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 13px 18px 13px 14px;
  box-shadow: var(--shadow);
  max-width: 88%;
}
.lic-chip b { display: block; font-size: 14px; }
.lic-chip small {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.lic-chip__tick {
  display: grid;
  place-items: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  flex: none;
}

/* --- Trust strip ---------------------------------------------------------- */

.strip { border-block: 1px solid var(--line); background: var(--tint); }
.strip__in {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-block: 30px;
}
.strip__in b { display: block; font-size: 15px; }
.strip__in span { display: block; margin-top: 4px; font-size: 14px; color: var(--muted); }

/* --- Sections ------------------------------------------------------------- */

.sec { padding: 104px 0; }
.sec--tint { background: var(--tint); border-block: 1px solid var(--line); }
.sec__head { max-width: 660px; margin-bottom: 56px; }
.sec__head h2 { margin: 14px 0 0; font-size: clamp(28px, 3.4vw, 42px); }
.sec__head .lead { margin-top: 16px; }

/* Use-case cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.card__art { aspect-ratio: 4 / 3; overflow: hidden; background: var(--tint); }
.card__art img { width: 100%; height: 100%; object-fit: cover; }
.card__art--pad { position: relative; background: var(--white); }
.card__art--pad img { object-fit: contain; padding: 6%; }
.card__art--pad::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      var(--white) 0%, rgba(255, 255, 255, 0.94) 4%, transparent 18%,
      transparent 82%, rgba(255, 255, 255, 0.94) 96%, var(--white) 100%),
    linear-gradient(180deg,
      var(--white) 0%, rgba(255, 255, 255, 0.94) 4%, transparent 18%,
      transparent 82%, rgba(255, 255, 255, 0.94) 96%, var(--white) 100%);
}
.card h3 { margin: 24px 26px 0; font-size: 20px; }
.card p { margin: 10px 26px 28px; font-size: 15px; color: var(--muted); line-height: 1.65; }

/* Steps */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 96px; }
.step {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 56px;
  align-items: center;
}
.step:nth-child(even) { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
.step:nth-child(even) .step__txt { order: 2; }

.step__no {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}
.step__no span {
  display: inline-grid;
  place-items: center;
  width: 27px; height: 27px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue-deep);
  font-size: 12px;
}
.step__txt h3 { margin: 16px 0 0; font-size: clamp(22px, 2.4vw, 30px); }
.step__txt p { margin-top: 14px; font-size: 16px; line-height: 1.7; color: var(--muted); }

.step__shot img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  background: var(--white);
}

/* Verify */
.verify__in {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
  gap: 64px;
  align-items: center;
}
.verify__txt h2 { margin: 14px 0 0; font-size: clamp(28px, 3.4vw, 42px); }
.verify__txt .lead { margin-top: 18px; }
.ticks { list-style: none; margin: 26px 0 30px; padding: 0; display: grid; gap: 12px; }
.ticks li {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  color: var(--muted);
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--blue-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234169E1' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12.5 9.5 18 20 6.5'/%3E%3C/svg%3E") center / 11px no-repeat;
}
.verify__shot > .verify__screen {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
}

/* For models */
.model__in {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.model__art img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
}
.model__txt h2 { margin: 14px 0 0; font-size: clamp(28px, 3.4vw, 42px); }
.model__txt .lead { margin-top: 18px; }
.mini {
  list-style: none;
  margin: 28px 0 30px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  counter-reset: mini;
}
.mini li {
  counter-increment: mini;
  border-top: 2px solid var(--blue-line);
  padding-top: 12px;
}
.mini li::before {
  content: "0" counter(mini);
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--blue);
  margin-bottom: 6px;
}
.mini b { display: block; font-size: 15px; }
.mini span { display: block; margin-top: 3px; font-size: 14px; color: var(--muted); }

/* FAQ */
.faq { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 44px 24px 0;
  font-size: 18px;
  font-weight: 700;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 8px; top: 50%;
  width: 12px; height: 12px;
  margin-top: -6px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq p {
  padding: 0 40px 26px 0;
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
}
.faq p b { color: var(--ink); }

/* CTA */
.cta {
  padding: 110px 0;
  background: var(--wash), var(--white);
  border-top: 1px solid var(--line);
  text-align: center;
}
.cta__mark { width: 46px; margin: 0 auto 22px; }
.cta h2 { font-size: clamp(28px, 3.8vw, 46px); }
.cta p { margin-top: 18px; font-size: 17px; color: var(--muted); }
.cta__btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

/* Footer */
.ftr { border-top: 1px solid var(--line); padding: 64px 0 48px; }
.ftr__in { display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.ftr__logo { height: 24px; width: auto; }
.ftr__tag { margin-top: 10px; font-size: 14px; color: var(--muted); letter-spacing: 0.02em; }
.ftr__meta { margin-top: 22px; font-size: 14px; line-height: 1.95; color: var(--muted); }
.ftr__notice { margin-top: 16px; max-width: 460px; font-size: 13px; line-height: 1.7; color: var(--muted); }
.ftr__copy { margin-top: 20px; font-size: 13px; color: var(--muted); }
.ftr__links { display: flex; gap: 56px; }
.ftr__links div { display: grid; gap: 10px; align-content: start; }
.ftr__links b { font-size: 14px; margin-bottom: 4px; }
.ftr__links a { font-size: 14px; color: var(--muted); }
.ftr__links a:hover { color: var(--ink); }

/* --- Motion --------------------------------------------------------------- */

.rise { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.rise.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rise { opacity: 1; transform: none; transition: none; }
}

/* --- Responsive ----------------------------------------------------------- */

@media (max-width: 1000px) {
  .hero__in,
  .verify__in,
  .model__in { grid-template-columns: 1fr; gap: 44px; }
  /* 1단으로 접히면 명시적 배치를 풀어 DOM 순서(배너 → 카피 → 영상)를 따른다 */
  .hero__copy,
  .hero__art,
  .hero .promo-banner--wide { grid-column: auto; grid-row: auto; }
  .hero .promo-banner--wide { margin: 0; }
  .model__art { order: 2; max-width: 420px; }
  .step,
  .step:nth-child(even) { grid-template-columns: 1fr; gap: 28px; }
  .step:nth-child(even) .step__txt { order: 0; }
  .cards { grid-template-columns: 1fr; max-width: 460px; }
  .strip__in { grid-template-columns: repeat(2, 1fr); gap: 20px 24px; }
}

@media (max-width: 860px) {
  .hdr__nav, .hdr__cta { display: none; }
  .hdr__burger { display: block; }
  .m-nav:not([hidden]) { display: flex; }
  .hdr { background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(14px); }
}

@media (max-width: 720px) {
  :root { --pad: 20px; }
  .hero { padding: calc(var(--hdr-h) + 44px) 0 64px; }
  .sec { padding: 72px 0; }
  .sec__head { margin-bottom: 40px; }
  .steps { gap: 64px; }
  .lic-chip { left: 0; bottom: -16px; padding: 11px 14px; }
  .mini { grid-template-columns: 1fr; }
  .cta { padding: 80px 0; }
  .ftr__links { gap: 36px; }
}

/* ========================================================================== 
   Motion — 사진은 켄번스, 광고는 장면 전환, UI는 자동 데모처럼 움직인다.
   서비스 데모는 CSS로 구성하며 prefers-reduced-motion에서 멈춘다.
   ========================================================================== */

/* --- 켄번스 프레임 -------------------------------------------------------- */
.shot-frame { overflow: hidden; border-radius: 28px; box-shadow: var(--shadow-lg); }
.shot-frame--hero { border-radius: 28px; }
.shot-frame--model { border-radius: 26px; }
/* 프레임이 그림자를 맡으므로 안쪽 이미지에선 뺀다 */
.shot-frame .hero__photo { border-radius: 0; box-shadow: none; }
.shot-frame img { border-radius: 0; box-shadow: none; }
.model__art .shot-frame img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }

.kb {
  will-change: transform;
  transform-origin: 50% 42%;
  animation: kb 26s ease-in-out infinite alternate;
}
.kb--slow { animation-duration: 34s; transform-origin: 46% 46%; }
.kb--fast { animation-duration: 21s; transform-origin: 54% 38%; }

@keyframes kb {
  from { transform: scale(1.015) translate3d(0, 0, 0); }
  to   { transform: scale(1.085) translate3d(-1.4%, -1.2%, 0); }
}

/* --- 영상 광고 프리뷰 — 실제 MP4를 무음 반복 재생한다 ---------------------- */
.card__art--video {
  position: relative;
  isolation: isolate;
  background: #17191d;
}
.ad-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #17191d;
}
.card__art--video::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 38%, transparent 68%, rgba(0, 0, 0, 0.35));
}
.ad-status {
  position: absolute;
  z-index: 3;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.48);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}
.ad-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff4d4d;
  box-shadow: 0 0 0 4px rgba(255, 77, 77, 0.18);
}

/* --- 서비스 화면 — 자동 탐색과 장면 전환이 있는 데모 프레임 --------------- */
.step__shot,
.verify__shot {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}
.step__shot { border-radius: 18px; }
.verify__shot {
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
}
.step__shot img,
.verify__shot > .verify__screen {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
/* 공개 검증 이미지는 텍스트 옆에 고정하고, 우하단에 인증 인장을 찍는다. */
.verify__shot > .verify__screen {
  display: block;
  width: 100%;
  height: auto;
  transform: none;
}
.verify__seal {
  position: absolute;
  z-index: 6;
  right: clamp(14px, 4%, 24px);
  bottom: clamp(14px, 4%, 24px);
  width: clamp(94px, 27%, 142px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 14px 18px rgba(20, 54, 150, 0.25));
  pointer-events: none;
}
.verify__seal-base,
.verify__seal-core,
.verify__seal-symbol { grid-area: 1 / 1; }
.verify__seal-base {
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.verify__seal-core {
  z-index: 2;
  width: 55%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 30%, #477aff 0%, #2f64f4 50%, #1748d9 100%);
  box-shadow:
    inset 0 2px 3px rgba(255, 255, 255, 0.42),
    inset 0 -7px 10px rgba(8, 47, 165, 0.28);
}
.verify__seal-symbol {
  z-index: 3;
  width: 45%;
  height: 45%;
  object-fit: contain;
  filter:
    brightness(1.2)
    saturate(1.12)
    drop-shadow(0 6px 4px rgba(5, 43, 157, 0.38))
    drop-shadow(0 -1px 1px rgba(255, 255, 255, 0.48));
}

.step.in .step__shot:not(.step__shot--catalog):not(.step__shot--handoff) img {
  animation: demoPan 12s ease-in-out 0.5s infinite alternate;
}
@keyframes demoPan {
  from { transform: scale(1.005) translate3d(0, 0, 0); }
  to { transform: scale(1.055) translate3d(-1.1%, -1.8%, 0); }
}

/* 카탈로그 → 스크롤 → 모델 클릭 → 상세 화면 이동 */
.step__shot--catalog {
  aspect-ratio: 1.38 / 1;
  background: #f7f8fd;
}
.step__shot--catalog .catalog-scene,
.step__shot--catalog .detail-scene {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: auto;
  max-width: none;
  transform-origin: center top;
}
.step__shot--catalog .catalog-scene { z-index: 1; }
.step__shot--catalog .detail-scene { z-index: 2; opacity: 0; }
.step.in .step__shot--catalog .catalog-scene {
  animation: catalogJourney 6s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}
.step.in .step__shot--catalog .detail-scene {
  animation: detailJourney 6s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}
@keyframes catalogJourney {
  0%, 13% { opacity: 1; transform: scale(1.015) translate3d(0, 0, 0); }
  35%, 45% { opacity: 1; transform: scale(1.09) translate3d(0, -8.2%, 0); }
  50%, 91% { opacity: 0; transform: scale(1.12) translate3d(0, -8.8%, 0); }
  96% { opacity: 0; transform: scale(1.015) translate3d(0, 0, 0); }
  100% { opacity: 1; transform: scale(1.015) translate3d(0, 0, 0); }
}
@keyframes detailJourney {
  0%, 46% { opacity: 0; transform: translate3d(0, 0, 0) scale(1.005); }
  52%, 64% { opacity: 1; transform: translate3d(0, 0, 0) scale(1.005); }
  86% { opacity: 1; transform: translate3d(0, -17.4%, 0) scale(1.005); }
  92%, 100% { opacity: 0; transform: translate3d(0, -18%, 0) scale(1.005); }
}
.demo-cursor {
  position: absolute;
  z-index: 9;
  left: 82%;
  top: 18%;
  width: 27px;
  height: 33px;
  opacity: 0;
  filter: drop-shadow(0 3px 5px rgba(10, 10, 10, 0.28));
  will-change: left, top, opacity, transform;
}
.demo-cursor svg { width: 100%; height: 100%; display: block; }
.step.in .step__shot--catalog .demo-cursor {
  animation: cursorJourney 6s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}
@keyframes cursorJourney {
  0%, 12% { left: 82%; top: 18%; opacity: 0; transform: scale(1); }
  16% { left: 82%; top: 18%; opacity: 1; transform: scale(1); }
  34% { left: 18%; top: 82%; opacity: 1; transform: scale(1); }
  41% { left: 18%; top: 82%; opacity: 1; transform: scale(1); }
  44% { left: 18%; top: 82%; opacity: 1; transform: scale(0.82); }
  47% { left: 18%; top: 82%; opacity: 1; transform: scale(1); }
  51%, 100% { left: 18%; top: 82%; opacity: 0; transform: scale(1); }
}
.demo-click {
  position: absolute;
  z-index: 8;
  left: calc(18% - 10px);
  top: calc(82% - 10px);
  width: 42px;
  height: 42px;
  border: 3px solid var(--blue);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.25);
  will-change: opacity, transform;
}
.step.in .step__shot--catalog .demo-click {
  animation: cursorClick 6s ease-out infinite;
}
@keyframes cursorClick {
  0%, 42% { opacity: 0; transform: scale(0.25); }
  44% { opacity: 0.75; transform: scale(0.4); }
  49% { opacity: 0; transform: scale(1.7); }
  50%, 100% { opacity: 0; transform: scale(1.7); }
}

/* 조건 합의 — 제작자와 모델의 메시지가 번갈아 나타나는 대화 데모 */
.step__shot--chat {
  aspect-ratio: 1.59 / 1;
  background: #f7f8fc;
}
.chat-head {
  height: 64px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 190px 10px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
}
.chat-avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}
.chat-head b { display: block; font-size: 13px; line-height: 1.2; }
.chat-head small {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1;
}
.chat-head small i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #28a66a;
}
.chat-stage {
  height: calc(100% - 64px);
  overflow: hidden;
  padding: 14px 16px 18px;
}
.chat-track {
  display: flex;
  flex-direction: column;
  gap: 10px;
  will-change: transform;
}
.step.in .chat-track { animation: chatTrackJourney 8s ease-in-out infinite; }
@keyframes chatTrackJourney {
  0%, 38% { transform: translateY(0); }
  65%, 90% { transform: translateY(-40%); }
  96%, 100% { transform: translateY(0); }
}
.chat-row {
  width: fit-content;
  max-width: 78%;
  padding: 10px 13px 11px;
  border: 1px solid var(--line);
  border-radius: 16px 16px 16px 5px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(10, 10, 10, 0.045);
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  will-change: opacity, transform;
}
.chat-row--creator { align-self: flex-start; background: #efeff1; border-color: transparent; }
.chat-row--terms {
  align-self: flex-start;
  min-width: 58%;
  border-color: rgba(65, 105, 225, 0.3);
  background: var(--white);
}
.chat-row--terms p {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}
.chat-row--terms p b { font-size: 15px; }
.chat-row--terms p small { color: var(--muted); font-size: 10px; }
.chat-row--model {
  align-self: flex-end;
  border-color: rgba(65, 105, 225, 0.35);
  border-radius: 16px 16px 5px 16px;
}
.chat-who {
  display: block;
  margin-bottom: 4px;
  color: var(--blue-deep);
  font-size: 10px;
  font-weight: 800;
}
.chat-row p { font-size: 12px; line-height: 1.45; color: var(--ink); }
.chat-row--approved {
  align-self: flex-end;
  min-width: 58%;
  border-color: var(--blue-line);
  border-radius: 16px 16px 5px 16px;
  background: #f2f5ff;
}
.chat-row--approved b {
  display: inline-block;
  margin-top: 7px;
  color: var(--blue-deep);
  font-size: 11px;
}
.step.in .chat-row { animation: chatMessageOne 8s cubic-bezier(0.2, 0.8, 0.2, 1) infinite; }
.step.in .chat-row--2 { animation-name: chatMessageTwo; }
.step.in .chat-row--3 { animation-name: chatMessageThree; }
.step.in .chat-row--4 { animation-name: chatMessageFour; }
.step.in .chat-row--5 { animation-name: chatMessageFive; }
@keyframes chatMessageOne {
  0%, 3% { opacity: 0; transform: translateY(10px) scale(0.98); }
  7%, 91% { opacity: 1; transform: none; }
  96%, 100% { opacity: 0; transform: none; }
}
@keyframes chatMessageTwo {
  0%, 17% { opacity: 0; transform: translateY(10px) scale(0.98); }
  21%, 91% { opacity: 1; transform: none; }
  96%, 100% { opacity: 0; transform: none; }
}
@keyframes chatMessageThree {
  0%, 32% { opacity: 0; transform: translateY(10px) scale(0.98); }
  36%, 91% { opacity: 1; transform: none; }
  96%, 100% { opacity: 0; transform: none; }
}
@keyframes chatMessageFour {
  0%, 47% { opacity: 0; transform: translateY(10px) scale(0.98); }
  51%, 91% { opacity: 1; transform: none; }
  96%, 100% { opacity: 0; transform: none; }
}
@keyframes chatMessageFive {
  0%, 62% { opacity: 0; transform: translateY(10px) scale(0.98); }
  66%, 91% { opacity: 1; transform: none; }
  96%, 100% { opacity: 0; transform: none; }
}

@media (max-width: 720px) {
  .chat-head { height: 54px; padding: 8px 150px 8px 12px; }
  .chat-avatar { width: 32px; height: 32px; }
  .chat-stage { height: calc(100% - 54px); padding: 10px 11px 14px; }
  .chat-track { gap: 7px; }
  .chat-row { max-width: 84%; padding: 8px 10px; }
  .chat-row p { font-size: 10px; }
  .chat-row--approved { min-width: 68%; }
}

/* 라이선스 발급 — 모델에게서 제작사로 증서가 전달되는 모션 그래픽 */
.step__shot--handoff {
  aspect-ratio: 1.59 / 1;
  background:
    radial-gradient(circle at 15% 48%, rgba(65, 105, 225, 0.13), transparent 28%),
    radial-gradient(circle at 85% 48%, rgba(65, 105, 225, 0.08), transparent 28%),
    #f8faff;
}
.handoff-scene { position: relative; width: 100%; height: 100%; overflow: hidden; }
.handoff-party {
  position: absolute;
  z-index: 2;
  top: 47%;
  display: grid;
  justify-items: center;
  transform: translateY(-50%);
}
.handoff-party--model { left: 16%; }
.handoff-party--company { right: 14%; }
.handoff-avatar {
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 16px 18px rgba(29, 55, 130, 0.17));
}
.handoff-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  pointer-events: none;
}
.handoff-party--company .handoff-avatar { width: 142px; height: 128px; }
.handoff-party b { margin-top: 9px; font-size: 13px; }
.handoff-party small { margin-top: 2px; color: var(--muted); font-size: 10px; }
.handoff-route {
  position: absolute;
  z-index: 1;
  left: 37%;
  right: 37%;
  top: 46%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.handoff-route span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(65, 105, 225, 0.28);
}
.step.in .handoff-route span { animation: routeGlow 1.15s ease-in-out infinite alternate; }
.step.in .handoff-route span:nth-child(2) { animation-delay: 0.12s; }
.step.in .handoff-route span:nth-child(3) { animation-delay: 0.24s; }
.step.in .handoff-route span:nth-child(4) { animation-delay: 0.36s; }
.step.in .handoff-route span:nth-child(5) { animation-delay: 0.48s; }
@keyframes routeGlow {
  from { opacity: 0.35; transform: scale(0.75); }
  to { opacity: 1; transform: scale(1.3); background: var(--blue); }
}
.license-token {
  position: absolute;
  z-index: 4;
  left: 30%;
  top: 47%;
  width: clamp(96px, 17vw, 150px);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.72) rotate(-7deg);
  filter: drop-shadow(0 18px 20px rgba(29, 55, 130, 0.2));
  will-change: left, opacity, transform;
}
.license-token img {
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  pointer-events: none;
}
.license-token > span {
  position: absolute;
  right: 5%;
  bottom: 7%;
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font: 800 9px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.08em;
}
.step.in .license-token { animation: licenseHandoff 6s cubic-bezier(0.45, 0, 0.2, 1) infinite; }
@keyframes licenseHandoff {
  0%, 10% { left: 30%; opacity: 0; transform: translate(-50%, -50%) scale(0.72) rotate(-7deg); }
  18% { left: 31%; opacity: 1; transform: translate(-50%, -50%) scale(0.84) rotate(-4deg); }
  52% { left: 50%; opacity: 1; transform: translate(-50%, -58%) scale(1.02) rotate(2deg); }
  77%, 90% { left: 69%; opacity: 1; transform: translate(-50%, -50%) scale(0.82) rotate(4deg); }
  96%, 100% { left: 69%; opacity: 0; transform: translate(-50%, -50%) scale(0.72) rotate(4deg); }
}
.step.in .handoff-party--model { animation: senderPulse 6s ease-in-out infinite; }
.step.in .handoff-party--company { animation: receiverPulse 6s ease-in-out infinite; }
@keyframes senderPulse {
  0%, 8%, 25%, 100% { transform: translateY(-50%) scale(1); }
  15% { transform: translateY(-50%) scale(1.07); }
}
@keyframes receiverPulse {
  0%, 70%, 92%, 100% { transform: translateY(-50%) scale(1); }
  80% { transform: translateY(-50%) scale(1.08); }
}
.handoff-complete {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 8%;
  display: grid;
  grid-template-columns: 28px auto;
  column-gap: 9px;
  align-items: center;
  min-width: 230px;
  padding: 10px 16px;
  border: 1px solid rgba(65, 105, 225, 0.25);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translate(-50%, 10px) scale(0.96);
}
.handoff-complete > span {
  grid-row: 1 / 3;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}
.handoff-complete b { font-size: 12px; line-height: 1.2; }
.handoff-complete small { color: var(--muted); font-size: 9px; }
.step.in .handoff-complete { animation: handoffComplete 6s ease-in-out infinite; }
@keyframes handoffComplete {
  0%, 73% { opacity: 0; transform: translate(-50%, 10px) scale(0.96); }
  80%, 92% { opacity: 1; transform: translate(-50%, 0) scale(1); }
  98%, 100% { opacity: 0; transform: translate(-50%, 0) scale(1); }
}

@media (max-width: 720px) {
  .handoff-avatar { width: 82px; height: 82px; }
  .handoff-party--company .handoff-avatar { width: 96px; height: 88px; }
  .handoff-party--model { left: 12%; }
  .handoff-party--company { right: 10%; }
  .handoff-route { left: 38%; right: 38%; }
  .handoff-complete { min-width: 195px; padding: 8px 12px; }
}

.verify__shot > .verify__screen {
  width: 100%;
  height: auto;
}

/* 라이선스 3D 일러스트 — 확대 대신 살짝 떠 있게 */
.float { animation: float 7s ease-in-out infinite alternate; }
@keyframes float {
  from { transform: translateY(-5px) rotate(-0.4deg); }
  to   { transform: translateY(5px) rotate(0.4deg); }
}

/* --- 히어로 라이선스 칩 — 사진보다 반 박자 늦게 붙는다 -------------------- */
.lic-chip {
  opacity: 0;
  transform: translateY(16px);
  animation: chipIn 0.75s cubic-bezier(0.2, 0.7, 0.2, 1) 0.5s forwards;
}
@keyframes chipIn { to { opacity: 1; transform: none; } }

.lic-chip__tick { position: relative; }
.lic-chip__tick path {
  stroke-dasharray: 26;
  stroke-dashoffset: 26;
  animation: draw 0.5s ease 1s forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }

/* 검증됨 신호 — 아주 옅은 파문 한 겹 */
.lic-chip__tick::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  opacity: 0;
  animation: ping 3.4s ease-out 1.4s infinite;
}
@keyframes ping {
  0%   { transform: scale(0.72); opacity: 0.45; }
  70%  { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}

/* --- 카드 · 스크린샷 호버 ------------------------------------------------- */
/* .rise 의 transition 을 덮어쓰므로 opacity 도 같이 들고 있어야 등장이 부드럽다 */
.card { transition: opacity 0.6s ease, transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.45s ease; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.step__shot img,
.verify__shot > .verify__screen {
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.5s ease;
}
.step__shot img:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }

/* --- 등장 스태거 ---------------------------------------------------------- */
/* 카드 3장이 한꺼번에 뜨지 않게 한 장씩 */
.cards .card:nth-child(2) { transition-delay: 0.09s; }
.cards .card:nth-child(3) { transition-delay: 0.18s; }
.strip__in { transition-delay: 0.05s; }

/* 스크린샷은 본문 글보다 한 박자 늦게, 살짝 아래에서 */
.step .step__shot img {
  opacity: 0;
  transform: translateY(24px) scale(0.99);
  transition: opacity 0.7s ease 0.15s, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) 0.15s;
}
.step.in .step__shot img { opacity: 1; transform: none; }

/* 단계 번호 배지 — 등장할 때 톡 */
.step .step__no span { transform: scale(0.6); opacity: 0; transition: transform 0.5s cubic-bezier(0.2, 1.5, 0.4, 1) 0.1s, opacity 0.4s ease 0.1s; }
.step.in .step__no span { transform: none; opacity: 1; }

/* CTA 심볼 — 아주 느린 상하 */
.cta__mark { animation: float 6s ease-in-out infinite alternate; }

@media (prefers-reduced-motion: reduce) {
  .kb, .float, .lic-chip, .lic-chip__tick path, .lic-chip__tick::after, .cta__mark,
  .step.in .step__shot img,
  .demo-cursor, .demo-click, .chat-track, .chat-row,
  .handoff-route span, .license-token, .handoff-party, .handoff-complete { animation: none !important; }
  .lic-chip { opacity: 1; transform: none; }
  .lic-chip__tick path { stroke-dashoffset: 0; }
  .step .step__shot img,
  .step .step__no span { opacity: 1; transform: none; transition: none; }
  .card, .step__shot img, .verify__shot > .verify__screen { transition: none; }
  .chat-stage { overflow: auto; }
  .chat-row { opacity: 1; transform: none; }
  .step__shot--catalog .catalog-scene { opacity: 1 !important; transform: none; }
  .step__shot--catalog .detail-scene,
  .step__shot--catalog .demo-cursor,
  .step__shot--catalog .demo-click { opacity: 0 !important; }
  .license-token { left: 64%; opacity: 1; transform: translate(-50%, -50%) scale(0.82); }
  .handoff-complete { opacity: 1; transform: translate(-50%, 0) scale(1); }
}

/* --- 등록 신청 모달 --------------------------------------------------------- */

.apply {
  border: 0;
  padding: 0;
  width: min(460px, calc(100vw - 32px));
  max-height: min(720px, calc(100dvh - 24px));
  overflow-y: auto;
  overscroll-behavior: contain;
  border-radius: var(--r-card);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}
.apply::backdrop { background: rgba(10, 10, 10, 0.55); }
/* 모달이 열려 있는 동안 뒤 페이지가 스크롤되지 않게 잠근다 */
body:has(.apply[open]) { overflow: hidden; }
.apply__card { position: relative; padding: 36px 32px 32px; }

.apply__x {
  position: absolute;
  top: 16px; right: 16px;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 0; border-radius: 50%;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}
.apply__x:hover { background: var(--tint); color: var(--ink); }

.apply__title { font-size: 24px; }
.apply__sub { margin-top: 8px; font-size: 15px; line-height: 1.6; color: var(--muted); }

.apply__roles { display: flex; gap: 8px; margin-top: 22px; }
.role-pill { flex: 1; position: relative; cursor: pointer; }
.role-pill input { position: absolute; opacity: 0; pointer-events: none; }
.role-pill span {
  display: block;
  padding: 11px 0;
  text-align: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 700;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.role-pill:hover span { background: var(--tint); }
.role-pill input:checked + span { background: var(--blue); border-color: var(--blue); color: var(--white); }
.role-pill input:focus-visible + span { outline: 2px solid var(--blue); outline-offset: 2px; }

.field { display: block; margin-top: 16px; }
.field > span { display: block; margin-bottom: 7px; font-size: 13px; font-weight: 600; color: var(--muted); }
.field b { color: var(--blue); }
.field input {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  font: 500 16px/1.4 var(--font);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input::placeholder { color: rgba(10, 10, 10, 0.32); }
.field input:focus { outline: 0; border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-soft); }

.field textarea {
  width: 100%;
  min-height: 140px;
  padding: 13px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  font: 500 16px/1.6 var(--font);
  resize: vertical;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field textarea:focus { outline: 0; border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-soft); }

.field input[type="file"] { padding: 10px 12px; font: 500 14px/1.5 var(--font); cursor: pointer; }
.field input[type="file"]::file-selector-button {
  margin-right: 10px;
  padding: 7px 14px;
  border: 0;
  border-radius: 9px;
  background: var(--tint);
  color: var(--ink);
  font: 600 13px/1 var(--font);
  cursor: pointer;
}

.field__hint { display: block; margin-top: 7px; font-size: 12.5px; line-height: 1.5; color: var(--muted); }

/* 광고 요청 모달 — 접수/취소 버튼 줄 */
.req__actions { display: flex; align-items: center; gap: 20px; margin-top: 24px; }
.lnk--cancel {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.lnk--cancel:hover { color: var(--muted); }

/* 허니팟 — 화면 밖으로 치운다 */
.apply__hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.apply__err { margin-top: 14px; font-size: 13.5px; font-weight: 600; color: var(--blue); }
.apply__err a { text-decoration: underline; }

.apply__submit { margin-top: 22px; width: 100%; }
.apply__submit:disabled { opacity: 0.6; cursor: default; }

.apply__done { text-align: center; padding: 10px 0 2px; }
.apply__check {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
}
.apply__done h3 { font-size: 21px; }
.apply__done p { margin-top: 8px; font-size: 15px; color: var(--muted); }
.apply__done .btn { margin-top: 24px; width: 100%; }

/* --- 컨텐츠 제작 요청 화면 (request.html) ---------------------------------- */

/* 폼이 짧아도 푸터가 화면 아래에 붙게 한다 */
body:has(.reqpage) { display: flex; flex-direction: column; min-height: 100dvh; }
body:has(.reqpage) .ftr { margin-top: auto; }

.reqpage { padding: calc(var(--hdr-h) + 56px) var(--pad) 96px; }
.reqpage__wrap { width: 100%; max-width: 980px; margin: 0 auto; }

.reqpage__head { margin-bottom: 56px; }
.reqpage__title { margin-top: 10px; font-size: clamp(30px, 4vw, 42px); }

/* 폼은 좁은 단으로 — 한 항목씩 읽히게 */
.reqpage__col { width: 100%; max-width: 512px; margin: 0 auto; }

.reqpage__sub { font-size: 15px; line-height: 1.7; color: var(--muted); margin-bottom: 26px; }

.reqpage__done { text-align: center; padding: 40px 0; }
.reqpage__done h2 { font-size: 22px; }
.reqpage__done p { margin-top: 10px; font-size: 15px; color: var(--muted); }
.reqpage__done .btn { margin-top: 26px; }

@media (max-width: 640px) {
  .reqpage { padding-top: calc(var(--hdr-h) + 36px); padding-bottom: 64px; }
  .reqpage__head { margin-bottom: 32px; }
}

/* 화면 전환 — 지원 브라우저에서 페이지 간 페이드 */
@view-transition { navigation: auto; }
@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root), ::view-transition-new(root) { animation: none; }
}

/* For creators — 모델 섹션의 좌우 반전 변형 */
@media (min-width: 1001px) {
  .model--flip .model__in { grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr); }
  .model--flip .model__art { order: 2; }
}
