/* ============================================================
   PickShot v8.8.1 — Galaxy Pro theme
   디자인 원칙: 프로 도구의 신뢰 + 신비로운 깊이 + 이탤릭 최소 사용
============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: #050614; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Pretendard', 'Apple SD Gothic Neo', sans-serif;
  color: var(--ink); background: transparent;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  /* 한글은 어절(띄어쓰기) 단위로만 줄바꿈. "환영입니/다" 같은 음절 단절 방지 */
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* 긴 영문/숫자 혼합 라인 (URL, 파일명, 벤치 라벨 등)은 필요 시 브레이크 */
code, kbd, .mono, [class*="mono"] { word-break: normal; overflow-wrap: anywhere; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
img { display: block; max-width: 100%; height: auto; }

/* --- Design tokens --- */
:root {
  --bg: #050614;
  --bg-2: #0A0C1F;
  --bg-3: #121433;
  --bg-card: rgba(22, 24, 54, 0.6);
  --bg-card-hover: rgba(32, 36, 72, 0.85);

  --ink: #F0F2FF;
  --ink-2: #C5CAEC;
  --ink-3: #8E95C4;     /* AA (7:1 on bg) */
  --ink-4: #6B72A0;     /* AAA 경계 */

  --accent: #7C5CFF;
  --accent-2: #5EEAD4;
  --accent-3: #FF7AB6;
  --accent-g: #B084FF;

  --line: rgba(132, 140, 200, 0.14);
  --line-2: rgba(132, 140, 200, 0.28);
  --glow: 0 0 60px rgba(124, 92, 255, 0.35);
  --glow-strong: 0 0 80px rgba(124, 92, 255, 0.55);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --display: 'Space Grotesk', 'Inter', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   TYPOGRAPHY — 이탤릭은 강조 3-4개만
============================================================ */
.italic {
  font-family: var(--display); font-style: italic; font-weight: 400;
  background: linear-gradient(135deg, var(--accent-g), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  /* v9.0.2: CJK 이탤릭 합성(skew) 시 오른쪽 글리프가 배경 박스 밖으로 삐져나가
     background-clip: text 때문에 끝 글자가 잘리는 현상 방지.
     skew 각도가 크기 때문에 padding 더 많이 — "법" 등 받침 있는 글자 클리핑 방지. */
  display: inline-block;
  padding: 0 0.32em 0.06em 0.04em;  /* right 더 큼 — italic 끝 글자 받침 보호 */
  margin-right: -0.18em;             /* 시각적 간격은 정상 유지 */
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  overflow: visible;
}
em { font-style: normal; color: var(--ink); font-weight: 600; }
strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   BUTTON SYSTEM (primary / secondary / ghost × sm / default / lg / xl)
============================================================ */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px;
  font-size: 14px; font-weight: 600; letter-spacing: -0.01em;
  border-radius: var(--radius);
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out),
              background .25s, border-color .25s;
  white-space: nowrap;
  cursor: pointer;
  color: var(--ink);
}
.btn:hover { transform: translateY(-1px); }
.btn svg { flex-shrink: 0; }

/* Primary — gradient fill (main CTA) */
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-g) 50%, var(--accent-2) 100%);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(124,92,255,0.6);
}
.btn-primary:hover {
  box-shadow: 0 14px 40px -8px rgba(124,92,255,0.9), 0 0 40px rgba(94,234,212,0.3);
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.3), transparent 50%);
  opacity: 0; transition: opacity .3s;
  pointer-events: none;  /* hover 오버레이가 클릭 가로채면 안 됨 — feedback 모달 input 차단 버그 해결 */
}
.btn-primary:hover::before { opacity: 1; }

