/* =====================================================================
   소울리 — soulie.xerost.ai

   # 왜 xerost.css 를 쓰지 않나

   관문(xerost.ai)은 어두운 남색 계열이고, 소울리는 소개서가 확정한
   로즈 계열이다. 브랜드가 다르므로 토큰을 공유하면 둘 다 망가진다.
   두 파일은 같은 페이지에 함께 로드되지 않는다 — 호스트마다 하나씩이다.

   # 색은 전부 실제 자산에서 뽑았다 (짐작한 색이 없다)

   본문 색은 소개서(pptx) 22장의 srgbClr 를 세어 가장 많이 쓰인 값이다.

     #15171E  191회   잉크 (본문·제목)
     #6F7382  176회   보조 텍스트
     #FDEEF3   82회   로즈 틴트
     #EF4B7C   74회   로즈 (브랜드 강조)
     #E4E6EC   68회   경계선
     #0F1117   17회   더 어두운 잉크

   강조 그라데이션은 **실제 배포된 홍보 컷**의 픽셀을 표본해서 얻었다.
   소개서 본문은 로즈 단색이지만 홍보 컷에는 파랑·자홍 강조가 이미 있다.

     h=210° (파랑)  452px + 277 + 220   -> "AI 놀이터" 타이틀, 진행 바
     h=300° (자홍)  192px               -> "스타일리스트가" 타이틀

   그래서 로즈 -> 자홍 -> 파랑 그라데이션은 새로 만든 것이 아니라 이미
   쓰이고 있는 배합이다.

   # 이 저장소에서 겪은 함정을 반영한 규칙

   - `[hidden]` 을 컴포넌트 display 가 이긴다 → !important 로 눌러둔다
   - 장식용 절대배치가 문서 폭을 넓힌다 → .section 에 overflow: clip
   - 한글은 word-break: keep-all 이 없으면 단어 중간에서 잘린다
   - 미디어쿼리를 먼저 쓰고 같은 선택자를 뒤에 또 쓰면 뒤가 이긴다
   ===================================================================== */

:root {
  /* 배경 계층 */
  --bg:          #ffffff;
  --bg-soft:     #f7f8fb;
  --bg-ink:      #15171e;
  --bg-ink-deep: #0b0d13;
  --surface:     #ffffff;

  /* 선 */
  --line:        #e4e6ec;
  --line-soft:   #eef0f4;
  --line-ink:    rgba(255, 255, 255, 0.12);

  /* 텍스트 */
  --text:        #15171e;
  --text-dim:    #6f7382;
  --text-faint:  #a0a4b0;
  --text-on-ink:      #ffffff;
  --text-on-ink-dim:  #b8bcc8;

  /* 브랜드 — 로즈를 축으로 자홍·파랑까지 (홍보 컷 표본) */
  --rose:        #ef4b7c;
  --rose-deep:   #c93a66;
  --rose-soft:   #ff87ab;
  --magenta:     #c95ce0;
  --blue:        #5b9eff;
  --rose-tint:   #fdeef3;
  --rose-tint-2: #fde8ee;

  --grad:      linear-gradient(100deg, #ef4b7c 0%, #c95ce0 52%, #5b9eff 100%);
  --grad-soft: linear-gradient(100deg,
                 rgba(239, 75, 124, .14) 0%,
                 rgba(201, 92, 224, .14) 52%,
                 rgba(91, 158, 255, .14) 100%);

  /* 타이포 */
  --font-sans: "Pretendard Variable", Pretendard,
               -apple-system, BlinkMacSystemFont, system-ui,
               "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;

  /* 리듬 */
  --gutter:    clamp(20px, 5vw, 40px);
  --container: 1200px;
  --section-y: clamp(72px, 10vw, 140px);

  /* 형태 */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(21, 23, 30, .04),
               0 6px 20px rgba(21, 23, 30, .06);
  --shadow-md: 0 2px 6px rgba(21, 23, 30, .06),
               0 18px 44px rgba(21, 23, 30, .10);
  --shadow-lg: 0 4px 12px rgba(21, 23, 30, .08),
               0 32px 80px rgba(21, 23, 30, .16);
  --shadow-rose: 0 10px 30px rgba(239, 75, 124, .28);

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ── 기본 ────────────────────────────────────────────────────────── */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  /* 한글은 이게 없으면 제목이 단어 중간에서 잘린다. */
  word-break: keep-all;
  overflow-wrap: anywhere;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

h1, h2, h3, h4 { margin: 0; line-height: 1.28; font-weight: 700; }
p  { margin: 0; }
ul, ol, dl, dd { margin: 0; padding: 0; list-style: none; }

/* `hidden` 이 컴포넌트의 display 에 지지 않도록. (실측 함정) */
[hidden] { display: none !important; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--bg-ink); color: #fff;
  padding: .6rem 1rem; border-radius: var(--r-sm);
  font-size: .875rem; font-weight: 600; text-decoration: none;
  transition: top .18s var(--ease);
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── 레이아웃 ────────────────────────────────────────────────────── */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  position: relative;
  padding-block: var(--section-y);
  /* 장식 요소가 문서 폭을 넓혀 가로 스크롤을 만드는 것을 막는다. (실측) */
  overflow: clip;
}
.section--soft { background: var(--bg-soft); }
.section--tint { background: linear-gradient(180deg, #fff6f9, #fdeef3 60%, #fff6f9); }
.section--ink  { background: var(--bg-ink); color: var(--text-on-ink); }
.section--tight { padding-block: clamp(48px, 6vw, 84px); }

.section--ink .lead,
.section--ink .body-dim { color: var(--text-on-ink-dim); }

/* 섹션 뒤에 깔리는 광원. 절대배치라 부모의 overflow: clip 이 필수다. */
.aura {
  position: absolute; pointer-events: none; z-index: 0;
  border-radius: 50%;
  filter: blur(10px);
}
.aura--rose    { background: radial-gradient(closest-side, rgba(239, 75, 124, .20), transparent 72%); }
.aura--magenta { background: radial-gradient(closest-side, rgba(201, 92, 224, .18), transparent 72%); }
.aura--blue    { background: radial-gradient(closest-side, rgba(91, 158, 255, .18), transparent 72%); }
.section > .container { position: relative; z-index: 1; }

/* ── 타이포 ──────────────────────────────────────────────────────── */

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .75rem; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--rose-deep);
}
.eyebrow::before {
  content: ""; width: 22px; height: 3px; border-radius: 2px;
  background: var(--grad);
}
.section--ink .eyebrow,
.hero .eyebrow { color: var(--rose-soft); }

/* 좁은 화면에서는 자간을 줄여 두 줄로 끊기지 않게 한다. */
@media (max-width: 560px) {
  .eyebrow { font-size: .6875rem; letter-spacing: .1em; }
  .eyebrow::before { width: 16px; }
}

.h1 {
  font-size: clamp(2rem, 4.6vw, 3.375rem);
  letter-spacing: -.03em;
  font-weight: 800;
  /* 디스플레이 크기에서 행간을 1.0 이하로 주면 받침이 잘린다. */
  line-height: 1.14;
}
.h2 {
  font-size: clamp(1.5rem, 3.4vw, 2.5rem);
  letter-spacing: -.025em;
  font-weight: 800;
  margin-top: .5rem;
  line-height: 1.24;
}
.h3 { font-size: clamp(1.0625rem, 1.7vw, 1.25rem); letter-spacing: -.01em; }

/* 그라데이션 글자. 배경을 글자 모양으로 잘라 쓴다. */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  /* 잘라내기를 지원하지 않는 브라우저에서 글자가 사라지지 않도록 */
  -webkit-text-fill-color: transparent;
}
@supports not (background-clip: text) {
  .grad-text { color: var(--rose); -webkit-text-fill-color: currentColor; }
}

