/* ── 오르골 랜딩 · Airbnb 풍 디자인 시스템 ─────────────────────── */

:root {
  --ink: #222222;
  --muted: #6a6a6a;
  --accent: #ff385c;
  --accent-active: #e00b41;
  --hair: #dddddd;
  --hair-soft: #ebebeb;
  --soft: #f7f7f7;
  --r-btn: 8px;
  --r-card: 14px;
  --r-pill: 9999px;
  --shadow: rgba(0, 0, 0, 0.02) 0 0 0 1px, rgba(0, 0, 0, 0.04) 0 2px 6px,
    rgba(0, 0, 0, 0.1) 0 4px 8px;
  --font: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
    system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo",
    "Noto Sans KR", "Malgun Gothic", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  word-break: keep-all;
  overflow-wrap: break-word;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: #ffffff;
}

@media (min-width: 1128px) {
  body { font-size: 17px; }
}

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.wrap-narrow { max-width: 800px; }

/* 아이콘 심볼 기본값 */
.tile > svg use, .jnode svg use, .feat svg use { pointer-events: none; }
symbol { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
#i-play path, #i-bolt, #i-spark { fill: none; }

/* ── 버튼 ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--r-btn);
  font-family: inherit;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover, .btn-primary:active { background: var(--accent-active); }
.btn-ghost { background: #fff; color: var(--ink); border: 1px solid var(--hair); }
.btn-ghost:hover { background: var(--soft); }
.btn-sm { height: 40px; padding: 0 16px; font-size: 15px; }
.btn-lg { height: 56px; padding: 0 30px; }
.btn-full { width: 100%; }

.g-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex: none;
  background: #fff;
  border-radius: 50%;
}
.g-badge svg { width: 15px; height: 15px; }

/* ── 헤더 ── */
.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--hair-soft);
}
.head-in {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 68px;
}
.brand { display: inline-flex; align-items: center; min-width: 0; }
.brand img { width: auto; }
.head-nav {
  display: none;
  gap: 4px;
  margin-left: auto;
}
.head-nav a {
  padding: 8px 12px;
  border-radius: var(--r-pill);
  font-size: 16px;
  color: var(--ink);
}
.head-nav a:hover { background: var(--soft); }
.site-head .btn { margin-left: auto; }

@media (min-width: 744px) {
  .head-nav { display: flex; }
  .site-head .btn { margin-left: 0; }
}

/* ── 섹션 공통 ── */
.sec { padding: 72px 0; }
.sec-soft { background: var(--soft); }
.sec h2 {
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.sec-sub {
  margin-top: 10px;
  margin-bottom: 40px;
  font-size: 18px;
  color: var(--muted);
}

.card {
  background: #fff;
  border: 1px solid var(--hair-soft);
  border-radius: var(--r-card);
  min-width: 0;
}

/* ── 히어로 ── */
.hero { padding: 56px 0 72px; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
.hero-copy { min-width: 0; }
.pill-badge {
  display: inline-block;
  padding: 7px 14px;
  border: 1px solid var(--hair);
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  background: #fff;
}
.hero h1 {
  margin-top: 20px;
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub {
  margin-top: 18px;
  max-width: 520px;
  font-size: clamp(18px, 1.6vw, 20px);
  line-height: 1.6;
  color: var(--muted);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.hero-chips li {
  padding: 6px 13px;
  background: var(--soft);
  border-radius: var(--r-pill);
  font-size: 14px;
  color: var(--muted);
}

/* 히어로 비주얼 — LP + 오르골 크랭크 + 음표 + 이퀄라이저 */
.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 24px 0 32px;
  min-width: 0;
}
.lp-wrap { position: relative; width: min(400px, 78vw); }
.lp {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    conic-gradient(
      from 20deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0) 18%,
      rgba(255, 255, 255, 0.05) 32%,
      rgba(255, 255, 255, 0) 55%,
      rgba(255, 255, 255, 0.08) 74%,
      rgba(255, 255, 255, 0) 100%
    ),
    repeating-radial-gradient(circle at 50% 50%, #232326 0 3px, #2e2e33 3px 4px);
  animation: lp-spin 14s linear infinite;
}
.lp-label {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 37%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--hair-soft);
  box-shadow: inset 0 0 0 6px #fff, inset 0 0 0 7px var(--hair-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-align: center;
}
.lp-note { width: 22px; height: 22px; color: var(--accent); fill: none; stroke: currentColor; }
.lp-label strong { font-size: 17px; font-weight: 700; letter-spacing: 0.02em; }
.lp-label span { font-size: 10px; letter-spacing: 0.08em; color: var(--muted); }
.lp-sheen {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 45%);
  pointer-events: none;
}
.lp-spindle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 3px #fff, 0 0 0 4px var(--hair);
}
.crank {
  position: absolute;
  right: -40px;
  top: 50%;
  width: 52px;
  height: 28px;
  margin-top: -14px;
  transform-origin: 4px 14px;
  animation: crank-wind 3.2s ease-in-out infinite;
}