/* Secondary — outlined */
.btn-secondary {
  background: rgba(22, 24, 54, 0.6);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover { border-color: var(--accent); background: var(--bg-card-hover); }

/* Ghost — link style */
.btn-ghost {
  color: var(--ink-2);
  padding: 8px 4px;
}
.btn-ghost:hover { color: var(--accent-2); transform: translateY(0); }
.btn-ghost:hover svg { transform: translateY(2px); }
.btn-ghost svg { transition: transform .2s; }

/* Sizes */
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-lg { padding: 16px 30px; font-size: 15px; }
.btn-xl { padding: 19px 38px; font-size: 16px; border-radius: var(--radius); }
.btn-block { display: flex; width: 100%; }

/* ============================================================
   GALAXY BACKGROUND
============================================================ */
.starfield {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, #141740 0%, #050614 45%);
}
.starfield canvas { width: 100%; height: 100%; }
.aurora {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  overflow: hidden; opacity: 0.4;
}
.aurora-blob {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  filter: blur(90px); opacity: 0.55;
  animation: aurora-drift 28s ease-in-out infinite;
}
.aurora-blob.b1 { top: -10%; left: -10%; background: radial-gradient(circle, #7C5CFF, transparent 60%); }
.aurora-blob.b2 { top: 30%; right: -15%; background: radial-gradient(circle, #5EEAD4, transparent 60%); animation-delay: -9s; animation-duration: 34s; }
.aurora-blob.b3 { bottom: -15%; left: 30%; background: radial-gradient(circle, #FF7AB6, transparent 60%); animation-delay: -18s; animation-duration: 42s; }
@keyframes aurora-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(180px, -120px) scale(1.1); }
  66%      { transform: translate(-140px, 160px) scale(0.95); }
}

/* ============================================================
   NAV
============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(5, 6, 20, 0.6);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 14px 28px;
  display: flex; align-items: center; gap: 32px;
}
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 15px; letter-spacing: -0.01em;
  color: var(--ink);
  padding: 10px 4px;  /* 터치 타겟 44px 보장 */
  margin: -10px -4px;  /* 시각적 위치 유지 */
}
.logo-orb {
  width: 14px; height: 14px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #B084FF, #5CC2FF 50%, #2E1F66 100%);
  box-shadow: 0 0 16px rgba(124, 92, 255, 0.6), 0 0 32px rgba(94, 234, 212, 0.2);
  animation: orb-pulse 3.5s ease-in-out infinite;
}
@keyframes orb-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 16px rgba(124, 92, 255, 0.6), 0 0 32px rgba(94, 234, 212, 0.2); }
  50%      { transform: scale(1.12); box-shadow: 0 0 24px rgba(124, 92, 255, 0.9), 0 0 48px rgba(94, 234, 212, 0.35); }
}
.logo-ver {
  margin-left: 4px; padding: 3px 7px;
  font-size: 10px; font-weight: 500; letter-spacing: 0.02em;
  color: var(--ink-2);
  background: rgba(124, 92, 255, 0.14);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: var(--mono);
}
.nav-links {
  display: flex; align-items: center; gap: 4px;
  margin-left: auto; margin-right: 8px;
}
.nav-links a {
  font-size: 13.5px; font-weight: 600; color: var(--ink-2);
  padding: 12px 14px;  /* 44px 터치 타겟 (이전 10px = 41px) */
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--accent-2); background: rgba(94,234,212,0.06); }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-inner { gap: 16px; }
}

/* ============================================================
   HERO
============================================================ */
.hero {
  padding: 140px 28px 100px;
  position: relative;
  text-align: center;
  min-height: 100vh;
}
.hero-inner { position: relative; max-width: 1280px; margin: 0 auto; }

/* Killer big number backdrop */
.hero-big-num {
  position: absolute; top: -40px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--display); font-style: italic; font-weight: 500;
  font-size: clamp(180px, 26vw, 400px); line-height: 0.9;
  letter-spacing: -0.08em;
  background: linear-gradient(180deg, rgba(124,92,255,0.18) 0%, rgba(94,234,212,0.04) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  z-index: 0; pointer-events: none;
  user-select: none;
  animation: big-num-fade 1.4s var(--ease-out) both;
}
.hero-big-unit {
  font-size: 0.45em; font-style: normal; font-weight: 400;
  margin-left: 0.05em;
}
@keyframes big-num-fade {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.hero-inner > *:not(.hero-big-num) { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  font-size: 12px; font-weight: 500;
  color: var(--ink-2);
  background: rgba(22, 24, 54, 0.7);
  border: 1px solid var(--line);
  border-radius: 100px;
  margin-bottom: 32px;
  animation: reveal-up .8s var(--ease-out) .15s both;
  backdrop-filter: blur(10px);
}
.eyebrow-pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent-2);
  animation: pulse-dot 2.2s ease-out infinite;
}
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(94, 234, 212, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(94, 234, 212, 0); }
  100% { box-shadow: 0 0 0 0 rgba(94, 234, 212, 0); }
}

.hero-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(42px, 6.5vw, 84px);
  line-height: 1.08;
  letter-spacing: -0.025em;            /* v9.0.2: 한국어 가독성 위해 자간 살짝 완화 */
  margin-bottom: 28px;
  color: var(--ink);
  /* 이탤릭 합성 글리프가 화면 오른쪽으로 삐져나가지 않도록 안전 여백 */
  padding: 0 0.18em 0.08em;
  word-break: keep-all;                 /* 한국어 어절 단위 줄바꿈 */
  overflow-wrap: break-word;
  text-wrap: balance;                   /* v9.0.2: 2줄 시 양쪽 균형 (Safari 17+/Chrome) */
}
.h-line {
  display: block;
  animation: reveal-up .9s var(--ease-out) both;
  padding-right: 0.12em;                /* v9.0.2: italic 마진 반영 — 받침 클리핑 방지 */
  /* v9.0.2: 영어/숫자/한글 어절 사이는 줄바꿈 가능하나 어절 내부는 막음 */
  word-break: keep-all;
}
.h-line:nth-child(1) { animation-delay: .25s; }
.h-line:nth-child(2) { animation-delay: .45s; }
/* v9.0.2: 강조 단어 + 마침표가 떨어지지 않게 묶기 */
.h-keep {
  white-space: nowrap;
  display: inline-block;
}
@keyframes reveal-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  max-width: 720px; margin: 0 auto 40px;
  font-size: 18px; color: var(--ink-2);
  line-height: 1.7;
  letter-spacing: -0.005em;
  word-break: keep-all;
  text-wrap: pretty;                  /* 마지막 줄 외톨이 단어 방지 (Chrome 117+) */
  animation: reveal-up .9s var(--ease-out) .65s both;
}
/* v9.0.2: 어절 단위 자연스러운 줄바꿈 — 줄 사이 공백 한 칸 */
.hs-line {
  display: inline;
}
.hs-line + .hs-line::before {
  content: " ";
}