.lead {
  margin-top: 1.125rem;
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  color: var(--text-dim);
  max-width: 62ch;
}

.body-dim  { color: var(--text-dim); }
.note {
  margin-top: 1.75rem;
  font-size: .8125rem;
  line-height: 1.6;
  color: var(--text-faint);
}
.rose { color: var(--rose); }

.section__head { max-width: 78ch; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }

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

.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  font: inherit; font-weight: 700; font-size: .9375rem;
  text-decoration: none; cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease),
              background-color .2s var(--ease), border-color .2s var(--ease);
}
.btn svg { width: 16px; height: 16px; flex: none; transition: transform .2s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:hover svg { transform: translateX(3px); }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none; }

.btn--primary {
  background: var(--grad);
  background-size: 160% 100%;
  color: #fff;
  box-shadow: var(--shadow-rose);
}
.btn--primary:hover {
  background-position: 100% 0;
  box-shadow: 0 14px 38px rgba(239, 75, 124, .38);
}

.btn--ghost {
  background: transparent; color: var(--text);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--text-faint); background: var(--bg-soft); }

.btn--on-ink {
  background: rgba(255, 255, 255, .08); color: #fff;
  border-color: var(--line-ink);
  backdrop-filter: blur(8px);
}
.btn--on-ink:hover { background: rgba(255, 255, 255, .16); border-color: rgba(255,255,255,.3); }

.btn--sm { padding: .55rem 1.05rem; font-size: .875rem; }

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

.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(1.8) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.header__inner {
  display: flex; align-items: center; gap: 1rem;
  height: 68px;
}
.header__logo {
  display: inline-flex; align-items: center; gap: .6rem;
  text-decoration: none; font-weight: 800; letter-spacing: -.02em;
  font-size: 1.0625rem;
}
.header__logo img {
  width: 30px; height: 30px; border-radius: 9px;
  box-shadow: 0 4px 12px rgba(21, 23, 30, .22);
}

.nav { display: none; margin-left: auto; gap: 1.75rem; }
.nav a {
  position: relative;
  text-decoration: none; font-size: .9375rem; font-weight: 600;
  color: var(--text-dim);
  transition: color .18s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; border-radius: 2px; background: var(--grad);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav a:hover { color: var(--text); }
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }

.header__actions { margin-left: auto; display: flex; align-items: center; gap: .5rem; }

@media (min-width: 900px) {
  .nav { display: flex; }
  .header__actions { margin-left: 1.75rem; }
}

/* 기본은 숨김이고 좁은 화면에서만 보인다.
   반대로 쓰면(넓을 때 display:none) 아래의 display 선언이 나중에 와서
   미디어쿼리를 이긴다 — 실제로 1440px 에서 햄버거가 계속 보였다. */