@keyframes lp-spin { to { transform: rotate(360deg); } }
@keyframes crank-wind {
  0%, 100% { transform: rotate(-7deg); }
  50% { transform: rotate(7deg); }
}

.fnote {
  position: absolute;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  animation: note-float 5.2s ease-in-out infinite;
}
.fnote-1 { width: 26px; height: 26px; right: 12%; top: 6%; }
.fnote-2 { width: 20px; height: 20px; left: 10%; top: 20%; stroke: var(--ink); animation-delay: 1.6s; }
.fnote-3 { width: 17px; height: 17px; right: 4%; top: 42%; stroke: var(--muted); animation-delay: 3.1s; }

@keyframes note-float {
  0% { opacity: 0; transform: translateY(12px) rotate(-6deg); }
  25% { opacity: 1; }
  70% { opacity: 0.9; }
  100% { opacity: 0; transform: translateY(-26px) rotate(8deg); }
}

.eq-chip {
  position: absolute;
  left: max(0px, calc(50% - 290px));
  bottom: 2%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: #fff;
  border-radius: var(--r-card);
  box-shadow: var(--shadow);
}
.eq { display: flex; align-items: center; gap: 3px; height: 22px; }
.eq i {
  width: 4px;
  height: 20px;
  border-radius: var(--r-pill);
  background: var(--accent);
  transform-origin: 50% 100%;
  animation: eq-bounce 1.1s ease-in-out infinite alternate;
}
.eq i:nth-child(1) { animation-delay: 0s; }
.eq i:nth-child(2) { animation-delay: 0.18s; }
.eq i:nth-child(3) { animation-delay: 0.34s; }
.eq i:nth-child(4) { animation-delay: 0.12s; }
.eq i:nth-child(5) { animation-delay: 0.26s; }

@keyframes eq-bounce {
  0% { transform: scaleY(0.25); }
  100% { transform: scaleY(1); }
}

.eq-txt { font-size: 14px; font-weight: 500; }

.free-chip {
  position: absolute;
  right: max(0px, calc(50% - 280px));
  top: 0;
  padding: 8px 14px;
  background: #fff;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}

@media (min-width: 744px) {
  .hero { padding: 72px 0 88px; }
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 40px; }
}

/* ── 만드는 법 3단계 ── */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.step-card { padding: 24px; }
.step-card h3 { margin-top: 14px; font-size: 20px; font-weight: 700; }
.step-card > p { margin-top: 6px; font-size: 16px; color: var(--muted); }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-top: 20px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.mock {
  background: var(--soft);
  border-radius: 10px;
  padding: 18px;
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* 목업 1 — 입력창 */
.mock-input {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: var(--r-pill);
  padding: 8px 8px 8px 18px;
}
.mock-input-txt {
  flex: 1;
  min-width: 0;
  font-size: 14px;
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mock-input-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex: none;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
}
.mock-input-btn svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; }
.mock-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.mock-chips span {
  padding: 5px 12px;
  border-radius: var(--r-pill);
  border: 1px solid var(--hair);
  background: #fff;
  font-size: 13px;
  color: var(--muted);
}
.mock-chips span.on {
  border-color: var(--ink);
  color: var(--ink);
  font-weight: 600;
}

/* 목업 2 — 가사 + 생성 파형 */
.mock-lyric { font-size: 14px; font-weight: 500; }
.mock-lyric.muted2 { color: var(--muted); font-weight: 400; margin-top: -6px; }
.genrow { display: flex; align-items: center; gap: 12px; }
.genwave { width: 96px; height: 28px; flex: none; }
.genwave rect {
  fill: var(--accent);
  transform-origin: center;
  transform-box: fill-box;
  animation: eq-bounce 0.9s ease-in-out infinite alternate;
}
.genwave rect:nth-child(2n) { animation-delay: 0.22s; }
.genwave rect:nth-child(3n) { animation-delay: 0.4s; }
.genwave rect:nth-child(5n) { animation-delay: 0.12s; }
.gen-txt { font-size: 13px; color: var(--muted); }