.hero-cta {
  display: flex; gap: 20px; justify-content: center; align-items: center;
  flex-wrap: wrap; margin-bottom: 72px;
  animation: reveal-up .9s var(--ease-out) .85s both;
}

/* ============================================================
   HERO APP MOCKUP (synthetic)
============================================================ */
.hero-app {
  max-width: 1180px; margin: 0 auto;
  animation: reveal-up 1.2s var(--ease-out) 1s both;
}
.app-frame {
  background: rgba(10, 12, 31, 0.85);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow:
    0 40px 120px -30px rgba(0,0,0,0.7),
    0 0 100px rgba(124, 92, 255, 0.22),
    0 1px 0 rgba(255,255,255,0.06) inset;
  backdrop-filter: blur(20px);
  overflow: hidden;
  text-align: left;
}
.app-chrome {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.015);
}
.app-chrome .dot { width: 12px; height: 12px; border-radius: 50%; }
.app-chrome .dot.r { background: #ff5f57; }
.app-chrome .dot.y { background: #febc2e; }
.app-chrome .dot.g { background: #28c840; }
.app-title {
  margin-left: 14px; font-family: var(--mono); font-size: 12px;
  color: var(--ink-3); flex: 1;
}
.app-title #app-folder { color: var(--ink); opacity: 0.9; }
.app-title #app-count { color: var(--accent-2); font-weight: 500; }
.app-timer {
  margin-left: 12px;
  padding: 3px 10px;
  background: rgba(94, 234, 212, 0.12);
  border: 1px solid rgba(94, 234, 212, 0.3);
  border-radius: 6px;
  color: var(--accent-2); font-weight: 500;
}

.app-body {
  display: grid;
  grid-template-columns: 200px 1fr 280px;
  min-height: 420px;
}
@media (max-width: 900px) {
  .app-body { grid-template-columns: 160px 1fr; }
  .app-preview { display: none; }
}
@media (max-width: 640px) {
  .app-body { grid-template-columns: 1fr; }
  .app-side { display: none; }
}

.app-side {
  padding: 16px 12px;
  border-right: 1px solid var(--line);
  background: rgba(5, 6, 20, 0.4);
}
.side-section {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-4);
  padding: 10px 10px 6px;
}
.side-item {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 10px;
  font-size: 12px;
  color: var(--ink-2);
  border-radius: 6px;
  cursor: default;
}
.side-item::before {
  content: ''; width: 10px; height: 10px; border-radius: 2px;
  background: var(--accent); opacity: 0.45;
  flex-shrink: 0;
}
.side-item.active {
  background: rgba(124, 92, 255, 0.18);
  color: var(--ink);
}
.side-item.active::before { opacity: 1; box-shadow: 0 0 6px var(--accent); }

.app-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 3px;
  padding: 16px;
  max-height: 420px;
  overflow: hidden;
}
.app-cell {
  aspect-ratio: 3/2; border-radius: 3px;
  position: relative; overflow: hidden;
  transition: transform .3s var(--ease-out);
}
.app-cell.selected {
  outline: 2px solid var(--accent-2);
  outline-offset: 1px;
  box-shadow: 0 0 16px rgba(94, 234, 212, 0.6);
}
.app-cell.picked::after {
  content: 'G'; position: absolute; top: 3px; right: 3px;
  width: 14px; height: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-g); color: #fff;
  font-family: var(--display); font-style: italic; font-weight: 700; font-size: 9px;
  border-radius: 3px;
  box-shadow: 0 0 6px rgba(176,132,255,0.8);
}
.app-cell.stars-5::before {
  content: '★★★★★'; position: absolute; bottom: 2px; left: 3px;
  color: #FFD966; font-size: 7px; letter-spacing: -0.8px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}
.app-cell.stars-4::before {
  content: '★★★★'; position: absolute; bottom: 2px; left: 3px;
  color: #FFD966; font-size: 7px; letter-spacing: -0.8px;
}
.app-cell.stars-3::before {
  content: '★★★'; position: absolute; bottom: 2px; left: 3px;
  color: #FFD966; font-size: 7px; letter-spacing: -0.8px;
}

.app-preview {
  padding: 16px;
  border-left: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 10px;
}
.preview-img {
  aspect-ratio: 3/2; border-radius: 6px;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(255,210,180,0.5), transparent 50%),
    radial-gradient(ellipse at 65% 65%, rgba(124,92,255,0.4), transparent 50%),
    linear-gradient(135deg, #2a1e4a, #4a2e6a 50%, #7c5cff);
  position: relative; overflow: hidden;
}
.preview-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(transparent 60%, rgba(0,0,0,0.4));
}
.preview-meta {
  display: flex; flex-wrap: wrap; gap: 6px 10px;
  font-size: 11px;
  color: var(--ink-3);
  font-family: var(--mono);
}
.preview-meta .stars { color: #FFD966; font-size: 10px; letter-spacing: -0.5px; }
.preview-meta .g-badge {
  padding: 1px 6px;
  background: var(--accent-g); color: #fff;
  font-family: var(--display); font-style: italic; font-weight: 700; font-size: 10px;
  border-radius: 3px;
}
.preview-meta .meta-name { color: var(--ink-2); font-weight: 500; width: 100%; }
.preview-meta .meta-res { color: var(--ink-4); }

.app-status {
  display: flex; gap: 20px; align-items: center;
  padding: 10px 20px;
  border-top: 1px solid var(--line);
  background: rgba(5, 6, 20, 0.5);
  font-family: var(--mono); font-size: 11px;
  color: var(--ink-3);
  flex-wrap: wrap;
}
.status-item { display: inline-flex; align-items: center; gap: 6px; }
.status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent-2);
  animation: pulse-dot 2s infinite;
}
.status-dot.green { background: #28c840; box-shadow: 0 0 6px rgba(40, 200, 64, 0.6); }

/* ============================================================
   SECTION base
============================================================ */
.section { padding: 140px 28px; position: relative; }
.section-inner { max-width: 1180px; margin: 0 auto; position: relative; }
.section-head { margin-bottom: 72px; max-width: 760px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker {
  display: inline-block;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-2);
  padding: 5px 12px;
  background: rgba(94, 234, 212, 0.08);
  border: 1px solid rgba(94, 234, 212, 0.2);
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(34px, 4.6vw, 58px); line-height: 1.08;
  letter-spacing: -0.028em;
  color: var(--ink);
  /* 한글 어절 단위 줄바꿈 + 이탤릭 오버행 안전 패딩 */
  word-break: keep-all;
  overflow-wrap: break-word;
  padding: 0 0.08em;
}
.section-sub {
  font-size: 16px; color: var(--ink-2); margin-top: 18px;
  line-height: 1.7; max-width: 620px;
}
.section-sub.center { margin-left: auto; margin-right: auto; text-align: center; }

[data-reveal] {
  opacity: 0; transform: translateY(32px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
[data-reveal].in { opacity: 1; transform: translateY(0); }

/* ============================================================
   G-SELECT
============================================================ */
.section-gselect { background: rgba(10,12,31,0.4); }
.gs-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}
@media (max-width: 860px) { .gs-grid { grid-template-columns: 1fr; gap: 48px; } }
.gs-steps { margin-top: 32px; display: grid; gap: 12px; }
.gs-step {
  display: grid; grid-template-columns: 44px 1fr;
  gap: 16px; align-items: center;
  padding: 18px 22px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .3s, transform .3s var(--ease-out);
}
.gs-step:hover { border-color: var(--accent); transform: translateX(4px); }
.gs-step-num {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 700; font-size: 20px;
  color: var(--accent-g);
  background: rgba(124,92,255,0.15);
  border: 1px solid rgba(124,92,255,0.3);
  border-radius: 10px;
}
.gs-step-title { font-size: 15px; font-weight: 600; color: var(--ink); }
.gs-step-title kbd {
  font-family: var(--mono); font-size: 11px;
  padding: 2px 7px;
  background: rgba(94, 234, 212, 0.1);
  border: 1px solid rgba(94, 234, 212, 0.3);
  border-radius: 4px;
  margin: 0 2px;
  color: var(--accent-2);
}
.gs-step-desc { font-size: 13px; color: var(--ink-3); margin-top: 4px; }

.gs-mock {
  background: rgba(10,12,31,0.85);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5), 0 0 40px rgba(124,92,255,0.15);
}
.gs-mock-head {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 8px 14px;
  font-family: var(--mono); font-size: 11px; color: var(--ink-3);
}
.gs-mock-head .dot { width: 10px; height: 10px; border-radius: 50%; }
.gs-mock-head .dot.r { background: #ff5f57; }
.gs-mock-head .dot.y { background: #febc2e; }
.gs-mock-head .dot.g { background: #28c840; }
.gs-mock-head span:last-child { margin-left: 12px; }
.gs-tiles {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.gs-tile {
  position: relative;
  aspect-ratio: 3/2;
  border-radius: 8px; overflow: hidden;
  border: 2px solid transparent;
  transition: all .3s;
}
.gs-tile.picked {
  border-color: var(--accent-g);
  box-shadow: 0 0 20px rgba(176,132,255,0.5);
}
.gs-ph { position: absolute; inset: 0; }
.g-ph-1 { background: radial-gradient(ellipse at 30% 20%, #ffb8a0, transparent 60%), linear-gradient(135deg, #4a2e6a, #7c5cff); }
.g-ph-2 { background: radial-gradient(ellipse at 70% 30%, #ffd080, transparent 50%), linear-gradient(135deg, #2e4a8a, #5EEAD4); }
.g-ph-3 { background: radial-gradient(ellipse at 50% 60%, #b084ff, transparent 50%), linear-gradient(135deg, #1e2a5a, #4a3a80); }
.g-ph-4 { background: radial-gradient(ellipse at 30% 50%, #ff7ab6, transparent 55%), linear-gradient(135deg, #3a1e4a, #7c5cff); }
.g-ph-5 { background: radial-gradient(ellipse at 60% 40%, #80d8ff, transparent 50%), linear-gradient(135deg, #1a1a3a, #2a2a5a); }
.g-ph-6 { background: radial-gradient(ellipse at 40% 70%, #ffb060, transparent 50%), linear-gradient(135deg, #3a2e1a, #6a4a2e); }
.gs-meta {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 6px 8px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  display: flex; justify-content: space-between; align-items: center;
}
.gs-stars { color: #FFD966; font-size: 10px; letter-spacing: -0.5px; }
.gs-g {
  padding: 1px 5px;
  background: var(--accent-g); color: #fff;
  font-family: var(--display); font-style: italic; font-weight: 700; font-size: 10px;
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(176,132,255,0.8);
}
.gs-legend {
  margin-top: 14px; padding-top: 12px;
  border-top: 1px solid var(--line);
  display: flex; gap: 20px; justify-content: center;
  font-size: 11px; color: var(--ink-3);
  font-family: var(--mono);
}
.gs-legend span { display: inline-flex; align-items: center; gap: 6px; }
.dot-s { width: 7px; height: 7px; background: #FFD966; border-radius: 50%; }
.dot-g { width: 7px; height: 7px; background: var(--accent-g); border-radius: 50%; }

/* ============================================================
   SPEED
============================================================ */
.section-speed { background: rgba(10,12,31,0.3); }
.speed-bench {
  background: rgba(10,12,31,0.75);
  border: 1px solid var(--line);
  padding: 40px 44px;
  border-radius: var(--radius-xl);
  backdrop-filter: blur(16px);
  margin-bottom: 48px;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.6);
}
.bench-row {
  display: grid; grid-template-columns: 240px 1fr 80px;
  align-items: center; gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}
.bench-row:first-of-type { border-top: 0; }
.bench-app { font-weight: 500; color: var(--ink-2); }
.bench-row:first-of-type .bench-app { color: var(--ink); font-weight: 700; }
.bench-row:first-of-type .bench-app::before { content: '★ '; color: var(--accent-2); }
.bench-bar {
  height: 8px; background: rgba(255,255,255,0.05);
  border-radius: 100px; overflow: hidden;
}
.bench-fill {
  height: 100%; width: var(--w);
  transform-origin: left; transform: scaleX(0);
  border-radius: 100px;
}
.speed-bench.in .bench-fill { animation: bench-grow 1.3s var(--ease-out) forwards; }
@keyframes bench-grow { to { transform: scaleX(1); } }
.bench-fill.us { background: linear-gradient(90deg, var(--accent), var(--accent-2)); box-shadow: 0 0 12px rgba(124,92,255,0.6); }
.bench-fill.them { background: rgba(255,255,255,0.22); }
.bench-time { font-family: var(--mono); font-size: 14px; text-align: right; color: var(--ink-3); }
.bench-row:first-of-type .bench-time { color: var(--accent-2); font-weight: 600; }
.bench-time strong { color: var(--ink); font-weight: 600; }

.speed-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 72px;
}
.speed-card {
  padding: 34px 28px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: transform .4s var(--ease-out), border-color .4s var(--ease-out);
  text-align: center;
}
.speed-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 0 40px -10px rgba(124,92,255,0.35);
}
.speed-num {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(38px, 4.5vw, 48px); line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--accent-g) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.speed-label { font-size: 13px; color: var(--ink-2); font-weight: 500; }

/* Engineering tip box */
.tip-box {
  max-width: 760px; margin: 0 auto;
  padding: 32px 36px;
  background: linear-gradient(135deg, rgba(94,234,212,0.06), rgba(124,92,255,0.06));
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}
.tip-label {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 14px;
}
.tip-body {
  font-size: 16px; color: var(--ink);
  line-height: 1.6; margin-bottom: 24px;
}
.tip-bench { display: grid; gap: 10px; }
.tip-row {
  display: grid; grid-template-columns: 220px 1fr 60px;
  align-items: center; gap: 14px;
  font-size: 12px; font-family: var(--mono);
  color: var(--ink-2);
}
.tip-bar {
  height: 5px; background: rgba(255,255,255,0.05);
  border-radius: 100px; overflow: hidden;
}
.tip-fill {
  height: 100%; width: var(--w);
  transform-origin: left; transform: scaleX(0);
  border-radius: 100px;
}
.tip-box.in .tip-fill { animation: bench-grow 1s var(--ease-out) forwards; }
.tip-fill.us { background: linear-gradient(90deg, var(--accent-2), var(--accent)); }
.tip-fill.them { background: rgba(255,255,255,0.2); }
.tip-t { color: var(--ink-3); text-align: right; }

/* ============================================================
   FEATURES
============================================================ */
.section-features { background: rgba(10,12,31,0.3); }
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.feat {
  background: var(--bg-card);
  padding: 36px 30px;
  display: flex; flex-direction: column;
  transition: background .35s;
  position: relative;
}
.feat:hover { background: var(--bg-card-hover); }
.feat-ico {
  width: 46px; height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(124,92,255,0.2), rgba(94,234,212,0.1));
  border: 1px solid rgba(124,92,255,0.3);
  border-radius: 12px;
  font-size: 20px;
  margin-bottom: 18px;
  box-shadow: 0 0 20px rgba(124,92,255,0.2);
}
.feat-title {
  font-size: 18px; font-weight: 600;
  letter-spacing: -0.015em; color: var(--ink);
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.feat-new, .feat-soon {
  padding: 3px 8px; font-size: 10px; font-weight: 600;
  letter-spacing: 0.04em; border-radius: 4px;
  font-family: var(--mono);
}
.feat-new { background: linear-gradient(135deg, var(--accent), var(--accent-g)); color: #fff; }
.feat-soon { background: rgba(94, 234, 212, 0.14); color: var(--accent-2); border: 1px solid rgba(94,234,212,0.3); }
.feat-desc { font-size: 14px; color: var(--ink-2); line-height: 1.6; flex: 1; }

/* ============================================================
   CLIENT
============================================================ */
.section-client { background: rgba(10,12,31,0.4); }
.cv-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}
@media (max-width: 860px) { .cv-grid { grid-template-columns: 1fr; gap: 48px; } }
.cv-list {
  list-style: none; margin-top: 28px;
  display: grid; gap: 14px;
}
.cv-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15px; color: var(--ink-2);
  line-height: 1.6;
}
.cv-dot {
  flex-shrink: 0;
  width: 8px; height: 8px; margin-top: 9px;
  background: var(--accent-2);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-2);
}

.cv-phone {
  width: 320px; margin: 0 auto;
  background: rgba(10,12,31,0.9);
  border: 1px solid var(--line-2);
  border-radius: 32px;
  padding: 14px 14px 24px;
  backdrop-filter: blur(20px);
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.7), 0 0 50px rgba(94,234,212,0.12);
}
.cv-screen {
  background: var(--bg);
  border-radius: 24px;
  padding: 18px;
  border: 1px solid var(--line);
}
.cv-head {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 14px; border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}
.cv-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-3), var(--accent));
}
.cv-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.cv-date { font-size: 11px; color: var(--ink-3); margin-top: 1px; font-family: var(--mono); }
.cv-photo {
  position: relative;
  aspect-ratio: 3/2;
  border-radius: 12px; overflow: hidden;
  margin-bottom: 12px;
}
.cv-ph {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 40% 30%, rgba(255,200,180,0.4), transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(94,234,212,0.2), transparent 50%),
    linear-gradient(135deg, #3a2a5a, #6a4a90);
}
.cv-stars {
  position: absolute; top: 10px; right: 10px;
  padding: 4px 8px;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(8px);
  border-radius: 6px;
  color: #FFD966; font-size: 11px;
}
.cv-stars.anim { animation: stars-sparkle 2.5s ease-in-out infinite; }
@keyframes stars-sparkle {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50%      { transform: scale(1.08); filter: brightness(1.3); }
}
.cv-comment {
  position: absolute; bottom: 10px; left: 10px;
  padding: 6px 10px;
  background: rgba(255, 122, 182, 0.92); color: #fff;
  border-radius: 12px 12px 12px 4px;
  font-size: 11px; font-weight: 500;
}
.cv-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; }
.ct {
  aspect-ratio: 1; border-radius: 4px;
  background: linear-gradient(135deg, #2a2a4a, #4a3a6a);
  border: 1.5px solid transparent;
}
.ct.picked {
  border-color: var(--accent-g);
  box-shadow: 0 0 8px rgba(176,132,255,0.6);
}

/* ============================================================
   CRAFT
============================================================ */
.section-craft { background: rgba(10,12,31,0.4); }
.craft-grid {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 72px;
  align-items: start;
}
@media (max-width: 860px) { .craft-grid { grid-template-columns: 1fr; gap: 48px; } }
.craft-lead {
  font-size: 16.5px; line-height: 1.75; color: var(--ink-2);
  margin-top: 22px; max-width: 560px;
}
.craft-lead em { font-style: italic; color: var(--ink); font-weight: 500; }
.craft-quote-line { margin-bottom: 10px; }

/* 아하 모먼트 인용구 — 스토리의 전환점 */
.craft-aha {
  position: relative;
  margin: 14px 0 26px;
  padding: 22px 28px 22px 32px;
  max-width: 560px;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.45;
  letter-spacing: -0.015em;
  color: var(--ink);
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.08) 0%, rgba(94, 234, 212, 0.04) 100%);
  border-left: 3px solid var(--accent-2);
  border-radius: 4px 14px 14px 4px;
}
.craft-aha::before {
  content: '';
  position: absolute;
  left: -3px; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 12px rgba(94, 234, 212, 0.5);
}
.craft-list {
  list-style: none; margin-top: 32px;
  display: grid; gap: 12px;
}
.craft-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14.5px; color: var(--ink-2);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.craft-list li:last-child { border-bottom: 0; }
.craft-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  font-size: 12px; color: var(--accent-2);
  background: rgba(94,234,212,0.12);
  border: 1px solid rgba(94,234,212,0.3);
  border-radius: 50%;
  flex-shrink: 0;
}

.craft-aside { position: sticky; top: 100px; }
.craft-quote {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  backdrop-filter: blur(12px);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5), 0 0 40px rgba(124,92,255,0.12);
}
.quote-mark { color: var(--accent); opacity: 0.5; margin-bottom: 8px; }
.craft-quote p {
  font-family: var(--display); font-weight: 400;
  font-size: 20px; line-height: 1.5; letter-spacing: -0.015em;
  color: var(--ink);
}
.quote-sig {
  display: flex; align-items: center; gap: 14px;
  margin-top: 28px; padding-top: 22px;
  border-top: 1px solid var(--line);
}
.sig-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #B084FF, #5CC2FF 50%, #2E1F66 100%);
  box-shadow: 0 4px 16px rgba(124,92,255,0.4);
}
.sig-name { font-size: 15px; font-weight: 600; color: var(--ink); }
.sig-role { font-size: 12px; color: var(--ink-3); margin-top: 2px; font-family: var(--mono); }

/* ============================================================
   PRICING
============================================================ */
.section-pricing { background: rgba(10,12,31,0.3); }
.price-card {
  max-width: 520px; margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--accent);
  color: var(--ink);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  box-shadow: 0 0 60px rgba(124,92,255,0.25), 0 30px 80px -20px rgba(0,0,0,0.6);
  position: relative; overflow: hidden;
  backdrop-filter: blur(12px);
}
.price-orb {
  position: absolute; top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(124,92,255,0.25), transparent 60%);
  border-radius: 50%;
}
.price-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 32px; position: relative;
  flex-wrap: wrap; gap: 16px;
}
.price-name {
  font-family: var(--display); font-size: 22px; font-weight: 500;
  letter-spacing: -0.015em;
}
.price-amount { display: inline-flex; align-items: baseline; gap: 4px; }
.price-num {
  font-family: var(--display); font-size: 46px; font-weight: 500;
  background: linear-gradient(135deg, var(--accent-g), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: -0.03em;
}
.price-unit { font-size: 13px; color: var(--ink-3); }
.price-list {
  list-style: none; display: grid; gap: 14px;
  margin-bottom: 32px; position: relative;
}
.price-list li {
  font-size: 14.5px; color: var(--ink-2);
  padding-left: 26px; position: relative; line-height: 1.55;
}
.price-list li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--accent-2); font-weight: 700; font-size: 16px;
}
.price-note {
  margin-top: 18px; font-size: 12px; text-align: center;
  color: var(--ink-3); position: relative;
}

/* ============================================================
   DOWNLOAD
============================================================ */
.section-download {
  background: radial-gradient(ellipse at center, rgba(124,92,255,0.15), transparent 60%);
  padding: 140px 28px;
}
.dl-wrap { text-align: center; max-width: 720px; margin: 0 auto; }
.dl-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  font-size: 12px; font-weight: 500;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 100px;
  margin-bottom: 28px;
  color: var(--ink-2);
  backdrop-filter: blur(10px);
}
.dl-title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(34px, 5vw, 56px); line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink); margin-bottom: 40px;
}
.dl-cta-row {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap;
}
.dl-meta { margin-top: 22px; font-size: 13px; color: var(--ink-3); }
.dl-links {
  margin-top: 16px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 13px; color: var(--ink-3);
  flex-wrap: wrap;
}
.dl-links a { padding: 4px 8px; border-radius: 4px; transition: all .2s; }
.dl-links a:hover { color: var(--accent-2); background: rgba(94,234,212,0.08); }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: rgba(5, 6, 20, 0.92);
  color: var(--ink-3);
  padding: 72px 28px 36px;
  border-top: 1px solid var(--line);
  backdrop-filter: blur(20px);
}
.footer-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.3fr 2fr; gap: 64px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 720px) { .footer-inner { grid-template-columns: 1fr; gap: 32px; } }
.footer-logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-size: 22px; font-weight: 500;
  color: var(--ink); letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.footer-tag {
  font-size: 13px; color: var(--ink-3);
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 320px;
}
.footer-social {
  display: flex; gap: 10px;
}
.footer-social a {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(132, 140, 200, 0.08);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink-2);
  transition: all .3s var(--ease-out);
}
.footer-social a:hover {
  color: var(--accent-2);
  border-color: var(--accent-2);
  background: rgba(94,234,212,0.08);
  transform: translateY(-2px);
}
.footer-cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.footer-head {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); font-weight: 600;
  margin-bottom: 16px;
  font-family: var(--mono);
}
.footer-col a {
  display: block; padding: 8px 0;
  font-size: 13px; color: var(--ink-3);
  transition: color .2s;
}
.footer-col a:hover { color: var(--accent-2); }
.footer-bot {
  max-width: 1180px; margin: 0 auto; padding-top: 28px;
  font-size: 12px; color: var(--ink-3);
  font-family: var(--mono); text-align: center;
}