.burger { display: none; }
@media (max-width: 899px) {
  .burger {
    display: inline-flex; flex-direction: column; justify-content: center;
  }
}
.burger {
  gap: 4px; width: 40px; height: 40px; padding: 0 9px;
  background: transparent; border: 1px solid var(--line);
  border-radius: var(--r-sm); cursor: pointer;
}
.burger span {
  display: block; height: 2px; background: var(--text); border-radius: 2px;
  transition: transform .2s var(--ease), opacity .2s var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  display: none;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  padding: .5rem var(--gutter) 1rem;
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: block; padding: .7rem 0;
  text-decoration: none; font-weight: 600;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-nav a:last-child { border-bottom: 0; color: var(--rose); font-weight: 800; }
@media (min-width: 900px) { .mobile-nav { display: none !important; } }

/* ── 히어로 ──────────────────────────────────────────────────────── */

.hero {
  position: relative;
  background: var(--bg-ink-deep);
  color: var(--text-on-ink);
  padding-block: clamp(64px, 9vw, 116px) clamp(0px, 2vw, 24px);
  overflow: clip;
  isolation: isolate;
}

/* 세 개의 광원이 천천히 움직인다. 절대배치이므로 부모가 overflow: clip 이다. */
.hero__aura {
  position: absolute; pointer-events: none; z-index: 0;
  border-radius: 50%;
}
.hero__aura--1 {
  width: 720px; height: 720px; right: -160px; top: -300px;
  background: radial-gradient(closest-side, rgba(239, 75, 124, .42), transparent 70%);
  animation: drift1 22s ease-in-out infinite alternate;
}
.hero__aura--2 {
  width: 620px; height: 620px; left: -220px; top: 40px;
  background: radial-gradient(closest-side, rgba(201, 92, 224, .30), transparent 70%);
  animation: drift2 26s ease-in-out infinite alternate;
}
.hero__aura--3 {
  width: 560px; height: 560px; right: 22%; bottom: -280px;
  background: radial-gradient(closest-side, rgba(91, 158, 255, .26), transparent 70%);
  animation: drift3 30s ease-in-out infinite alternate;
}
@keyframes drift1 { to { transform: translate3d(-70px, 50px, 0) scale(1.12); } }
@keyframes drift2 { to { transform: translate3d(60px, -40px, 0) scale(1.08); } }
@keyframes drift3 { to { transform: translate3d(-50px, -60px, 0) scale(1.14); } }

/* 아주 옅은 격자. 어두운 면이 밋밋해 보이지 않게 한다. */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(120% 90% at 30% 0%, #000 20%, transparent 75%);
}

.hero__grid {
  position: relative; z-index: 1;
  display: grid; gap: clamp(2.5rem, 5vw, 3.5rem);
  align-items: center;
}
@media (min-width: 1000px) {
  .hero__grid { grid-template-columns: 1.12fr .88fr; }
}

.hero__title { margin-top: 1.125rem; }
.hero__title span { display: block; }
.hero__title .lead-line {
  font-size: clamp(1.125rem, 2.2vw, 1.625rem);
  font-weight: 600;
  color: var(--text-on-ink-dim);
  letter-spacing: -.015em;
  margin-bottom: .5rem;
}
.hero__lead {
  margin-top: 1.375rem;
  font-size: clamp(1rem, 1.7vw, 1.1875rem);
  color: var(--text-on-ink-dim);
  max-width: 46ch;
}

.hero__badges {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-top: 1.875rem;
}
.hero__badges li {
  padding: .4rem .95rem;
  border: 1px solid var(--line-ink);
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(8px);
  font-size: .8125rem; font-weight: 700;
  color: #fff;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: .625rem; margin-top: 2.25rem; }

/* 히어로 오른쪽 — 실제 홍보 컷을 겹쳐 세운다 */
.hero__stack {
  position: relative;
  aspect-ratio: 4 / 3.1;
  max-width: 580px;
  margin-inline: auto;
  width: 100%;
}
.hero__stack figure {
  position: absolute; margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .6),
              0 0 0 1px rgba(255, 255, 255, .16);
}
.hero__stack img { width: 100%; height: 100%; object-fit: cover; }
/* 비율을 고정한다. 원본이 4:5 세로라 그대로 두면 카드가 지나치게 길어져
   가운데 카드가 양옆 카드를 덮는다(실측). */
/* 비율을 고정한다. 원본이 4:5 세로라 그대로 두면 카드가 지나치게 길어진다.

   겹침은 최소로 둔다. 이 이미지들은 위에 제목, 아래에 말풍선이 있는 완성된
   포스터라 서로 덮으면 무엇인지 알아볼 수 없다(실측: 가운데 카드가 양옆
   카드의 얼굴을 가렸다). 부채꼴로 펼쳐 세 장이 다 보이게 한다. */
.hero__stack figure { aspect-ratio: 4 / 5; }
.hero__stack figure:nth-child(1) {
  width: 34%; left: 0; top: 15%;
  transform: rotate(-9deg);
  animation: float1 9s ease-in-out infinite alternate;
}
.hero__stack figure:nth-child(2) {
  width: 35%; left: 32.5%; top: 0;
  z-index: 2;
  transform: rotate(0deg);
  animation: float2 11s ease-in-out infinite alternate;
}
.hero__stack figure:nth-child(3) {
  width: 34%; right: 0; top: 15%;
  transform: rotate(9deg);
  animation: float3 10s ease-in-out infinite alternate;
}
@keyframes float1 { to { transform: rotate(-9deg) translateY(-14px); } }
@keyframes float2 { to { transform: rotate(0deg) translateY(12px); } }
@keyframes float3 { to { transform: rotate(9deg) translateY(-10px); } }

@media (max-width: 999px) {
  .hero__stack { max-width: 420px; aspect-ratio: 4 / 3.1; }
}

/* 히어로 아래 숫자 띠 */
.hero__stats {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  background: var(--line-ink);
  border: 1px solid var(--line-ink);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.hero__stats > div {
  background: rgba(255, 255, 255, .03);
  backdrop-filter: blur(8px);
  padding: clamp(1.125rem, 2.4vw, 1.75rem) clamp(.75rem, 2vw, 1.5rem);
  text-align: center;
}
.hero__stats dt {
  font-size: clamp(1.5rem, 3.6vw, 2.375rem); font-weight: 800;
  letter-spacing: -.035em; line-height: 1.15;
}
.hero__stats dd {
  margin-top: .3rem; font-size: .8125rem; font-weight: 600;
  color: var(--text-on-ink-dim);
}

/* ── 카드 · 그리드 ───────────────────────────────────────────────── */

.grid { display: grid; gap: 1.25rem; }
.grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
@media (min-width: 720px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.375rem, 2.6vw, 1.875rem);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease),
              border-color .28s var(--ease);
}
/* 위쪽에 그라데이션 실선이 hover 시 그어진다. 카드 자체에 상시 색띠를
   두르면 화면이 어수선해지므로 상호작용에만 쓴다. */
.card::before {
  content: ""; position: absolute; left: 1.375rem; right: 1.375rem; top: -1px;
  height: 2px; border-radius: 2px; background: var(--grad);
  opacity: 0; transition: opacity .28s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.card:hover::before { opacity: 1; }

.card__title { font-size: 1.125rem; font-weight: 800; letter-spacing: -.015em; }
.card__body  { margin-top: .55rem; color: var(--text-dim); font-size: .9375rem; }

.section--soft .card,
.section--tint .card { background: #fff; }
.section--ink .card {
  background: rgba(255, 255, 255, .045);
  border-color: var(--line-ink);
  backdrop-filter: blur(10px);
}
.section--ink .card:hover {
  background: rgba(255, 255, 255, .075);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
}
.section--ink .card__body { color: var(--text-on-ink-dim); }

/* 번호 칩 — 이 페이지의 반복 모티프 */
.chip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; flex: none;
  border-radius: var(--r-pill);
  background: var(--grad); color: #fff;
  font-size: .875rem; font-weight: 800;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 6px 16px rgba(239, 75, 124, .3);
}

/* ── 히어로 아래: 아티스트가 얻는 것 ─────────────────────────────── */

.benefit-layout { display: grid; gap: 1.5rem; align-items: start; }
@media (min-width: 1000px) {
  .benefit-layout { grid-template-columns: 1.55fr 1fr; gap: 2.5rem; }
}

.ask {
  position: sticky; top: 92px;
  background: var(--bg-ink); color: var(--text-on-ink);
  border-radius: var(--r-xl);
  padding: clamp(1.625rem, 3vw, 2.25rem);
  overflow: clip;
  box-shadow: var(--shadow-lg);
}
.ask::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  width: 320px; height: 320px; right: -120px; top: -140px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(239, 75, 124, .45), transparent 70%);
}
.ask > * { position: relative; z-index: 1; }
.ask__label {
  font-size: .75rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--rose-soft);
}
.ask__figure {
  display: flex; align-items: baseline; gap: .2rem;
  margin-top: .875rem;
  font-size: clamp(3.25rem, 8vw, 4.5rem); font-weight: 800; letter-spacing: -.05em;
  line-height: 1.05;
}
.ask__figure span { font-size: 1.5rem; font-weight: 700; }
.ask__title { margin-top: .625rem; font-size: 1.125rem; font-weight: 800; }
.ask__body  { margin-top: .3rem; color: var(--text-on-ink-dim); font-size: .9375rem; }
.ask__note  {
  margin-top: 1.375rem; padding-top: 1.375rem;
  border-top: 1px solid var(--line-ink);
  color: var(--text-on-ink-dim); font-size: .875rem;
}
.ask__kicker { margin-top: .4rem; font-weight: 800; font-size: .9375rem; }
@media (max-width: 999px) { .ask { position: static; } }