/* 목업 3 — 플레이어 */
.mock-player { display: flex; align-items: center; gap: 12px; }
.mock-cover {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 8px;
  color: #fff;
}
.mock-cover svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.mock-meta { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.mock-meta strong { font-size: 14px; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mock-meta span { font-size: 13px; color: var(--muted); }
.mock-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex: none;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
}
.mock-play svg { width: 18px; height: 18px; fill: currentColor; }
.mock-bar {
  height: 4px;
  border-radius: var(--r-pill);
  background: #e6e6e6;
  overflow: hidden;
}
.mock-bar i { display: block; width: 24%; height: 100%; border-radius: inherit; background: var(--accent); }
.mock-under {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
}
.dl-chips { display: inline-flex; gap: 6px; }
.dl-chips b {
  padding: 3px 8px;
  border: 1px solid var(--hair);
  border-radius: var(--r-pill);
  background: #fff;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
}

@media (min-width: 744px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}

/* ── 장르 타일 ── */
.genre-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.tile {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--r-card);
  padding: 16px;
  display: flex;
  flex-direction: column;
  color: #fff;
  min-width: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tile > svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.95;
}
.tile > svg { filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35)); }
.tile strong { margin-top: auto; font-size: 16px; font-weight: 700; letter-spacing: -0.01em; text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35); }
.tile span { margin-top: 2px; font-size: 13px; line-height: 1.4; opacity: 0.92; text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35); }