/* ============================================================
   Mobile polish
============================================================ */
@media (max-width: 640px) {
  .hero { padding: 100px 20px 60px; min-height: auto; }
  .section { padding: 80px 20px; }
  .hero-big-num { top: -10px; }
  .speed-bench, .tip-box { padding: 28px 24px; }
  .bench-row, .tip-row { grid-template-columns: 140px 1fr 60px; gap: 12px; font-size: 12px; }
  .craft-quote { padding: 28px 24px; }
  .craft-quote p { font-size: 17px; }
  .cv-phone { width: 100%; max-width: 320px; }
  .price-card { padding: 36px 28px; }
  .app-title { font-size: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ====================================================
   v9.0.2 — What's New 섹션
   ==================================================== */

.section-whatsnew {
  padding: 120px 24px 100px;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(99, 102, 241, 0.08), transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(34, 197, 94, 0.06), transparent 60%),
    var(--color-bg);
  position: relative;
  overflow: hidden;
}
.section-whatsnew::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.whatsnew-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
  position: relative;
  z-index: 1;
}
.whatsnew-head .section-sub {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}

.ver-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  margin-right: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #6366f1, #22c55e);
  color: white;
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(99, 102, 241, 0.35);
}

.whatsnew-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.wn-card {
  position: relative;
  padding: 32px 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  overflow: hidden;
}
.wn-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.45), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.wn-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.25);
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}
.wn-card:hover::before { opacity: 1; }