/* ── 두 시장 (왜 지금) ───────────────────────────────────────────── */

.market { display: flex; flex-direction: column; height: 100%; }
.market__label { font-size: .875rem; font-weight: 700; color: var(--text-dim); }
.market__figure {
  margin-top: .4rem;
  font-size: clamp(2rem, 4.6vw, 3rem); font-weight: 800;
  letter-spacing: -.04em; line-height: 1.15;
}
.market__body { margin-top: 1rem; color: var(--text-dim); font-size: .9375rem; }
.market__gap {
  margin-top: auto; padding-top: 1.375rem;
  font-weight: 800; font-size: .9375rem; color: var(--text);
}

.conclusion {
  position: relative;
  margin-top: 2.25rem; padding: 1.5rem 1.75rem;
  border-radius: var(--r-lg);
  background: var(--grad-soft);
  border: 1px solid rgba(239, 75, 124, .22);
  font-weight: 800; font-size: clamp(1.0625rem, 2vw, 1.375rem);
  letter-spacing: -.015em;
  color: var(--rose-deep);
}

/* ── 세 기둥 (소울톡·소울플레이·소울스토리) ──────────────────────── */

.pillar {
  position: relative;
  display: flex; flex-direction: column;
  background: linear-gradient(170deg, #fff6f9, #fdeef3);
  border: 1px solid rgba(239, 75, 124, .16);
  border-radius: var(--r-xl);
  padding: clamp(1.625rem, 3vw, 2.125rem) clamp(1.375rem, 2.6vw, 1.875rem) 0;
  overflow: clip;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pillar::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  width: 260px; height: 260px; right: -90px; top: -110px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(201, 92, 224, .2), transparent 70%);
}
.pillar > * { position: relative; z-index: 1; }
.pillar__kind {
  font-size: .8125rem; font-weight: 800; letter-spacing: .02em;
  color: var(--rose-deep);
}
.pillar__name {
  margin-top: .3rem; font-size: 1.5rem; font-weight: 800; letter-spacing: -.03em;
}
.pillar__body { margin-top: .7rem; color: var(--text-dim); font-size: .9375rem; }
.pillar__shot {
  margin: 1.875rem auto 0;
  width: min(240px, 76%);
  /* 아래를 잘라 카드 안으로 스크린샷이 '들어가는' 느낌을 만든다. */
  margin-bottom: -12%;
  filter: drop-shadow(0 18px 40px rgba(21, 23, 30, .22));
  transition: transform .4s var(--ease);
}
.pillar:hover .pillar__shot { transform: translateY(-8px); }

/* ── 흐름 (1→2→3→4) ─────────────────────────────────────────────── */

.flow { display: grid; gap: 1rem; margin-top: 2.75rem; }
@media (min-width: 640px) { .flow { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .flow { grid-template-columns: repeat(4, 1fr); } }

/* 반쪽 칸(.split) 안에서는 4열로 쪼개지 않는다. 쪼개면 글자가 한 자씩
   줄바꿈된다 — 실제로 소울플레이 절에서 그렇게 나왔다. */
.split .flow { grid-template-columns: 1fr !important; }

.flow__item {
  display: flex; gap: .95rem; align-items: flex-start;
  padding: 1.25rem 1.375rem;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: #fff;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.flow__item:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.flow__title { font-size: .9375rem; font-weight: 800; }
.flow__body  { margin-top: .2rem; font-size: .875rem; color: var(--text-dim); }

/* ── 표 ──────────────────────────────────────────────────────────── */

.table-wrap {
  /* 넓은 표는 페이지가 아니라 자기 안에서 가로 스크롤한다. */
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
table.data {
  width: 100%; min-width: 640px;
  border-collapse: collapse;
  font-size: .9375rem;
}
table.data th, table.data td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
}
table.data thead th {
  font-size: .8125rem; font-weight: 800;
  color: var(--text-dim);
  background: var(--bg-soft);
  white-space: nowrap;
}
table.data tbody tr { transition: background-color .2s var(--ease); }
table.data tbody tr:hover { background: #fbfcfe; }
table.data tbody tr:last-child td,
table.data tbody tr:last-child th { border-bottom: 0; }
table.data td:first-child, table.data th[scope="row"] { font-weight: 700; }
table.data tr.is-us th[scope="row"],
table.data tr.is-us td {
  background: var(--grad-soft);
  color: var(--rose-deep);
  font-weight: 800;
}
table.data tr.is-us:hover th[scope="row"],
table.data tr.is-us:hover td { background: var(--grad-soft); }

.mark-yes { color: var(--rose); font-weight: 800; font-size: 1.0625rem; }
.mark-no  { color: var(--text-faint); }

.quote {
  margin-top: 1.75rem;
  padding-left: 1.25rem;
  border-left: 3px solid transparent;
  border-image: var(--grad) 1;
  font-size: clamp(1.0625rem, 2vw, 1.3125rem);
  font-weight: 800; letter-spacing: -.02em;
}

/* 정산 구조 박스 */
/* 내용 길이가 다른 두 카드가 같은 높이로 늘어나면 짧은 쪽이 텅 빈다. */
.settle { margin-top: 1.75rem; align-items: start; }
.settle__list li {
  padding: .7rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: .9375rem;
}
.settle__list li:last-child {
  border-bottom: 0; font-weight: 800; color: var(--rose-deep);
}
.settle__notes { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }
.settle__notes li {
  padding: .35rem .85rem;
  background: var(--grad-soft); border-radius: var(--r-pill);
  font-size: .8125rem; font-weight: 700; color: var(--rose-deep);
}

/* ── 이미지 + 설명 (소울플레이 · 소울스토리) ─────────────────────── */

.split { display: grid; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--flip .split__media { order: 2; }
}

.split__media { position: relative; }
.split__media figure { margin: 0; position: relative; }
.split__media img {
  width: 100%; border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}
.split__media figcaption {
  margin-top: .875rem; font-size: .8125rem; color: var(--text-faint);
}
/* 앱 화면은 세로로 매우 길다(360x746). 칸 너비를 다 채우면 옆 글 단이
   훨씬 짧아져 큰 빈 공간이 생긴다 — 폭을 묶고 가운데로 둔다. */
.split__media--phone img {
  width: auto; max-width: 100%; max-height: 620px;
  margin-inline: auto;
  border-radius: 0; box-shadow: none;
  filter: drop-shadow(0 24px 60px rgba(21, 23, 30, .22));
}
.split__media--phone figcaption { text-align: center; }

.point-list { display: grid; gap: 1.25rem; margin-top: 1.875rem; }
.point-list > div {
  padding-left: 1.125rem;
  border-left: 2px solid var(--line);
  transition: border-color .25s var(--ease);
}
.point-list > div:hover { border-left-color: var(--rose); }
.point-list__title { font-size: 1.0625rem; font-weight: 800; letter-spacing: -.015em; }
.point-list__body  { margin-top: .25rem; font-size: .9375rem; color: var(--text-dim); }

.guard {
  display: flex; gap: .7rem; align-items: flex-start;
  margin-top: 1.875rem; padding: 1rem 1.25rem;
  background: var(--grad-soft);
  border: 1px solid rgba(239, 75, 124, .2);
  border-radius: var(--r-lg);
  font-size: .875rem; font-weight: 700; color: var(--rose-deep);
}
.guard svg { width: 20px; height: 20px; flex: none; margin-top: .1rem; }

/* 활용 예시 태그 */
.tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.375rem; }
.tags li {
  padding: .4rem .9rem;
  border: 1px solid var(--line); border-radius: var(--r-pill);
  background: #fff;
  font-size: .8125rem; font-weight: 600; color: var(--text-dim);
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.tags li:hover { border-color: var(--rose); color: var(--rose-deep); }

/* ── 아티스트 ────────────────────────────────────────────────────── */

.artist { margin-top: 2.75rem; }
.artist__name {
  display: flex; align-items: center; gap: .75rem;
  font-size: 1.375rem; font-weight: 800; letter-spacing: -.03em;
}
.artist__name::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--grad); flex: none;
}
.artist__name::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--line), transparent);
}
.artist__shots {
  display: grid; gap: 1rem; margin-top: 1.375rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 900px) { .artist__shots { grid-template-columns: repeat(4, 1fr); } }