/* 타일 배경 — 이미지 위 하단 오버레이, 이미지 실패 시 그라디언트 폴백 */
.ti-kballad { background-image: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0) 62%), url("/static/genre/kballad.jpg"), linear-gradient(135deg, #8f9df0, #b98be0); }
.ti-kpop { background-image: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0) 62%), url("/static/genre/kpop.jpg"), linear-gradient(135deg, #ff6fb5, #7c5cff); }
.ti-hiphop { background-image: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0) 62%), url("/static/genre/hiphop.jpg"), linear-gradient(135deg, #3a3f4b, #15171d); }
.ti-rnb { background-image: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0) 62%), url("/static/genre/rnb.jpg"), linear-gradient(135deg, #5b4a9e, #8a63d2); }
.ti-acoustic { background-image: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0) 62%), url("/static/genre/acoustic.jpg"), linear-gradient(135deg, #ece2cd, #d3c2a2); }
.ti-rock { background-image: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0) 62%), url("/static/genre/rock.jpg"), linear-gradient(135deg, #e0455a, #8e1f3a); }
.ti-trot { background-image: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0) 62%), url("/static/genre/trot.jpg"), linear-gradient(135deg, #dd9a2e, #b25f14); }
.ti-citypop { background-image: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0) 62%), url("/static/genre/citypop.jpg"), linear-gradient(135deg, #ff9e6d, #ff5e8a); }
.ti-indie { background-image: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0) 62%), url("/static/genre/indie.jpg"), linear-gradient(135deg, #b6ecd6, #7fd3b3); }
.ti-jazz { background-image: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0) 62%), url("/static/genre/jazz.jpg"), linear-gradient(135deg, #c98f4e, #7d4f24); }
.ti-ccm { background-image: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0) 62%), url("/static/genre/ccm.jpg"), linear-gradient(135deg, #ffe0b8, #f9b3c7); }
.ti-kids { background-image: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0) 62%), url("/static/genre/kids.jpg"), linear-gradient(135deg, #ffc3d2, #ffdf8f); }
.ti-carol { background-image: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0) 62%), url("/static/genre/carol.jpg"), linear-gradient(135deg, #3e8e5a, #1f5c3a); }
.ti-edm { background-image: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0) 62%), url("/static/genre/edm.jpg"), linear-gradient(135deg, #00b3f0, #6d5cff); }
.ti-lofi { background-image: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0) 62%), url("/static/genre/lofi.jpg"), linear-gradient(135deg, #f0ead9, #d9cfbc); }
.ti-cinematic { background-image: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0) 62%), url("/static/genre/cinematic.jpg"), linear-gradient(135deg, #4b5563, #1f2430); }
.ti-piano { background-image: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0) 62%), url("/static/genre/piano.jpg"), linear-gradient(135deg, #f6f1e5, #ded2ba); }
.ti-meditation { background-image: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0) 62%), url("/static/genre/meditation.jpg"), linear-gradient(135deg, #8fae94, #5c7a63); }
.ti-bgm { background-image: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0) 62%), url("/static/genre/bgm.jpg"), linear-gradient(135deg, #ffd2ae, #ffab97); }
.ti-event { background-image: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0) 62%), url("/static/genre/event.jpg"), linear-gradient(135deg, #ff9cbd, #ffc46b); }

.g-confetti { background: linear-gradient(135deg, #ff9cbd, #ffc46b); }

@media (min-width: 744px) {
  .genre-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}
@media (min-width: 1128px) {
  .genre-grid { grid-template-columns: repeat(5, 1fr); }
}

/* ── 데모 플레이어 ── */
.demo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.song-card { padding: 20px; }
.song-top { display: flex; align-items: center; gap: 14px; }
.song-cover {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  flex: none;
  border-radius: 10px;
  color: #fff;
}
.song-cover svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
/* 커버 이미지 — 실패 시 그라디언트 폴백 */
.cv-rnb { background-image: url("/static/genre/rnb.jpg"), linear-gradient(135deg, #5b4a9e, #8a63d2); background-size: cover; background-position: center; }
.cv-kpop { background-image: url("/static/genre/kpop.jpg"), linear-gradient(135deg, #ff6fb5, #7c5cff); background-size: cover; background-position: center; }
.cv-indie { background-image: url("/static/genre/indie.jpg"), linear-gradient(135deg, #b6ecd6, #7fd3b3); background-size: cover; background-position: center; }
.song-meta { min-width: 0; flex: 1; display: flex; flex-direction: column; }
.song-meta strong { font-size: 18px; font-weight: 700; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.song-meta span { font-size: 15px; color: var(--muted); }
.song-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: none;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.song-play:hover { background: var(--accent-active); }
.song-play svg { width: 22px; height: 22px; fill: currentColor; }

.wave { width: 100%; height: 44px; margin-top: 16px; }
.wave .w-base { stroke: #e2e2e2; stroke-width: 2.6; stroke-linecap: round; fill: none; }
.wave .w-fill { stroke: var(--accent); stroke-width: 2.6; stroke-linecap: round; fill: none; }

.song-topic { margin-top: 12px; font-size: 14px; color: var(--muted); }

.demo-caption {
  margin-top: 24px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

.demo-note {
  margin-top: 8px;
  text-align: center;
  font-size: 16px;
  color: var(--muted);
}

@media (min-width: 744px) {
  .demo-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── 발매 여정 ── */
.journey {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  counter-reset: jstep;
}
.jstep {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 0;
}
.jnode {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--hair);
  color: var(--ink);
}
.jnode svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.jnode-hot { border-color: var(--accent); color: var(--accent); }
.jstep strong { font-size: 18px; font-weight: 700; }
.jstep p { font-size: 15px; color: var(--muted); max-width: 220px; }
.jlink { display: none; }

/* 「준비 중」 배지 */
.soon-badge {
  display: inline-block;
  vertical-align: 2px;
  margin-left: 4px;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  background: #fff1f4;
  color: var(--accent-active);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
}

@media (min-width: 744px) {
  .journey { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .jstep { align-items: center; text-align: center; }
  .jstep p { max-width: none; }
  .jlink {
    display: block;
    position: absolute;
    top: 27px;
    left: calc(50% + 38px);
    width: calc(100% - 76px);
    height: 8px;
  }
  .jlink path { stroke: #cfcfcf; }
}

/* 모바일 — 세로 연결선 */
@media (max-width: 743.98px) {
  .jstep:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 27px;
    top: 66px;
    bottom: -24px;
    border-left: 2px dashed var(--hair);
  }
}

/* ── 유즈케이스 ── */
.uses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.use-card { padding: 0; overflow: hidden; }
.use-art {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: var(--r-card) var(--r-card) 0 0;
}
.use-body { padding: 18px 24px 24px; }
.use-card h3 { font-size: 18px; font-weight: 700; }
.use-card p { margin-top: 6px; font-size: 16px; color: var(--muted); }

@media (min-width: 744px) {
  .uses-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1128px) {
  .uses-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── 꿈 넛지 ── */
.dream {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  text-align: center;
  background:
    radial-gradient(640px 320px at 18% 12%, rgba(255, 56, 92, 0.06), rgba(255, 56, 92, 0) 70%),
    radial-gradient(560px 320px at 84% 88%, rgba(124, 92, 255, 0.06), rgba(124, 92, 255, 0) 70%),
    var(--soft);
}
.dream h2 { font-size: clamp(28px, 3.4vw, 38px); line-height: 1.25; }
.dream-sub {
  max-width: 560px;
  margin: 16px auto 32px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
}
.dream .fnote { pointer-events: none; }
.dn-1 { width: 26px; height: 26px; left: 10%; top: 18%; }
.dn-2 { width: 18px; height: 18px; right: 12%; top: 26%; stroke: var(--ink); animation-delay: 1.3s; }
.dn-3 { width: 22px; height: 22px; left: 22%; bottom: 14%; stroke: var(--muted); animation-delay: 2.4s; }
.dn-4 { width: 16px; height: 16px; right: 20%; bottom: 20%; animation-delay: 3.6s; }

/* ── 요금 ── */
.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
}
.price-card h3 { font-size: 19px; font-weight: 700; }
.price { margin-top: 10px; display: flex; align-items: baseline; gap: 4px; }
.price b { font-size: clamp(36px, 3.4vw, 42px); font-weight: 700; letter-spacing: -0.02em; }
.price span { font-size: 16px; color: var(--muted); }
.price-for { margin-top: 4px; font-size: 15px; color: var(--muted); }
.feat { margin: 20px 0 24px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.feat li { display: flex; align-items: flex-start; gap: 10px; font-size: 16px; }
.feat svg {
  width: 18px;
  height: 18px;
  flex: none;
  margin-top: 2px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.price-hot { border: 2px solid var(--accent); }
.price-hot .feat svg { stroke: var(--accent); }
.hot-badge {
  position: absolute;
  top: -13px;
  left: 24px;
  padding: 4px 12px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
}
.price-note {
  margin-top: 24px;
  text-align: center;
  font-size: 15px;
  color: var(--muted);
}

@media (min-width: 744px) {
  .price-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── FAQ ── */
.faq-list { border-bottom: 1px solid var(--hair-soft); }
.faq-list details { border-top: 1px solid var(--hair-soft); }
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  flex: none;
  font-size: 22px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1;
  transition: transform 0.18s ease;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p {
  padding: 0 4px 20px;
  color: var(--muted);
}

/* ── 마지막 CTA ── */
.last-cta { text-align: center; padding: 88px 0; }
.last-cta h2 { font-size: clamp(28px, 3.4vw, 38px); line-height: 1.3; }
.last-cta .sec-sub { margin-bottom: 28px; }
.last-note { margin-top: 14px; font-size: 15px; color: var(--muted); }

/* ── 푸터 ── */
.site-foot {
  background: #fff;
  border-top: 1px solid var(--hair-soft);
  padding: 64px 0 40px;
}
.foot-in {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.foot-brand p { margin-top: 14px; font-size: 15px; line-height: 1.6; color: var(--muted); }
.foot-nav { display: flex; flex-direction: column; gap: 14px; }
.foot-nav-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 28px; }
.foot-nav a { font-size: 16px; line-height: 1.6; color: var(--muted); }
.foot-nav a:hover { color: var(--ink); }
.foot-legal {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--hair-soft);
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}
.foot-co { margin: 0; }
.foot-co + .foot-co { margin-top: 6px; }
.foot-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px 24px;
  margin-top: 24px;
}

@media (min-width: 744px) {
  .foot-in { flex-direction: row; justify-content: space-between; align-items: flex-start; }
  .foot-nav-row { justify-content: flex-end; }
}
@media (max-width: 743.98px) {
  .foot-bottom { flex-direction: column; align-items: flex-start; }
}

/* ── 모션 최소화 ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .lp, .crank, .fnote, .eq i, .genwave rect { animation: none; }
  .fnote { opacity: 0.6; }
  .tile, .tile:hover { transition: none; transform: none; }
}

@media (max-width: 743px){.hero-sub br{display:none}}