.wn-hero {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(34, 197, 94, 0.04) 100%);
  border-color: rgba(99, 102, 241, 0.18);
}

.wn-tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(99, 102, 241, 0.95);
  background: rgba(99, 102, 241, 0.12);
  border-radius: 6px;
  margin-bottom: 18px;
}

.wn-title {
  font-family: 'Pretendard', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.95);
}
.wn-hero .wn-title { font-size: 28px; }

.wn-body {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}
.wn-body strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

.wn-meta {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.4);
}

.wn-stat {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.wn-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 24px;
  font-weight: 700;
  color: rgba(34, 197, 94, 0.95);
  letter-spacing: -0.02em;
}
.wn-cap {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 1024px) {
  .whatsnew-grid { grid-template-columns: repeat(2, 1fr); }
  .wn-hero { grid-column: span 2; }
}

@media (max-width: 640px) {
  .section-whatsnew { padding: 80px 20px 60px; }
  .whatsnew-grid { grid-template-columns: 1fr; gap: 16px; }
  .wn-hero { grid-column: span 1; }
  .wn-card { padding: 24px 22px; }
  .wn-title { font-size: 19px; }
  .wn-hero .wn-title { font-size: 22px; }
  .whatsnew-head { margin-bottom: 40px; }
}

/* nav-new — v9.0.2 새기능 강조 */
.nav-new {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  color: rgba(99, 102, 241, 0.95) !important;
  font-weight: 600;
}
.nav-dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.8);
  animation: nav-dot-pulse 2s infinite ease-out;
}
@keyframes nav-dot-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* ============================================================
   v9.0.2 — Pricing redesign (Simple / Pro 2-tier + Annual)