.artist__shots figure { margin: 0; }
.artist__shots img {
  width: 100%;
  border-radius: var(--r-lg);
  background: var(--bg-soft);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.artist__shots figure:hover img {
  transform: translateY(-6px) scale(1.015);
  box-shadow: var(--shadow-lg);
}
.artist__shots figcaption {
  margin-top: .625rem; font-size: .8125rem; color: var(--text-faint);
}

/* ── 온보딩 ──────────────────────────────────────────────────────── */

.steps { display: grid; gap: 1rem; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .steps { grid-template-columns: repeat(4, 1fr); } }

.step {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: 1.5rem;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step__head { display: flex; align-items: center; gap: .7rem; }
.step__title { font-size: 1.125rem; font-weight: 800; letter-spacing: -.015em; }
.step__detail { margin-top: .875rem; font-size: .9375rem; color: var(--text-dim); white-space: pre-line; }
.step__roles { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--line-soft); }
.step__role { display: grid; grid-template-columns: 4.5rem 1fr; gap: .5rem; font-size: .8125rem; }
.step__role + .step__role { margin-top: .55rem; }
.step__role dt { font-weight: 800; color: var(--rose-deep); }
.step__role dd { color: var(--text-dim); }
.step__role--agency dt { color: var(--text-dim); }

.figures {
  display: grid; gap: 1rem; margin-top: 2.25rem;
  grid-template-columns: repeat(3, 1fr);
}
.figures > div {
  position: relative;
  padding: 1.5rem 1.25rem;
  background: var(--bg-ink); color: #fff;
  border-radius: var(--r-xl);
  text-align: center;
  overflow: clip;
}
.figures > div::before {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background: radial-gradient(120% 100% at 50% 0%, rgba(239, 75, 124, .35), transparent 70%);
}
.figures dt, .figures dd { position: relative; }
.figures dt {
  font-size: clamp(1.5rem, 3.8vw, 2.25rem); font-weight: 800;
  letter-spacing: -.04em; line-height: 1.15;
}
.figures dd { margin-top: .3rem; font-size: .8125rem; color: var(--text-on-ink-dim); }

/* ── 보호 ────────────────────────────────────────────────────────── */

.layers { display: grid; gap: 1rem; }
@media (min-width: 900px) { .layers { grid-template-columns: repeat(3, 1fr); } }

.blocklist { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.125rem; }
.blocklist li {
  padding: .45rem .9rem;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--line-ink);
  border-radius: var(--r-pill);
  font-size: .8125rem; font-weight: 700;
}

.exit-note {
  display: flex; gap: .7rem; align-items: flex-start;
  margin-top: 2.25rem; padding: 1rem 1.25rem;
  border: 1px solid var(--line-ink); border-radius: var(--r-lg);
  background: rgba(255, 255, 255, .03);
  font-size: .875rem; color: var(--text-on-ink-dim);
}

/* ── 팬덤 데이터 ─────────────────────────────────────────────────── */

.pipeline { display: grid; gap: 1rem; }
@media (min-width: 800px) { .pipeline { grid-template-columns: repeat(3, 1fr); } }

.qbox { margin-top: 2.25rem; }
.qbox__title { font-size: .875rem; font-weight: 800; color: var(--text-dim); }
.qbox ul { display: grid; gap: .625rem; margin-top: 1rem; }
@media (min-width: 720px) { .qbox ul { grid-template-columns: repeat(2, 1fr); } }
.qbox li {
  display: flex; gap: .625rem; align-items: baseline;
  padding: .75rem 1rem;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: .9375rem; font-weight: 700;
}
.qbox li::before { content: "?"; color: var(--rose); font-weight: 800; flex: none; }

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

.faq { display: grid; gap: .75rem; }
@media (min-width: 900px) { .faq { grid-template-columns: repeat(2, 1fr); align-items: start; } }