============================================================ */

.section-pricing .section-head { margin-bottom: 56px; }

/* 월/연 토글 */
.price-toggle {
  display: inline-flex;
  margin-top: 28px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  gap: 4px;
}
.pt-btn {
  appearance: none;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: -0.01em;
}
.pt-btn.active {
  background: rgba(99, 102, 241, 0.18);
  color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.3) inset;
}
.pt-save {
  margin-left: 6px;
  padding: 2px 7px;
  font-size: 10px;
  font-weight: 700;
  background: linear-gradient(135deg, #22c55e, #14b8a6);
  color: white;
  border-radius: 4px;
}

/* 2-카드 그리드 */
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 38px 34px 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.price-card:hover {
  transform: translateY(-3px);
}
.price-simple:hover { border-color: rgba(255, 255, 255, 0.14); }

.price-pro {
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.10) 0%, rgba(34, 197, 94, 0.04) 100%);
  border-color: rgba(99, 102, 241, 0.30);
  box-shadow: 0 20px 48px -16px rgba(99, 102, 241, 0.25);
}
.price-pro:hover {
  border-color: rgba(99, 102, 241, 0.50);
  box-shadow: 0 26px 60px -14px rgba(99, 102, 241, 0.40);
}

/* Pro orb 발광 */
.price-orb {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.45) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.price-ribbon {
  position: absolute;
  top: 18px;
  right: 22px;
  padding: 5px 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, #6366f1, #22c55e);
  color: white;
  border-radius: 6px;
  box-shadow: 0 6px 18px -4px rgba(99, 102, 241, 0.6);
  z-index: 2;
}