.faq details {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.faq details[open] { border-color: rgba(239, 75, 124, .3); box-shadow: var(--shadow-sm); }
.faq summary {
  display: flex; align-items: flex-start; gap: .8rem;
  padding: 1.25rem 1.375rem;
  font-weight: 800; font-size: .9375rem;
  cursor: pointer; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before {
  content: "Q"; flex: none;
  width: 24px; height: 24px; margin-top: -.1rem;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r-pill);
  background: var(--grad); color: #fff;
  font-size: .75rem; font-weight: 800;
}
.faq summary::after {
  content: ""; flex: none; margin-left: auto; margin-top: .35rem;
  width: 9px; height: 9px;
  border-right: 2px solid var(--text-faint);
  border-bottom: 2px solid var(--text-faint);
  transform: rotate(45deg);
  transition: transform .25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq details > p {
  padding: 0 1.375rem 1.375rem 3.55rem;
  font-size: .9375rem; color: var(--text-dim);
}

/* ── 플랜 ────────────────────────────────────────────────────────── */

.plans { display: grid; gap: 1rem; align-items: start; }
@media (min-width: 680px)  { .plans { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1060px) { .plans { grid-template-columns: repeat(4, 1fr); } }

.plan {
  position: relative;
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: 1.625rem 1.5rem;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
/* 그라데이션 테두리.
   ::before 에 그라데이션을 깔고 z-index:-1 로 뒤에 두는 방법을 먼저 썼는데,
   같은 규칙의 `isolation: isolate` 가 쌓임 맥락을 만들어 **음수 z-index 가
   요소 자신의 배경보다 위에** 칠해졌다. 그래서 카드 전체가 그라데이션으로
   덮여 본문 글자를 읽을 수 없었다(실측).

   배경을 두 겹으로 칠하는 표준 기법으로 바꾼다 — 안쪽(padding-box)은 흰색,
   테두리 영역(border-box)은 그라데이션. 쌓임 맥락과 무관하다. */
.plan--best {
  border: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--grad) border-box;
  box-shadow: var(--shadow-lg);
}
.plan__badge {
  align-self: flex-start;
  padding: .25rem .7rem; margin-bottom: .7rem;
  background: var(--grad); color: #fff;
  border-radius: var(--r-pill);
  font-size: .6875rem; font-weight: 800; letter-spacing: .08em;
}
.plan__name { font-size: 1.125rem; font-weight: 800; }
.plan__price {
  margin-top: .4rem;
  font-size: 1.75rem; font-weight: 800; letter-spacing: -.035em;
}
.plan__price small { font-size: .875rem; font-weight: 600; color: var(--text-dim); }
.plan__items { margin-top: 1.375rem; display: grid; gap: .55rem; }
.plan__items li {
  display: flex; gap: .55rem; align-items: baseline;
  font-size: .875rem; color: var(--text-dim);
}
.plan__items li::before {
  content: ""; flex: none; width: 5px; height: 5px; border-radius: 50%;
  background: var(--rose); transform: translateY(-2px);
}

/* ── 기능 (앱 화면 나열) ─────────────────────────────────────────── */

.features {
  display: grid; gap: 1.75rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 900px)  { .features { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .features { grid-template-columns: repeat(5, 1fr); } }
.features figure { margin: 0; text-align: center; }
/* 앱 화면마다 세로 비율이 다르다(360x746 · 720x1409). 폭만 맞추면
   높이가 제각각이라 아래 캡션이 서로 어긋난다. 높이를 묶어 정렬한다. */
.features img {
  width: auto; max-width: 100%;
  height: clamp(200px, 26vw, 300px);
  object-fit: contain; object-position: bottom;
  margin-inline: auto;
  filter: drop-shadow(0 14px 30px rgba(21, 23, 30, .18));
  transition: transform .35s var(--ease);
}
.features figure:hover img { transform: translateY(-8px); }
.features__name { margin-top: 1rem; font-size: .9375rem; font-weight: 800; }
.features__body { margin-top: .35rem; font-size: .8125rem; color: var(--text-dim); }

/* ── 기술 · 로드맵 ───────────────────────────────────────────────── */

.tech__projects {
  margin-top: 1.125rem; padding-top: 1.125rem;
  border-top: 1px solid var(--line-soft);
  font-size: .8125rem;
}
.tech__projects dt { color: var(--text-faint); font-weight: 700; }
.tech__projects dd { margin-top: .25rem; color: var(--text-dim); font-weight: 700; }

.roadmap { display: grid; gap: 1rem; }
@media (min-width: 720px)  { .roadmap { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .roadmap { grid-template-columns: repeat(4, 1fr); } }

.rm__when {
  font-size: .8125rem; font-weight: 800; letter-spacing: .06em;
}
.rm__title {
  margin-top: .3rem; font-size: 1.125rem; font-weight: 800;
  display: flex; align-items: center; gap: .5rem; flex-wrap: wrap;
  letter-spacing: -.015em;
}
.rm__planned {
  padding: .12rem .55rem;
  background: var(--bg-soft); color: var(--text-dim);
  border-radius: var(--r-pill);
  font-size: .6875rem; font-weight: 800;
}
.rm__items { margin-top: 1rem; display: grid; gap: .45rem; }
.rm__items li {
  display: flex; gap: .55rem; align-items: baseline;
  font-size: .875rem; color: var(--text-dim);
}
.rm__items li::before {
  content: ""; flex: none; width: 5px; height: 5px; border-radius: 50%;
  background: var(--rose); transform: translateY(-2px);
}

/* ── 마무리 ──────────────────────────────────────────────────────── */

.early {
  position: relative;
  margin-top: 2.75rem; padding: clamp(1.75rem, 3.4vw, 2.5rem);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--r-xl);
  background:
    linear-gradient(120deg, rgba(239, 75, 124, .18), rgba(201, 92, 224, .14) 55%, rgba(91, 158, 255, .12));
  overflow: clip;
}
.early__label {
  font-size: .75rem; font-weight: 800; letter-spacing: .16em;
  color: var(--rose-soft);
}
.early__title {
  margin-top: .625rem; font-size: clamp(1.125rem, 2.2vw, 1.5rem);
  font-weight: 800; letter-spacing: -.02em;
}
.early__body  { margin-top: .75rem; color: var(--text-on-ink-dim); font-size: .9375rem; }

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

.contact-grid { display: grid; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
@media (min-width: 940px) { .contact-grid { grid-template-columns: .85fr 1.15fr; } }

.contact-info dl { margin-top: 2.25rem; display: grid; gap: 1.25rem; }
.contact-info dt {
  font-size: .75rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-faint);
}
.contact-info dd { margin-top: .25rem; font-weight: 700; }
.contact-info dd a { text-decoration: none; }
.contact-info dd a:hover { color: var(--rose); }

.form {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(1.375rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-md);
}
.form__grid { display: grid; gap: 1.125rem; }
@media (min-width: 640px) { .form__grid { grid-template-columns: repeat(2, 1fr); } }
.field--full { grid-column: 1 / -1; }

.field label {
  display: block; margin-bottom: .45rem;
  font-size: .875rem; font-weight: 700;
}
.req { color: var(--rose); margin-left: .15rem; }

.input, .textarea {
  width: 100%; padding: .8rem .95rem;
  background: var(--bg); color: var(--text);
  border: 1px solid var(--line); border-radius: var(--r-md);
  font: inherit; font-size: .9375rem;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.input::placeholder, .textarea::placeholder { color: var(--text-faint); }
.input:focus, .textarea:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(239, 75, 124, .12);
}
.textarea { min-height: 160px; resize: vertical; }

.file-row { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; }
.file-row .input { flex: 1 1 200px; }
.file-hint { margin-top: .5rem; font-size: .75rem; color: var(--text-faint); }

.consent { display: flex; gap: .7rem; align-items: flex-start; cursor: pointer; }
.consent input { margin-top: .3rem; flex: none; accent-color: var(--rose); }
.consent__text { font-size: .8125rem; line-height: 1.6; color: var(--text-dim); font-weight: 400; }
.consent__text strong { color: var(--text); }
.consent__text a { color: var(--rose); }

.form__foot {
  display: flex; flex-wrap: wrap; gap: 1rem;
  align-items: center; justify-content: space-between;
  margin-top: 1.75rem;
}
.form__msg { font-size: .875rem; font-weight: 700; }
.form__msg.is-error { color: var(--rose-deep); }
.form__msg.is-ok    { color: #17845a; }

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

.footer {
  position: relative;
  background: var(--bg-ink-deep); color: var(--text-on-ink);
  padding-block: clamp(2.75rem, 5vw, 4.5rem) 2rem;
  overflow: clip;
}
.footer::before {
  content: ""; position: absolute; pointer-events: none;
  width: 620px; height: 620px; left: -200px; bottom: -380px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(239, 75, 124, .22), transparent 70%);
}
.footer .container { position: relative; z-index: 1; }
.footer__top {
  display: grid; gap: 2rem;
  padding-bottom: 2.25rem; border-bottom: 1px solid var(--line-ink);
}
@media (min-width: 800px) { .footer__top { grid-template-columns: 1.5fr 1fr 1fr; } }
.footer__brand {
  display: flex; align-items: center; gap: .7rem;
  font-weight: 800; font-size: 1.125rem; letter-spacing: -.02em;
}
.footer__brand img { width: 32px; height: 32px; border-radius: 9px; }
.footer__tagline { margin-top: 1rem; color: var(--text-on-ink-dim); font-size: .9375rem; }
.footer h3 {
  font-size: .75rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-faint);
}
.footer ul { margin-top: 1rem; display: grid; gap: .55rem; }
.footer li, .footer a { font-size: .875rem; color: var(--text-on-ink-dim); text-decoration: none; }
.footer a:hover { color: #fff; }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between; align-items: center;
  padding-top: 1.75rem;
  font-size: .8125rem; color: var(--text-faint);
}

/* ── 스크롤 리빌 ─────────────────────────────────────────────────── */
/* JS 가 살아 있을 때만 숨긴다 (html.js). JS 가 죽어도 본문은 보여야 한다. */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: var(--d, 0s);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; }
}

/* ── site.js 가 붙이는 상태 클래스 ───────────────────────────────── */
/* 공용 site.js 를 그대로 쓴다. 이 두 클래스는 그쪽이 토글한다. */

.header.is-stuck {
  border-bottom-color: var(--line-soft);
  box-shadow: 0 6px 24px rgba(21, 23, 30, .07);
}
.nav a.is-active { color: var(--text); font-weight: 700; }

/* 제목 안의 강제 줄바꿈은 넓은 화면에서만.
   좁은 화면에서 그대로 먹으면 짧은 줄이 생겨 오히려 어색하다. */
.br-lg { display: none; }
@media (min-width: 900px) { .br-lg { display: inline; } }

/* =====================================================================
   소개서 v2 구조 — 문제 인식 ①~④ → 우리의 방향 ①~④
   ===================================================================== */

/* ── 요약 카드의 기능 이름 ───────────────────────────────────────── */

.card__kicker {
  font-size: .8125rem; font-weight: 800; letter-spacing: .02em;
  color: var(--rose-deep);
  margin-bottom: .3rem;
}
.section--ink .card__kicker { color: var(--rose-soft); }

/* ── 문제 카드 ───────────────────────────────────────────────────── */

.problem {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(1.625rem, 3.4vw, 2.75rem);
  box-shadow: var(--shadow-sm);
}
.problem + .problem { margin-top: 1.5rem; }

.problem__head { display: flex; gap: clamp(1rem, 2.4vw, 1.5rem); align-items: flex-start; }
.problem__no {
  flex: none;
  font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800;
  line-height: 1; letter-spacing: -.04em;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.problem__label {
  font-size: .75rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-faint);
}
.problem__title {
  margin-top: .3rem;
  font-size: clamp(1.25rem, 2.6vw, 1.75rem); font-weight: 800;
  letter-spacing: -.025em; line-height: 1.3;
}
.problem__lead { margin-top: .75rem; color: var(--text-dim); font-size: .9375rem; }

/* 큰 수치 */
.problem__figures {
  display: grid; gap: 1rem; margin-top: 1.875rem;
}
@media (min-width: 720px) {
  .problem__figures { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
}
.problem__figures > div {
  padding: 1.25rem 1.375rem;
  background: var(--grad-soft);
  border: 1px solid rgba(239, 75, 124, .18);
  border-radius: var(--r-lg);
}
.problem__figures dt {
  font-size: clamp(1.375rem, 3vw, 1.875rem); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.2;
  color: var(--rose-deep);
}
.problem__figures dd { margin-top: .35rem; font-size: .875rem; font-weight: 700; }
.problem__fignote {
  margin-top: .3rem !important;
  font-size: .75rem !important; font-weight: 400 !important;
  color: var(--text-dim); line-height: 1.55;
}

/* 일상 속 AI 쓰임새 */
.uses {
  display: grid; gap: .75rem; margin-top: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 900px) { .uses { grid-template-columns: repeat(4, 1fr); } }
.uses li {
  padding: 1rem 1.125rem;
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--bg-soft);
}
.uses strong { display: block; font-size: .9375rem; font-weight: 800; }
.uses span { display: block; margin-top: .2rem; font-size: .8125rem; color: var(--text-dim); }

/* 벽 (막고 있는 것) */
.problem__wallslabel {
  margin-top: 1.875rem;
  font-size: .9375rem; font-weight: 800; color: var(--rose-deep);
}
.walls { margin-top: 1rem; }
.wall {
  padding: 1.25rem 1.375rem;
  border: 1px dashed var(--line);
  border-radius: var(--r-lg);
  background: var(--bg-soft);
}
.wall__title { font-size: 1rem; font-weight: 800; }
.wall__body  { margin-top: .4rem; font-size: .875rem; color: var(--text-dim); }

.problem__gap {
  margin-top: 1.875rem; padding: 1rem 1.25rem;
  border-left: 3px solid var(--rose);
  background: var(--bg-soft);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: .9375rem; font-weight: 700;
}
.problem__question {
  margin-top: 1.875rem;
  font-size: clamp(1.0625rem, 2.2vw, 1.375rem); font-weight: 800;
  letter-spacing: -.02em;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}

/* 문제 -> 답으로 내려가는 링크 */
.problem__answer {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: 1.5rem; padding: .7rem 1.25rem;
  background: var(--bg-ink); color: #fff;
  border-radius: var(--r-pill);
  font-size: .875rem; font-weight: 600; text-decoration: none;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.problem__answer strong { font-weight: 800; }
.problem__answer svg { width: 15px; height: 15px; flex: none; transition: transform .2s var(--ease); }
.problem__answer:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.problem__answer:hover svg { transform: translateY(2px); }

/* ── 시장 규모 차트 ──────────────────────────────────────────────── */

.chart {
  margin: 1.875rem 0 0;
  padding: clamp(1.25rem, 2.6vw, 1.75rem);
  background: var(--bg-ink);
  border-radius: var(--r-lg);
  color: var(--text-on-ink);
  overflow: clip;
}
.chart__head {
  display: flex; flex-wrap: wrap; gap: .5rem 1rem;
  align-items: baseline; justify-content: space-between;
}
.chart__title { font-size: .9375rem; font-weight: 800; }
.chart__unit  { font-size: .75rem; color: var(--text-faint); }

.chart__plot { margin-top: 1.25rem; }
.chart__plot svg { width: 100%; height: clamp(200px, 30vw, 260px); overflow: visible; }

/* 격자와 축은 뒤로 물린다 — 자리만 알려주는 용도다. */
.chart__grid { stroke: rgba(255, 255, 255, .08); stroke-width: 1; }
.chart__line { fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.chart__dot  { fill: #fff; }
.chart__dot--end { fill: #fff; stroke: var(--rose); stroke-width: 3; }
.chart__value {
  fill: #fff; font-size: 15px; font-weight: 800;
  font-family: var(--font-sans);
}
.chart__year {
  fill: var(--text-faint); font-size: 12px; font-weight: 600;
  font-family: var(--font-sans);
}

.chart__note {
  margin-top: 1.125rem; font-size: .8125rem; color: var(--text-on-ink-dim);
}
.chart__table { margin-top: .875rem; }
.chart__table summary {
  cursor: pointer; font-size: .8125rem; font-weight: 700;
  color: var(--rose-soft);
}
.chart__table table {
  width: 100%; margin-top: .875rem;
  border-collapse: collapse; font-size: .8125rem;
}
.chart__table th, .chart__table td {
  padding: .5rem .625rem; text-align: left;
  border-bottom: 1px solid var(--line-ink);
  white-space: nowrap;
}
.chart__table thead th { color: var(--text-faint); font-weight: 700; }
.chart__table tbody th { color: var(--text-on-ink-dim); font-weight: 600; }
.chart__source { margin-top: .75rem; font-size: .75rem; color: var(--text-faint); }

/* ── 문제 -> 답 대응표 ───────────────────────────────────────────── */

.match { display: grid; gap: 1rem; counter-reset: match; }
.match__row {
  display: grid; gap: .875rem 1.25rem;
  align-items: center;
  padding: clamp(1.25rem, 2.6vw, 1.75rem);
  background: rgba(255, 255, 255, .045);
  border: 1px solid var(--line-ink);
  border-radius: var(--r-lg);
  backdrop-filter: blur(10px);
  grid-template-areas:
    "no    problem"
    "arrow arrow"
    "ans   ans"
    "name  name";
  grid-template-columns: auto 1fr;
}
@media (min-width: 900px) {
  .match__row {
    grid-template-areas: "no problem arrow ans name";
    grid-template-columns: auto 1fr auto 1fr auto;
  }
}
.match__no {
  grid-area: no;
  font-size: 1.5rem; font-weight: 800; line-height: 1;
  color: var(--rose-soft);
}
.match__problem {
  grid-area: problem;
  font-size: .9375rem; color: var(--text-on-ink-dim);
  white-space: pre-line;
}
.match__arrow {
  grid-area: arrow;
  display: flex; align-items: center; color: var(--rose);
}
.match__arrow svg { width: 28px; height: 18px; }
/* 좁은 화면에서는 화살표를 아래로 돌린다 — 가로 배치가 아니기 때문이다. */
@media (max-width: 899px) { .match__arrow svg { transform: rotate(90deg); } }

.match__answer {
  grid-area: ans;
  font-size: .9375rem; font-weight: 700; color: #fff;
  white-space: pre-line;
}
.match__name {
  grid-area: name;
  justify-self: start;
  padding: .45rem 1rem;
  background: var(--grad); color: #fff;
  border-radius: var(--r-pill);
  font-size: .8125rem; font-weight: 800;
  text-decoration: none; white-space: nowrap;
  transition: transform .2s var(--ease);
}
.match__name:hover { transform: translateY(-2px); }

/* ── 시장 신호 카드 ──────────────────────────────────────────────── */

.signal { display: flex; flex-direction: column; }
.signal__label {
  font-size: .75rem; font-weight: 800; letter-spacing: .1em;
  color: var(--rose-deep);
}
.signal__name {
  margin-top: .5rem; font-size: 1.375rem; font-weight: 800; letter-spacing: -.03em;
}
.signal__title { margin-top: .2rem; font-size: .9375rem; font-weight: 700; color: var(--text-dim); }
.signal__facts { margin-top: 1.125rem; display: grid; gap: .55rem; }
.signal__facts li {
  display: flex; gap: .55rem; align-items: baseline;
  font-size: .875rem; color: var(--text-dim);
}
.signal__facts li::before {
  content: ""; flex: none; width: 5px; height: 5px; border-radius: 50%;
  background: var(--rose); transform: translateY(-2px);
}
.signal__source {
  margin-top: auto; padding-top: 1.125rem;
  font-size: .75rem; color: var(--text-faint);
}

/* ── 다음 단계 ───────────────────────────────────────────────────── */

.nextsteps {
  margin-top: 1.25rem; padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid var(--line-ink); border-radius: var(--r-xl);
  background: rgba(255, 255, 255, .04);
}
.nextsteps__label {
  font-size: .75rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--text-faint);
}
.nextsteps ol {
  display: grid; gap: 1rem; margin-top: 1.25rem;
}
@media (min-width: 800px) { .nextsteps ol { grid-template-columns: repeat(3, 1fr); } }
.nextsteps li { display: flex; gap: .875rem; align-items: flex-start; }
.nextsteps__title { font-size: 1rem; font-weight: 800; }
.nextsteps__body  { margin-top: .2rem; font-size: .875rem; color: var(--text-on-ink-dim); }

/* ── 시나리오 예시 이미지 ────────────────────────────────────────── */

.examples {
  display: grid; gap: 1rem; margin-top: 1.875rem;
  grid-template-columns: repeat(3, 1fr);
}
.examples img { width: 100%; border-radius: var(--r-md); box-shadow: var(--shadow-sm); }
.examples__note { margin-top: .875rem; font-size: .75rem; color: var(--text-faint); }