.price-head {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.price-tag {
  display: inline-block;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}
.price-tag.pro {
  background: linear-gradient(135deg, #818cf8, #4ade80);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  font-size: 16px;
}
.price-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 18px;
  letter-spacing: -0.005em;
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.price-num {
  font-family: var(--display);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.96);
}
.price-unit {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
}
.price-yearly-note {
  margin-top: 6px;
  font-size: 12px;
  color: rgba(34, 197, 94, 0.85);
  font-weight: 500;
}

.price-list {
  list-style: none;
  margin: 0 0 24px 0;
  padding: 0;
  flex: 1;
  position: relative;
  z-index: 1;
}
.price-list li {
  position: relative;
  padding: 9px 0 9px 22px;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.price-list li:last-child { border-bottom: none; }
.price-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 9px;
  color: rgba(34, 197, 94, 0.8);
  font-weight: 700;
  font-size: 12px;
}
.price-list li.pl-section {
  font-size: 12px;
  text-transform: none;
  color: rgba(255, 255, 255, 0.5);
  padding-left: 0;
  margin-bottom: 4px;
  border-bottom: none;
}
.price-list li.pl-section::before { content: ""; }
.price-list li.pl-pro::before { content: ""; padding-right: 0; }
.price-list li.pl-pro {
  padding-left: 0;
}
.price-list strong {
  color: rgba(255, 255, 255, 0.96);
  font-weight: 600;
}

.btn-block { width: 100%; }

.price-note {
  margin-top: 14px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  letter-spacing: -0.005em;
}

.price-fineprint {
  margin-top: 40px;
  font-size: 12px;
  line-height: 1.7;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
  .price-grid { grid-template-columns: 1fr; gap: 16px; }
  .price-card { padding: 28px 24px 26px; }
  .price-num { font-size: 36px; }
  .price-orb { width: 130px; height: 130px; top: -28px; right: -28px; }

  /* 모바일에서 H2 가 다크 surface 에 묻히지 않도록 weight 보강 */
  .section-title { font-weight: 600; letter-spacing: -0.02em; }
}
