/* ==========================================================================
   디지털 번아웃 테스트 — styles.css  (리디자인: Spotify Light)
   교체 방식: 이 파일만 덮어쓰면 전면 리스킨. id·class·onclick 100% 유지.

   [디자인 시스템]  Mobile Music UI Kit (Spotify) — 라이트 모드로 반전
   · 색   화이트 캔버스 / #F5F5F5 서피스 / #121212 잉크 / 그린 #1ED760 단일 액센트
          그린은 "행동·배지"에만. 배경 워시·그라디언트·텍스트로 쓰지 않음(DS 원칙).
          유형별 색은 캐릭터 커버(=앨범아트)에만 남김 — 화면의 색은 아트에서만 나온다.
   · 타이포 Pretendard 단일(본문 400/500 · 헤드라인 700/800) + Nunito Sans(숫자·영문 eyebrow)
          트래킹은 항상 음수, 크기가 커질수록 더 조인다(-0.01em → -0.04em).
   · 리듬  4단계 서피스만 사용 — 섹션마다 다르게, 중요한 것만 카드
          L0 페이지(흰 배경, 박스 없음) · L1 조용한 블록(#F5F5F5) ·
          L2 카드(흰색 + 1px 헤어라인) · L3 다크 밴드(#121212) · 그린은 액션 전용
   · 모션  transform/opacity만 · UI 300ms 이하 · 터치 hover 게이트 · reduced-motion 대응
   ========================================================================== */

:root {
  /* ── 팔레트 (Spotify 퍼블리시 5색 + 라이트 모드 대응값) ── */
  --accent: #1ED760;          /* 액션·배지 전용 */
  --accent-press: #1DB954;
  --accent-deep: #0F7A34;     /* 흰 배경 위 '그린 텍스트'가 꼭 필요할 때만 (AA) */
  --accent-soft: #E7F8EE;     /* 그린 8% 틴트 */
  --bg: #FFFFFF;
  --bg-soft: #F5F5F5;         /* L1 서피스 */
  --bg-soft-2: #EBEBEB;
  --card: #FFFFFF;
  --line: #E8E8E8;
  --line-strong: #D9D9D9;
  --text: #121212;
  --text-soft: #6A6A6A;
  --text-light: #949494;
  --dark: #121212;            /* L3 다크 밴드 */
  --dark-mid: #282828;
  --dark-line: rgba(255,255,255,0.14);
  --on-dark: #FFFFFF;
  --on-dark-soft: #B3B3B3;
  --kakao: #FEE500;           /* 플랫폼 브랜드색 — 유일한 예외 */
  --yellow: #FEE500;
  --shadow: 0 4px 4px rgba(0,0,0,0.06);        /* DS 단일 섀도우 레시피, 라이트 강도 */
  --shadow-strong: 0 4px 16px rgba(0,0,0,0.14);
  --r-1: 4px; --r-2: 8px; --r-3: 12px; --r-pill: 500px;
  --font-core: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-numeric: "Nunito Sans", "Pretendard Variable", Pretendard, sans-serif;
  --ease-out-strong: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out-strong: cubic-bezier(0.77, 0, 0.175, 1);

  /* ── 유형 커버 = 앨범아트. 8개 색상을 같은 깊이(L≈32%)로 맞춰 '한 세트'로 읽히게 ── */
  --t-ITA: linear-gradient(160deg, #B3402C 0%, #7A2115 100%);
  --t-ITC: linear-gradient(160deg, #A83A5E 0%, #6D2340 100%);
  --t-ISA: linear-gradient(160deg, #96651C 0%, #654010 100%);
  --t-ISC: linear-gradient(160deg, #7A3E96 0%, #4C2463 100%);
  --t-PTA: linear-gradient(160deg, #2F6B45 0%, #17402C 100%);
  --t-PTC: linear-gradient(160deg, #93552F 0%, #5F331B 100%);
  --t-PSA: linear-gradient(160deg, #2C5A8C 0%, #15365B 100%);
  --t-PSC: linear-gradient(160deg, #4E5A62 0%, #2E373D 100%);
  /* 유형 단색(텍스트용) — 색 산만함 제거: 텍스트는 잉크로 통일하고 색은 커버에만 둔다 */
  --tc-ITA: #121212; --tc-ITC: #121212; --tc-ISA: #121212; --tc-ISC: #121212;
  --tc-PTA: #121212; --tc-PTC: #121212; --tc-PSA: #121212; --tc-PSC: #121212;
  /* 위험도 Lv.0→5 : 그린(건강) → 뉴트럴 → 앨범 샘플 컬러(플럼·와인) */
  --risk-0: #1DB954; --risk-1: #3E9E63; --risk-2: #7A7A7A;
  --risk-3: #7A3E96; --risk-4: #8C2F42; --risk-5: #5A1A26;
}

/* ── 베이스 ── */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-core); background: var(--bg); color: var(--text); min-height: 100vh; padding: 16px; line-height: 1.55; letter-spacing: -0.011em; word-break: keep-all; text-wrap: pretty; -webkit-font-smoothing: antialiased; }
.container { max-width: 480px; margin: 0 auto; padding-bottom: 40px; }
a { color: var(--accent-deep); text-decoration: none; }
a:hover { color: var(--text); text-decoration: underline; text-underline-offset: 2px; }
b, strong { font-weight: 700; color: inherit; }
button { font-family: inherit; }
.serif, .signature-aside, .ai-insight-quote, .ch1-result-quote, .toc-hero-sub, .harsh-signature { font-family: var(--font-display); font-style: normal; }

/* eyebrow — 영문 대문자 라틴 스케일 */
.hero-eyebrow, .about-eyebrow, .types-preview-eyebrow, .section-label, .insta-eyebrow, .st-eyebrow, .compare-eyebrow, .rank-eyebrow, .map-eyebrow, .rs-eyebrow, .footer-share-eyebrow, .insta-minimal-eyebrow, .rx-bridge-eyebrow, .rx-photo-eyebrow, .rx-divider-eyebrow, .rx-cta-eyebrow, .harsh-eyebrow, .miscon-eyebrow, .warn-eyebrow, .ai-optional-eyebrow, .ai-insight-eyebrow, .ai-q-eyebrow, .gacha-eyebrow, .lc-eyebrow, .ch1-eyebrow, .eye-game-eyebrow, .eye-prompt-eyebrow, .toc-hero-eyebrow, .toc-block-eyebrow, .share-friend-eyebrow, .reveal-eyebrow, .charm-label, .trust-meta-title, .signature-list-title, .st-cat-title, .st-timeline-title, .st-example-title, .st-yearly-label, .trust-footer-title, .comments-title, .rx-info-title { letter-spacing: 0.14em; text-transform: uppercase; }
.comments-title, .rx-info-title, .charm-label, .signature-list-title, .trust-meta-title, .st-cat-title, .st-timeline-title, .st-example-title, .st-yearly-label, .trust-footer-title { text-transform: none; letter-spacing: 0.08em; }

/* ==========================================================================
   1. 랜딩 — 히어로
   ========================================================================== */
.hero-og { position: relative; padding: 4px 0 0; text-align: center; }
.hero-eyebrow { font-family: var(--font-numeric); font-size: 10.5px; font-weight: 800; color: var(--text-light); margin-bottom: 18px; }
.hero-bubble { display: inline-block; position: relative; background: var(--bg-soft); border-radius: var(--r-3); padding: 10px 16px; font-size: 14px; font-weight: 600; color: var(--text-soft); letter-spacing: -0.02em; margin-bottom: 18px; }
.hero-bubble::after { content: ""; position: absolute; left: 24px; bottom: -7px; width: 14px; height: 14px; background: var(--bg-soft); clip-path: polygon(0 0, 100% 0, 26% 100%); }
.hero-bubble .hb-inner { display: inline-block; transition: opacity 0.3s ease; }
.hero-bubble.swapping .hb-inner { opacity: 0; }
.hero-title { font-family: var(--font-display); font-size: 38px; font-weight: 800; line-height: 1.2; letter-spacing: -0.035em; margin-bottom: 12px; color: var(--text); }
.hero-title .hero-type-name { display: inline-block; transition: opacity 0.3s ease, transform 0.3s ease; background-image: linear-gradient(to top, rgba(30,215,96,0.38) 0.06em, rgba(30,215,96,0.38) 0.3em, transparent 0.3em); }
.hero-title.swapping .hero-type-name { opacity: 0; transform: translateY(6px); }
.hero-sub { font-size: 13.5px; color: var(--text-soft); margin-bottom: 28px; }
.hero-char-stage { position: relative; width: 232px; margin: 0 auto 20px; }
.hero-char-card { position: relative; width: 100%; aspect-ratio: 1; border-radius: var(--r-2); overflow: hidden; box-shadow: 0 12px 28px rgba(0,0,0,0.22); cursor: pointer; animation: hero-float 3.6s ease-in-out infinite; transition: opacity 0.3s ease; }
.hero-char-card.swapping { opacity: 0; }
.hero-char-card .char-illustration { position: absolute; inset: 0 0 12% 0; display: flex; align-items: center; justify-content: center; }
.hero-char-card .char-illustration svg { width: 86%; height: 86%; }
.hero-char-label { position: absolute; left: 0; right: 0; bottom: 0; padding: 34px 8px 14px; background: linear-gradient(180deg, transparent, rgba(0,0,0,0.62)); color: #fff; font-size: 15px; font-weight: 700; letter-spacing: -0.03em; text-align: center; }
@keyframes hero-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.hero-free-pill { position: absolute; top: -10px; right: -8px; background: var(--accent); color: #121212; font-size: 11px; font-weight: 800; padding: 6px 12px; border-radius: var(--r-pill); z-index: 3; letter-spacing: 0; }
.hero-dots { display: flex; gap: 5px; justify-content: center; margin-bottom: 22px; }
.hero-dots span { width: 6px; height: 6px; border-radius: 50%; background: var(--bg-soft-2); }
.hero-dots span.on { background: var(--accent); width: 18px; border-radius: var(--r-pill); }
.live-counter { display: inline-flex; align-items: center; gap: 8px; background: var(--bg-soft); padding: 7px 14px; border-radius: var(--r-pill); font-size: 12.5px; font-weight: 700; margin-bottom: 16px; }
.live-dot { width: 7px; height: 7px; background: var(--accent); border-radius: 50%; animation: pulse 1.4s infinite; }
@keyframes pulse { 0%,100% {opacity:1;} 50% {opacity:0.35;} }
.brand-tag { font-family: var(--font-numeric); font-size: 11px; font-weight: 800; color: var(--text-light); letter-spacing: 0.16em; margin-bottom: 12px; text-align: center; }
.h1-main { font-family: var(--font-display); font-size: 32px; font-weight: 800; line-height: 1.24; margin-bottom: 14px; letter-spacing: -0.035em; text-align: center; }
.h1-main .strike { color: var(--text-soft); }
.landing-sub { color: var(--text-soft); font-size: 15px; line-height: 1.65; margin-bottom: 20px; text-align: center; }
.landing-sub b { color: var(--text); }
.btn-hero-mini { background: var(--accent); color: #121212; border: none; padding: 10px 20px; border-radius: var(--r-pill); font-size: 13px; font-weight: 700; cursor: pointer; }
.trust-strip { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.trust-pill { background: transparent; border: 1px solid var(--line); padding: 6px 12px; border-radius: var(--r-pill); font-size: 11px; font-weight: 700; color: var(--text-soft); white-space: nowrap; }
.trust-pill b { color: var(--text); }
.last-result-bar { display: flex; align-items: center; justify-content: center; gap: 6px; background: var(--bg-soft); border-radius: var(--r-3); padding: 12px 16px; margin: 0 auto 24px; max-width: 340px; font-size: 13px; color: var(--text-soft); cursor: pointer; transition: transform 160ms var(--ease-out-strong); }
.last-result-bar:active { transform: scale(0.97); }
.last-result-bar b { color: var(--text); }

/* ── L1 블록: 검사 설명 ── */
.about-card { background: var(--bg-soft); border-radius: var(--r-3); padding: 22px 20px 18px; margin-bottom: 28px; }
.about-eyebrow { font-family: var(--font-numeric); font-size: 10.5px; font-weight: 800; color: var(--text-light); margin-bottom: 8px; }
.about-title { font-size: 19px; font-weight: 700; letter-spacing: -0.032em; margin-bottom: 14px; }
.about-row { display: flex; align-items: flex-start; gap: 12px; padding: 7px 0; }
.about-emoji { font-size: 16px; flex-shrink: 0; line-height: 1.5; opacity: 0.9; }
.about-text { font-size: 13.5px; line-height: 1.7; color: var(--text-soft); }
.about-text b { color: var(--text); }

/* ── 8유형 그리드: 박스 없이 페이지에 직접 (색은 커버에서만) ── */
.types-preview { background: transparent; padding: 0; border: none; box-shadow: none; margin-bottom: 30px; position: relative; }
.types-preview::before { display: none; }
.types-preview-eyebrow { font-family: var(--font-numeric); font-size: 10.5px; font-weight: 800; color: var(--text-light); margin-bottom: 8px; }
.types-preview-title { font-family: var(--font-display); font-size: 26px; font-weight: 800; letter-spacing: -0.038em; line-height: 1.28; margin-bottom: 4px; }
.types-preview-title .hl { -webkit-text-fill-color: currentColor; color: var(--text); background: linear-gradient(to top, rgba(30,215,96,0.38) 0.06em, rgba(30,215,96,0.38) 0.3em, transparent 0.3em); }
.trust-meta-card { margin-top: 18px; padding: 14px 16px; background: var(--bg-soft); border-radius: var(--r-2); border-left: 2px solid var(--accent); }
.trust-meta-title { font-size: 10.5px; font-weight: 800; color: var(--text-light); margin-bottom: 6px; }
.trust-meta-body { font-size: 12px; line-height: 1.7; color: var(--text-soft); }
.trust-meta-body b { color: var(--text); }
.types-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.type-char { aspect-ratio: 1; border-radius: var(--r-1); position: relative; overflow: hidden; cursor: pointer; color: #fff; }
.type-char.t-ITA, .type-char-big.t-ITA, .match-char-wrap.t-ITA { background: var(--t-ITA); }
.type-char.t-ITC, .type-char-big.t-ITC, .match-char-wrap.t-ITC { background: var(--t-ITC); }
.type-char.t-ISA, .type-char-big.t-ISA, .match-char-wrap.t-ISA { background: var(--t-ISA); }
.type-char.t-ISC, .type-char-big.t-ISC, .match-char-wrap.t-ISC { background: var(--t-ISC); }
.type-char.t-PTA, .type-char-big.t-PTA, .match-char-wrap.t-PTA { background: var(--t-PTA); }
.type-char.t-PTC, .type-char-big.t-PTC, .match-char-wrap.t-PTC { background: var(--t-PTC); }
.type-char.t-PSA, .type-char-big.t-PSA, .match-char-wrap.t-PSA { background: var(--t-PSA); }
.type-char.t-PSC, .type-char-big.t-PSC, .match-char-wrap.t-PSC { background: var(--t-PSC); }
.type-char .char-illustration { position: absolute; inset: 0 0 16% 0; display: flex; align-items: center; justify-content: center; }
.type-char .char-illustration svg { width: 94%; height: 94%; }
.type-char .char-name { position: absolute; left: 0; right: 0; bottom: 0; padding: 16px 3px 6px; text-align: center; font-size: 10px; font-weight: 700; letter-spacing: -0.03em; background: linear-gradient(180deg, transparent, rgba(0,0,0,0.6) 70%); line-height: 1.2; color: #fff; }
.type-char .char-name-q { display: block; font-size: 20px; font-weight: 800; line-height: 1; opacity: 0.9; }
.type-char .char-name-real { display: none; font-size: 10px; line-height: 1.2; }
.type-char:hover .char-name-q, .type-char:active .char-name-q { display: none; }
.type-char:hover .char-name-real, .type-char:active .char-name-real { display: block; }
.type-char-big { aspect-ratio: 16/10; max-width: 100%; border-radius: var(--r-2); position: relative; overflow: hidden; color: #fff; margin-bottom: 20px; }
.type-char-big .char-illustration { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.type-char-big .char-illustration svg { width: 58%; max-width: 280px; height: 92%; max-height: 260px; }
.type-char-big .char-code-pill { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); background: rgba(0,0,0,0.35); padding: 5px 13px; border-radius: var(--r-pill); font-family: var(--font-numeric); font-size: 10px; font-weight: 800; letter-spacing: 0.16em; }
.big-nickname-overlay { position: absolute; bottom: 12px; left: 0; right: 0; text-align: center; z-index: 2; }
.big-nickname-overlay .name { font-size: 14px; font-weight: 700; color: #fff; letter-spacing: -0.03em; }
.big-nickname-overlay .code { display: inline-block; margin-top: 5px; background: rgba(0,0,0,0.35); padding: 2px 9px; border-radius: var(--r-pill); font-family: var(--font-numeric); font-size: 9px; font-weight: 800; letter-spacing: 0.16em; color: #fff; }

/* ── 훅 리스트: 카드 대신 헤어라인 행 ── */
.hook-card { background: transparent; padding: 0; margin-bottom: 30px; }
.hook-title-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.hook-title { font-size: 17px; font-weight: 700; letter-spacing: -0.032em; color: var(--text); }
.hook-title-pill { font-size: 10px; font-weight: 800; color: var(--text-light); background: var(--bg-soft); padding: 4px 10px; border-radius: var(--r-pill); letter-spacing: 0.08em; }
.hook-grid { display: flex; flex-direction: column; gap: 0; }
.hook-item { background: transparent; padding: 15px 2px; border-radius: 0; border-bottom: 1px solid var(--line); box-shadow: none; display: flex; align-items: center; gap: 14px; font-size: 14.5px; line-height: 1.55; font-weight: 500; color: var(--text); position: relative; }
.hook-item:first-child { border-top: 1px solid var(--line); }
.hook-item-emoji { font-size: 17px; flex-shrink: 0; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; background: var(--bg-soft); border-radius: 50%; }
.hook-item-text { flex: 1; }
.hook-item-text b { color: var(--text); font-weight: 700; }
.hook-item-check { font-size: 11px; font-weight: 700; color: var(--text-light); flex-shrink: 0; }

/* ── 댓글: L1 블록 ── */
.comments-card { background: var(--bg-soft); padding: 20px 18px; border-radius: var(--r-3); box-shadow: none; margin-bottom: 28px; }
.comments-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.comments-title { font-size: 12px; font-weight: 800; color: var(--text-light); }
.comments-count { font-family: var(--font-numeric); font-size: 12px; color: var(--text-light); font-weight: 700; }
.comment-list { display: flex; flex-direction: column; gap: 2px; max-height: 380px; overflow-y: auto; }
.comment { padding: 14px 0; background: transparent; border-radius: 0; border-bottom: 1px solid var(--line-strong); }
.comment:last-child { border-bottom: none; }
.comment-meta { display: flex; align-items: center; gap: 7px; margin-bottom: 7px; flex-wrap: wrap; }
.comment-name { font-size: 12.5px; font-weight: 700; }
.comment-code { font-size: 9.5px; font-weight: 800; color: #121212; background: var(--accent); padding: 2px 8px; border-radius: var(--r-pill); letter-spacing: 0; }
.comment-time { font-family: var(--font-numeric); font-size: 11px; color: var(--text-light); }
.comment-body { font-size: 14px; line-height: 1.65; color: var(--text); }
.comment-like { font-family: var(--font-numeric); font-size: 11px; font-weight: 700; color: var(--text-light); margin-top: 8px; cursor: pointer; display: inline-flex; align-items: center; gap: 5px; }

/* ── 버튼 (그린은 여기서만) ── */
.btn-primary { background: var(--accent); color: #121212; border: none; padding: 17px 32px; font-size: 16px; font-weight: 800; border-radius: var(--r-pill); width: 100%; cursor: pointer; letter-spacing: -0.02em; display: inline-flex; align-items: center; justify-content: center; box-shadow: none; }
.btn-primary:hover { background: var(--accent-press); }
.btn-soft { background: var(--bg-soft); color: var(--text); border: none; padding: 15px 24px; font-size: 14px; font-weight: 700; border-radius: var(--r-pill); width: 100%; cursor: pointer; }
.btn-soft:hover { background: var(--bg-soft-2); }
.btn-secondary { background: transparent; color: var(--text); border: 1px solid var(--line-strong); padding: 15px 24px; font-size: 14px; font-weight: 700; border-radius: var(--r-pill); cursor: pointer; }
.cta-stack { display: flex; flex-direction: column; gap: 8px; }
.small-note { font-size: 11.5px; color: var(--text-light); margin-top: 14px; text-align: center; line-height: 1.6; }

/* ── L3 다크 밴드: 번외 챌린지 ── */
.ch1-entry { background: var(--dark); border-radius: var(--r-3); padding: 26px 22px 24px; margin-bottom: 28px; text-align: center; position: relative; overflow: hidden; box-shadow: none; }
.ch1-entry-bg { display: none; }
.ch1-entry-eyebrow { display: inline-block; font-family: var(--font-numeric); font-size: 10px; font-weight: 800; color: var(--accent); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 12px; }
.ch1-entry-title { font-family: var(--font-display); font-size: 25px; font-weight: 800; color: #fff; line-height: 1.3; letter-spacing: -0.035em; margin-bottom: 10px; }
.ch1-entry-title .hl { background: none; -webkit-text-fill-color: currentColor; color: var(--accent); }
.ch1-entry-sub { font-size: 13px; color: var(--on-dark-soft); margin-bottom: 20px; line-height: 1.65; }
.ch1-entry-sub b { color: #fff; }
.ch1-entry-btn { background: var(--accent); color: #121212; border: none; padding: 14px 26px; border-radius: var(--r-pill); font-size: 14px; font-weight: 800; cursor: pointer; display: inline-flex; align-items: center; }
.ch1-entry-btn:hover { background: var(--accent-press); }
.ch1-entry-stats { display: flex; gap: 6px; justify-content: center; margin-top: 16px; flex-wrap: wrap; }
.ch1-stat-pill { font-size: 11px; font-weight: 700; padding: 5px 11px; border-radius: var(--r-pill); background: rgba(255,255,255,0.1); color: var(--on-dark-soft); white-space: nowrap; }
.ch1-stat-pill b { color: #fff; }
.ch1-entry-comments { background: var(--bg-soft); border-radius: var(--r-3); padding: 14px 0 12px; margin-bottom: 28px; box-shadow: none; }
.ch1-entry-comments-title { font-size: 10.5px; font-weight: 800; color: var(--text-light); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 10px; text-align: center; }
.ch1-entry-comments-marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent 0, black 8%, black 92%, transparent 100%); -webkit-mask-image: linear-gradient(90deg, transparent 0, black 8%, black 92%, transparent 100%); }
.ch1-entry-comments-track { display: flex; gap: 8px; animation: ch1-entry-marquee 32s linear infinite; padding: 0 12px; }
@keyframes ch1-entry-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ch1-entry-bubble { flex-shrink: 0; background: var(--card); border: 1px solid var(--line); padding: 11px 14px; border-radius: var(--r-2); min-width: 230px; max-width: 280px; }
.ch1-entry-bubble-name { font-size: 10px; font-weight: 800; color: var(--text-light); margin-bottom: 4px; }
.ch1-entry-bubble-body { font-size: 12px; line-height: 1.55; color: var(--text); }

/* ==========================================================================
   2. 문항
   ========================================================================== */
.progress-wrap { padding: 8px 0 32px; }
.progress-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.progress-text { font-size: 11px; font-weight: 800; color: var(--text-light); letter-spacing: 0.12em; text-transform: uppercase; }
.progress-percent { font-family: var(--font-numeric); font-size: 12px; color: var(--text); font-weight: 800; }
.progress-bar { height: 4px; background: var(--bg-soft-2); border-radius: var(--r-1); overflow: hidden; }
.progress-fill { height: 100%; background: var(--accent); transition: width 0.4s var(--ease-out-strong); border-radius: var(--r-1); }
.question { padding: 0 0 8px; }
.scenario-label { font-family: var(--font-numeric); font-size: 11px; color: var(--text-light); font-weight: 800; margin-bottom: 12px; letter-spacing: 0.14em; text-transform: uppercase; }
.question-text { font-family: var(--font-display); font-size: 25px; font-weight: 800; line-height: 1.45; margin-bottom: 30px; letter-spacing: -0.035em; }
.choices { display: flex; flex-direction: column; gap: 10px; }
.choice-btn { background: var(--bg-soft); border: 1px solid transparent; padding: 17px 18px; font-size: 15px; font-weight: 500; border-radius: var(--r-2); cursor: pointer; text-align: left; color: var(--text); box-shadow: none; line-height: 1.55; display: flex; align-items: center; gap: 12px; }
.choice-btn:hover { background: var(--bg-soft-2); }
.choice-btn span:not(.choice-emoji) { display: block; flex: 1; min-width: 0; line-height: 1.55; word-break: keep-all; overflow-wrap: break-word; }
.choice-btn.choice-selected { background: var(--accent-soft); border-color: var(--accent); }
.choice-emoji { font-size: 19px; flex-shrink: 0; }
.answer-toast { position: fixed; top: 30%; left: 50%; transform: translate(-50%, -50%) scale(0.8); background: var(--dark); color: #fff; padding: 13px 22px; border-radius: var(--r-pill); font-size: 14px; font-weight: 700; box-shadow: var(--shadow-strong); opacity: 0; pointer-events: none; transition: opacity 0.25s ease, transform 0.3s var(--ease-out-strong); z-index: 220; white-space: nowrap; max-width: 90vw; }
.answer-toast.show { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.loading { text-align: center; padding: 90px 20px; }
.loading-emoji { font-size: 56px; margin-bottom: 24px; animation: bounce 1s infinite; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }
.loading-text { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.03em; }
.loading-sub { color: var(--text-soft); font-size: 14px; }
.ai-q-card { padding: 0 0 8px; }
.ai-q-eyebrow { font-family: var(--font-numeric); font-size: 11px; color: var(--text-light); font-weight: 800; margin-bottom: 12px; letter-spacing: 0.14em; text-transform: uppercase; }
.ai-q-text { font-family: var(--font-display); font-size: 23px; font-weight: 700; line-height: 1.45; margin-bottom: 22px; letter-spacing: -0.035em; }
.ai-q-input { width: 100%; padding: 16px; border: 1px solid var(--line-strong); border-radius: var(--r-2); font-family: inherit; font-size: 15px; resize: none; margin-bottom: 12px; background: var(--card); line-height: 1.6; color: var(--text); }
.ai-q-input:focus { border-color: var(--text); outline: none; }
.ai-q-meta { font-size: 12px; color: var(--text-light); margin-bottom: 16px; }

/* ==========================================================================
   3. 결과 — 히어로 카드 (L2)
   ========================================================================== */
.result-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-3); padding: 26px 22px 24px; text-align: center; box-shadow: none; margin-bottom: 12px; position: relative; }
.result-card-v2 { padding: 24px 20px 30px; overflow: hidden; }
.result-provocative-label { display: inline-block; background: var(--dark); color: #fff; padding: 5px 13px; border-radius: var(--r-pill); font-size: 10.5px; font-weight: 800; letter-spacing: 0.1em; margin-bottom: 16px; }
.result-nickname { font-family: var(--font-display); font-size: 40px; font-weight: 800; margin-bottom: 10px; line-height: 1.14; letter-spacing: -0.045em; }
.result-tagline-v2 { font-size: 14px; color: var(--text-soft); line-height: 1.7; margin-bottom: 18px; padding: 0 6px; }
.result-lv-badge { display: inline-block; color: #fff; padding: 5px 13px; border-radius: var(--r-pill); font-size: 11.5px; font-weight: 800; letter-spacing: 0; margin-bottom: 20px; box-shadow: none; }
.result-watermark { position: absolute; bottom: 10px; right: 14px; font-family: var(--font-numeric); font-size: 9px; font-weight: 700; letter-spacing: 0.1em; color: var(--text-light); }
.result-phone-says { background: var(--bg-soft); border: none; border-radius: var(--r-2); padding: 18px; margin: 0; text-align: left; position: relative; overflow: hidden; }
.result-phone-says::before, .result-phone-says::after { display: none; }
.result-phone-eyebrow { display: flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 800; color: var(--text-light); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 10px; }
.result-phone-quote { font-family: var(--font-display); font-size: 16px; font-weight: 700; line-height: 1.6; color: var(--text); letter-spacing: -0.03em; }
.confetti-layer { position: absolute; inset: 0; pointer-events: none; overflow: hidden; border-radius: var(--r-3); }
.confetti-bit { position: absolute; width: 7px; height: 11px; border-radius: 2px; animation: rc-confetti 1.6s ease-in forwards; }

/* 결과 등장 모먼트 */
@keyframes rc-card-in { 0% { opacity: 0; transform: translateY(28px) scale(0.96); } 100% { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes rc-char-pop { 0% { transform: scale(0.4) rotate(-12deg); opacity: 0; } 55% { transform: scale(1.08) rotate(3deg); opacity: 1; } 80% { transform: scale(0.98) rotate(-1deg); } 100% { transform: scale(1) rotate(0); } }
@keyframes rc-name-zoom { 0% { transform: scale(1.6); opacity: 0; filter: blur(6px); } 60% { transform: scale(0.98); opacity: 1; filter: blur(0); } 100% { transform: scale(1); } }
@keyframes rc-label-flip { 0% { transform: scale(0.7); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
@keyframes rc-spark-burst { 0% { transform: scale(0) translate(0,0); opacity: 1; } 100% { transform: scale(1) translate(var(--tx), var(--ty)); opacity: 0; } }
@keyframes rc-ring-expand { 0% { transform: scale(0); opacity: 0.9; border-width: 8px; } 100% { transform: scale(3.4); opacity: 0; border-width: 0; } }
@keyframes rc-shine { 0% { transform: translateX(-100%) skewX(-20deg); } 100% { transform: translateX(220%) skewX(-20deg); } }
@keyframes rc-text-in { 0% { opacity: 0; transform: translateY(12px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes rc-confetti { 0% { transform: translateY(0) rotate(0); opacity: 1; } 100% { transform: translateY(180px) rotate(320deg); opacity: 0; } }
@keyframes rc-flash { 0% { background: rgba(18,18,18,0.5); } 100% { background: rgba(18,18,18,0); } }
.anim-card, .result-card-v2 { animation: rc-card-in 0.6s var(--ease-out-strong) both; }
.anim-char-pop { animation: rc-char-pop 0.8s cubic-bezier(0.18, 1.3, 0.32, 1) 0.12s both !important; position: relative; }
.result-nickname { animation: rc-name-zoom 0.6s var(--ease-out-strong) 0.5s both !important; display: inline-block; }
.result-provocative-label { animation: rc-label-flip 0.4s var(--ease-out-strong) 0.35s both !important; }
.anim-text-in { animation: rc-text-in 0.5s ease-out 0.6s both; }
.anim-shine { position: relative; }
.anim-shine::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(120deg, transparent 30%, rgba(30,215,96,0.16) 50%, transparent 70%); transform: translateX(-100%); animation: rc-shine 1.2s ease-out 0.4s 1 forwards; }
.result-spark-layer { position: absolute; top: 30%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; z-index: 5; width: 0; height: 0; }
.result-spark { position: absolute; top: 0; left: 0; font-size: 18px; animation: rc-spark-burst 1.2s var(--ease-out-strong) 0.4s both; pointer-events: none; }
.result-ring { position: absolute; top: 30%; left: 50%; width: 100px; height: 100px; margin: -50px 0 0 -50px; border: 6px solid var(--accent); border-radius: 50%; animation: rc-ring-expand 1s ease-out 0.3s both; pointer-events: none; z-index: 4; }
.result-ring-2 { animation-delay: 0.5s; border-color: var(--line-strong); }
.result-ring-3 { animation-delay: 0.7s; border-color: var(--accent-press); }
.result-flash-overlay { position: fixed; inset: 0; pointer-events: none; z-index: 100; animation: rc-flash 0.6s ease-out 1; }

/* 시그니처 리스트 */
.signature-list { background: var(--bg-soft); border-radius: var(--r-2); padding: 18px; margin-bottom: 20px; text-align: left; min-height: 60px; }
.signature-list * { font-family: var(--font-core) !important; font-style: normal !important; }
.signature-list-title { font-size: 10.5px; color: var(--text-light); font-weight: 800; margin-bottom: 12px; display: flex; justify-content: space-between; align-items: center; }
.signature-progress { font-family: var(--font-numeric); font-size: 10px; color: var(--text-light); font-weight: 700; }
@keyframes sig-pop { 0% { opacity: 0; transform: translateX(-10px); } 100% { opacity: 1; transform: translateX(0); } }
.signature-item { font-size: 14px; line-height: 1.65; padding: 6px 0; position: relative; padding-left: 22px; font-weight: 500; opacity: 0; }
.signature-item.revealed { animation: sig-pop 0.35s var(--ease-out-strong) both; }
.signature-item::before { content: "✓"; position: absolute; left: 0; color: var(--accent-deep); font-weight: 800; font-size: 13px; }
@keyframes sig-comment-in { 0% { opacity: 0; transform: scale(0.9); } 100% { opacity: 1; transform: scale(1); } }
.signature-aside { font-size: 12.5px; color: var(--text-light); margin: 6px 0 4px 22px; opacity: 0; }
.signature-aside.revealed { animation: sig-comment-in 0.35s ease-out both; }
.signature-loading { display: inline-flex; gap: 3px; vertical-align: middle; margin-left: 4px; }
.signature-loading span { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); animation: sig-loading-blink 1.4s infinite both; }
.signature-loading span:nth-child(2) { animation-delay: 0.2s; }
.signature-loading span:nth-child(3) { animation-delay: 0.4s; }
@keyframes sig-loading-blink { 0%, 80%, 100% { opacity: 0.3; transform: scale(0.7); } 40% { opacity: 1; transform: scale(1); } }

/* 미니 공유 바 — 결과 직후, 다크 */
.mini-share-bar { background: var(--dark); border-radius: var(--r-3); padding: 16px; margin-bottom: 28px; box-shadow: none; animation: rc-card-in 0.6s var(--ease-out-strong) 1.1s both; }
.mini-share-text { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 12px; text-align: center; letter-spacing: -0.02em; }
.mini-share-buttons { display: flex; gap: 6px; }
.mini-share-btn { flex: 1; padding: 12px 4px; border-radius: var(--r-pill); border: none; font-family: inherit; font-size: 12.5px; font-weight: 800; cursor: pointer; }
.mini-share-btn.kakao { background: var(--kakao); color: #121212; }
.mini-share-btn.insta { background: #fff; color: #121212; }
.mini-share-btn.link { background: rgba(255,255,255,0.14); color: #fff; }

/* 인생 누적 카운터 — L3 */
.lifetime-counter { background: var(--dark); color: #fff; border-radius: var(--r-3); padding: 24px 22px; margin-bottom: 28px; position: relative; overflow: hidden; }
.lifetime-counter::before, .lifetime-counter::after { display: none; }
.lc-eyebrow { font-family: var(--font-numeric); font-size: 10px; font-weight: 800; color: var(--accent); margin-bottom: 10px; }
.lc-headline { font-size: 13.5px; color: var(--on-dark-soft); line-height: 1.6; margin-bottom: 16px; }
.lc-basis { display: inline-block; font-size: 10.5px; padding: 4px 10px; background: rgba(255,255,255,0.1); border-radius: var(--r-pill); margin-bottom: 12px; color: var(--on-dark-soft); }
.lc-big-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; flex-wrap: wrap; }
.lc-num { font-family: var(--font-numeric); font-size: 52px; font-weight: 800; line-height: 1; letter-spacing: -0.04em; color: #fff; font-variant-numeric: tabular-nums; }
.lc-unit { font-size: 15px; font-weight: 700; color: var(--on-dark-soft); }
.lc-sub { font-size: 12.5px; color: var(--on-dark-soft); margin-top: 8px; line-height: 1.6; }
.lc-sub b, .lifetime-counter b { color: #fff; }
.lc-ticking { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-numeric); font-size: 11px; margin-top: 12px; padding: 5px 11px; background: rgba(255,255,255,0.1); border-radius: var(--r-pill); color: var(--on-dark-soft); }
.lc-tick-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 1s infinite; }
.lc-age-input-wrap { margin-top: 14px; padding: 12px 14px; background: rgba(255,255,255,0.07); border-radius: var(--r-2); }
.lc-age-label { font-size: 11px; color: var(--on-dark-soft); margin-bottom: 8px; display: block; }
.lc-age-row { display: flex; align-items: center; gap: 8px; }
.lc-age-input { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.18); color: #fff; padding: 7px 12px; border-radius: var(--r-1); font-family: var(--font-numeric); font-size: 14px; font-weight: 700; width: 72px; text-align: center; }
.lc-age-btn { background: var(--accent); color: #121212; border: none; padding: 8px 15px; border-radius: var(--r-pill); font-size: 12px; font-weight: 800; cursor: pointer; }

/* 위험도 게이지 */
.risk-gauge { background: var(--bg-soft); border-radius: var(--r-2); padding: 16px; text-align: left; }
.risk-gauge-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.risk-level-text { font-size: 13px; font-weight: 700; }
.risk-level-status { font-size: 11.5px; font-weight: 800; padding: 4px 11px; border-radius: var(--r-pill); color: #fff; }
.risk-segments { display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; }
.risk-segment { height: 6px; border-radius: var(--r-1); background: var(--bg-soft-2); transition: background-color 400ms ease; }
.risk-detail { font-size: 12.5px; color: var(--text-soft); margin-top: 12px; line-height: 1.6; }
.pct-stat { margin-top: 12px; font-size: 12px; color: var(--text-light); }

/* AI 진단 */
.ai-optional { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-3); padding: 18px; margin-bottom: 28px; box-shadow: none; }
.ai-optional-eyebrow { font-family: var(--font-numeric); font-size: 10px; font-weight: 800; color: var(--text-light); margin-bottom: 8px; }
.ai-optional-title { font-size: 13.5px; line-height: 1.65; margin-bottom: 12px; color: var(--text-soft); }
.ai-optional-title b { color: var(--text); }
.ai-optional-btn { background: var(--accent); color: #121212; border: none; padding: 13px 22px; border-radius: var(--r-pill); font-size: 13.5px; font-weight: 800; cursor: pointer; width: 100%; margin-top: 6px; }
.ai-optional .ai-q-input { padding: 12px 14px; border: 1px solid var(--line-strong); border-radius: var(--r-2); font-size: 13.5px; background: var(--bg-soft); }
.ai-optional .ai-q-input:focus { border-color: var(--text); background: #fff; }
.ai-insight { background: var(--bg-soft); border: none; border-radius: var(--r-3); padding: 22px 20px; margin-bottom: 28px; position: relative; overflow: hidden; box-shadow: none; }
.ai-insight::before { display: none; }
.ai-insight-eyebrow { font-size: 10px; font-weight: 800; color: var(--text-light); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.ai-insight-eyebrow .ai-badge { background: var(--accent); color: #121212; padding: 2px 8px; border-radius: var(--r-pill); font-size: 9px; letter-spacing: 0.06em; }
.ai-insight-quote { font-size: 17px; font-weight: 500; line-height: 1.7; color: var(--text); padding: 4px 0; letter-spacing: -0.03em; }
.ai-insight-quote::before, .ai-insight-quote::after { content: none; }
.ai-insight-source { font-size: 11px; color: var(--text-light); margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line-strong); }
.ai-insight-source b { color: var(--text); }
.ai-insight-loading { padding: 24px 0; text-align: center; color: var(--text-soft); }
.ai-insight-loading-dots { display: inline-flex; gap: 4px; margin-top: 8px; }
.ai-insight-loading-dots span { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: sig-loading-blink 1.4s infinite both; }
.ai-insight-loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.ai-insight-loading-dots span:nth-child(3) { animation-delay: 0.4s; }

/* ── 섹션(진단 등): 카드 아님 — 헤어라인 룰 + 여백 ── */
.section { background: transparent; border-radius: 0; padding: 26px 0 4px; margin-bottom: 24px; box-shadow: none; border-top: 1px solid var(--line); }
.section-label { font-family: var(--font-numeric); font-size: 10.5px; color: var(--text-light); font-weight: 800; margin-bottom: 10px; }
.section-title { font-family: var(--font-display); font-size: 24px; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.038em; line-height: 1.3; }
.section-body { color: var(--text-soft); line-height: 1.75; font-size: 14.5px; }
.axis-row { margin-bottom: 20px; }
.axis-row:last-child { margin-bottom: 0; }
.axis-row-top { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.axis-name { font-size: 13px; font-weight: 700; white-space: nowrap; flex: 1; }
.axis-score { font-family: var(--font-numeric); font-size: 13px; color: var(--text); font-weight: 800; }
.axis-bar { height: 4px; background: var(--bg-soft-2); border-radius: var(--r-1); overflow: hidden; }
.axis-fill { height: 100%; background: var(--text); border-radius: var(--r-1); transition: width 0.7s var(--ease-out-strong); }
.axis-evidence-toggle { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; color: var(--text-soft); font-weight: 700; margin-top: 10px; cursor: pointer; user-select: none; padding: 5px 11px; background: var(--bg-soft); border-radius: var(--r-pill); transition: background 0.2s; }
.axis-evidence-toggle:hover { background: var(--bg-soft-2); }
.axis-evidence-toggle .arrow { display: inline-block; transition: transform 0.25s ease; font-size: 9px; }
.axis-evidence-toggle.open .arrow { transform: rotate(180deg); }
.axis-evidence { display: none; margin-top: 10px; padding: 13px 15px; background: var(--bg-soft); border-radius: var(--r-2); font-size: 12px; color: var(--text-soft); line-height: 1.7; }
.axis-evidence.open { display: block; animation: ax-open 0.3s ease-out; }
@keyframes ax-open { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.axis-evidence-title { font-size: 10px; color: var(--text-light); font-weight: 800; letter-spacing: 0.1em; margin-bottom: 6px; }
.axis-evidence-row { padding: 2px 0; }
.axis-evidence-row b { color: var(--text); }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 18px; }
.pros-cons-card { padding: 14px; border-radius: var(--r-2); background: var(--bg-soft); }
.pros-cons-card.pros { background: var(--accent-soft); }
.pros-cons-card.cons { background: var(--bg-soft); }
.pros-cons-label { font-size: 10.5px; font-weight: 800; margin-bottom: 8px; letter-spacing: 0.1em; text-transform: uppercase; }
.pros .pros-cons-label { color: var(--accent-deep); }
.cons .pros-cons-label { color: var(--text-light); }
.pros-cons-item { font-size: 13px; line-height: 1.65; color: var(--text); }

/* 궁합 */
.match-grid, .rs-match-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 14px; }
.match-card, .rs-match-card { background: var(--bg-soft); border-radius: var(--r-2); padding: 16px 10px; text-align: center; cursor: pointer; }
.match-label, .rs-match-label { font-size: 10px; color: var(--text-light); font-weight: 800; margin-bottom: 10px; letter-spacing: 0.1em; text-transform: uppercase; }
.match-card.anti .match-char-wrap, .rs-match-card.anti .rs-match-char { filter: saturate(0.55); }
.match-char-wrap, .rs-match-char { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 10px; overflow: hidden; position: relative; }
.match-char-wrap .char-illustration, .rs-match-char .char-illustration { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.match-char-wrap .char-illustration svg, .rs-match-char .char-illustration svg { width: 100%; height: 100%; }
.match-name, .rs-match-name { font-size: 12.5px; font-weight: 700; line-height: 1.35; }

/* ── 공유: 친구에게 (다크, 그린 버튼) ── */
.share-friend { background: var(--dark); color: #fff; border-radius: var(--r-3); padding: 26px 22px; margin-bottom: 28px; box-shadow: none; }
.share-friend-eyebrow { font-family: var(--font-numeric); font-size: 10px; font-weight: 800; color: var(--accent); margin-bottom: 10px; }
.share-friend-title { font-family: var(--font-display); font-size: 23px; font-weight: 700; margin-bottom: 14px; line-height: 1.32; letter-spacing: -0.035em; }
.share-friend-desc { font-size: 13.5px; line-height: 1.65; color: var(--on-dark-soft); margin-bottom: 18px; padding: 14px 16px; background: rgba(255,255,255,0.07); border-radius: var(--r-2); }
.share-buttons { display: flex; flex-direction: column; gap: 8px; }
.share-btn { display: flex; align-items: center; gap: 12px; padding: 13px 14px; border-radius: var(--r-2); border: none; background: rgba(255,255,255,0.08); cursor: pointer; font-family: inherit; width: 100%; text-align: left; color: #fff; }
.share-icon { font-size: 18px; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.1); flex-shrink: 0; }
.share-text-wrap { flex: 1; }
.share-label { font-size: 14px; font-weight: 700; }
.share-sublabel { font-size: 11px; color: var(--on-dark-soft); margin-top: 2px; }

/* 유형 관계 + 공유 통합 (L1) */
.relation-share-card { background: var(--bg-soft); border-radius: var(--r-3); padding: 22px 20px; margin-bottom: 28px; box-shadow: none; }
.rs-eyebrow { font-family: var(--font-numeric); font-size: 10px; color: var(--text-light); font-weight: 800; margin-bottom: 8px; }
.rs-title { font-family: var(--font-display); font-size: 21px; font-weight: 700; line-height: 1.32; letter-spacing: -0.035em; margin-bottom: 6px; }
.rs-sub { font-size: 13px; color: var(--text-soft); margin-bottom: 16px; line-height: 1.6; }
.rs-match-card, .rs-match-card.anti { background: var(--card); }
.relation-share-card .match-card, .relation-share-card .match-card.anti { background: var(--card); }
.rs-divider { height: 1px; background: var(--line-strong); margin: 20px 0 16px; position: relative; }
.rs-divider::before { content: "친구에게 보내기"; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); background: var(--bg-soft); padding: 0 12px; font-size: 10px; font-weight: 800; color: var(--text-light); letter-spacing: 0.1em; }
.rs-share-tease { font-size: 14px; font-weight: 700; line-height: 1.6; margin-bottom: 14px; color: var(--text); }
.rs-share-tease b { color: var(--text); }
.rs-share-buttons, .footer-share-buttons { display: flex; gap: 8px; }
.rs-share-btn, .footer-share-btn { flex: 1; padding: 14px 8px; border-radius: var(--r-pill); border: none; font-family: inherit; font-size: 13px; font-weight: 800; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 6px; }
.rs-share-btn.kakao, .footer-share-btn.kakao { background: var(--kakao); color: #121212; }
.rs-share-btn.link, .footer-share-btn.link { background: var(--card); color: var(--text); border: 1px solid var(--line-strong); }
.rs-share-icon { font-size: 15px; }
.rs-incentive { margin-top: 12px; font-size: 11.5px; color: var(--text-light); text-align: center; line-height: 1.6; }
.rs-incentive b { color: var(--text-soft); }

/* 인스타 카드 */
.insta-section, .insta-minimal { background: var(--bg-soft); border-radius: var(--r-3); padding: 22px 20px 20px; margin-bottom: 28px; box-shadow: none; }
.insta-eyebrow { font-family: var(--font-numeric); font-size: 10px; font-weight: 800; margin-bottom: 8px; color: var(--text-light); }
.insta-title { font-family: var(--font-display); font-size: 21px; font-weight: 700; margin-bottom: 6px; line-height: 1.32; letter-spacing: -0.035em; }
.insta-desc { font-size: 13px; color: var(--text-soft); margin-bottom: 18px; }
.insta-minimal-eyebrow { font-family: var(--font-numeric); font-size: 10px; color: var(--text-light); font-weight: 800; margin-bottom: 6px; text-align: center; }
.insta-minimal-title { font-size: 15px; font-weight: 700; text-align: center; margin-bottom: 16px; letter-spacing: -0.03em; }
.insta-preview-wrap { max-width: 260px; margin: 0 auto 16px; }
.insta-minimal .insta-preview-wrap { max-width: 240px; margin: 0 auto 16px; }
.insta-card { width: 100%; aspect-ratio: 9/16; border-radius: var(--r-2); overflow: hidden; padding: 22px 20px; color: #fff; box-shadow: 0 12px 28px rgba(0,0,0,0.22); display: flex; flex-direction: column; position: relative; }
.insta-card.c-ITA { background: var(--t-ITA); } .insta-card.c-ITC { background: var(--t-ITC); }
.insta-card.c-ISA { background: var(--t-ISA); } .insta-card.c-ISC { background: var(--t-ISC); }
.insta-card.c-PTA { background: var(--t-PTA); } .insta-card.c-PTC { background: var(--t-PTC); }
.insta-card.c-PSA { background: var(--t-PSA); } .insta-card.c-PSC { background: var(--t-PSC); }
.insta-card::after { display: none; }
.insta-top { position: relative; z-index: 1; }
.insta-brand-line { font-family: var(--font-numeric); font-size: 9px; font-weight: 800; letter-spacing: 0.24em; opacity: 0.9; }
.insta-test-name { font-size: 11px; font-weight: 600; margin-top: 4px; opacity: 0.9; }
.insta-divider { width: 28px; height: 1px; background: rgba(255,255,255,0.6); margin-top: 12px; }
.insta-main { flex: 1; display: flex; flex-direction: column; justify-content: center; text-align: center; position: relative; z-index: 1; }
.insta-char { width: 140px; height: 140px; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; }
.insta-char svg { width: 100%; height: 100%; }
.insta-nickname-big { font-family: var(--font-display); font-size: 24px; font-weight: 800; line-height: 1.24; letter-spacing: -0.04em; margin-bottom: 12px; padding: 0 4px; }
.insta-quote { font-size: 13px; font-weight: 500; line-height: 1.6; opacity: 0.92; padding: 0 6px; letter-spacing: -0.02em; }
.insta-quote::before { content: "“"; opacity: 0.7; }
.insta-quote::after { content: "”"; opacity: 0.7; }
.insta-bottom-meta { position: relative; z-index: 1; text-align: center; }
.insta-risk-line { font-size: 10.5px; opacity: 0.85; margin-bottom: 5px; letter-spacing: 0.08em; }
.insta-handle { font-family: var(--font-numeric); font-size: 11px; font-weight: 700; letter-spacing: 0.04em; opacity: 0.95; }
.insta-url { font-family: var(--font-numeric); font-size: 10px; font-weight: 600; letter-spacing: 0.06em; opacity: 0.8; margin-top: 3px; }
.insta-share-btn, .insta-minimal-btn { width: 100%; padding: 14px; background: var(--dark); color: #fff; border: none; border-radius: var(--r-pill); font-weight: 800; font-size: 14px; cursor: pointer; font-family: inherit; display: flex; align-items: center; justify-content: center; gap: 8px; }
.insta-minimal-icon { font-size: 15px; }

/* 스크린타임 */
.st-card { background: var(--bg-soft); padding: 22px 20px; border-radius: var(--r-3); box-shadow: none; margin-bottom: 28px; }
.st-eyebrow { font-family: var(--font-numeric); font-size: 10px; color: var(--text-light); font-weight: 800; margin-bottom: 8px; }
.st-headline { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 8px; line-height: 1.3; letter-spacing: -0.035em; }
.st-sub { color: var(--text-soft); font-size: 13.5px; margin-bottom: 16px; line-height: 1.6; }
.platform-row { display: flex; gap: 6px; margin-bottom: 14px; flex-wrap: wrap; }
.platform-pill { font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: var(--r-pill); background: var(--card); color: var(--text-soft); }
.upload-zone { border: 1px dashed var(--line-strong); padding: 28px 20px; border-radius: var(--r-2); text-align: center; cursor: pointer; background: var(--card); margin-bottom: 16px; transition: background-color 200ms ease, border-color 200ms ease; }
.upload-zone:hover { border-color: var(--text); }
.upload-emoji { font-size: 30px; margin-bottom: 10px; }
.upload-text { font-size: 14px; font-weight: 700; }
.upload-sub { font-size: 12px; color: var(--text-light); margin-top: 4px; }
.st-example-card { background: var(--card); border-radius: var(--r-2); padding: 16px 18px; }
.st-example-title { font-size: 10.5px; font-weight: 800; color: var(--text-light); margin-bottom: 10px; }
.st-example-row { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 13px; line-height: 1.55; }
.st-example-row .emo { font-size: 16px; width: 22px; flex-shrink: 0; }
.st-example-row b { color: var(--text); }
.st-report { margin-top: 18px; display: none; }
.st-report.active { display: block; }
.st-main-score { background: var(--dark); color: #fff; padding: 22px 20px; border-radius: var(--r-3); margin-bottom: 12px; position: relative; overflow: hidden; }
.st-main-score::before { display: none; }
.st-score-top { display: flex; justify-content: space-between; align-items: flex-start; }
.st-score-left { flex: 1; }
.st-score-label { font-size: 10.5px; color: var(--on-dark-soft); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 800; }
.st-score-num { font-family: var(--font-numeric); font-size: 54px; font-weight: 800; line-height: 1; margin-top: 6px; letter-spacing: -0.04em; }
.st-score-num .out { font-size: 17px; color: var(--on-dark-soft); font-weight: 700; }
.st-score-status-pill { padding: 5px 12px; border-radius: var(--r-pill); font-size: 11px; font-weight: 800; display: inline-block; color: #fff; }
.st-trend-row { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--dark-line); display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--on-dark-soft); }
.st-trend-row b { color: #fff; }
.st-cat-card, .st-timeline-card { background: var(--card); border: 1px solid var(--line); padding: 16px 18px; border-radius: var(--r-2); margin-bottom: 8px; }
.st-cat-title, .st-timeline-title { font-size: 11px; font-weight: 800; color: var(--text-light); margin-bottom: 14px; }
.st-cat-row { margin-bottom: 12px; }
.st-cat-row:last-child { margin-bottom: 0; }
.st-cat-row-top { display: flex; justify-content: space-between; margin-bottom: 5px; align-items: center; }
.st-cat-name { font-size: 13px; font-weight: 700; display: flex; align-items: center; gap: 6px; }
.st-cat-dot { width: 8px; height: 8px; border-radius: 50%; }
.st-cat-time { font-family: var(--font-numeric); font-size: 12px; font-weight: 800; color: var(--text-soft); }
.st-cat-bar { height: 4px; background: var(--bg-soft-2); border-radius: var(--r-1); overflow: hidden; }
.st-cat-fill { height: 100%; border-radius: var(--r-1); }
.st-app-card { background: var(--bg-soft); padding: 14px 16px; border-radius: var(--r-2); margin-bottom: 6px; }
.st-app-top { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.st-app-rank { font-family: var(--font-numeric); font-size: 11px; font-weight: 800; color: var(--text-light); width: 16px; }
.st-app-name { font-size: 14px; font-weight: 700; flex: 1; }
.st-app-time { font-family: var(--font-numeric); font-size: 13px; font-weight: 800; color: var(--text); }
.st-app-insight { font-size: 12px; color: var(--text-soft); line-height: 1.6; padding-left: 26px; }
.st-app-insight b { color: var(--text); }
.st-timeline-bars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.st-tb { text-align: center; }
.st-tb-bar { height: 60px; background: var(--bg-soft); border-radius: var(--r-1) var(--r-1) 0 0; position: relative; overflow: hidden; display: flex; align-items: flex-end; }
.st-tb-fill { width: 100%; background: var(--text); border-radius: var(--r-1) var(--r-1) 0 0; }
.st-tb-time { font-family: var(--font-numeric); font-size: 10px; font-weight: 700; color: var(--text-light); margin-top: 6px; }
.st-tb-amount { font-family: var(--font-numeric); font-size: 11px; font-weight: 800; color: var(--text); }
.st-timeline-note { font-size: 12px; color: var(--text-soft); margin-top: 12px; padding: 11px 13px; background: var(--bg-soft); border-radius: var(--r-2); line-height: 1.6; }
.st-timeline-note b { color: var(--text); }
.st-yearly { background: var(--dark); padding: 20px; border-radius: var(--r-2); margin-bottom: 8px; text-align: center; }
.st-yearly-label { font-size: 10.5px; font-weight: 800; color: var(--on-dark-soft); margin-bottom: 8px; }
.st-yearly-big { font-family: var(--font-numeric); font-size: 30px; font-weight: 800; color: var(--accent); line-height: 1.1; letter-spacing: -0.03em; }
.st-yearly-sub { font-size: 12px; color: var(--on-dark-soft); margin-top: 8px; line-height: 1.6; }

/* 비교 · 순위 · 지도 (L1) */
.compare-card, .rank-card, .map-card { background: var(--bg-soft); border-radius: var(--r-3); padding: 22px 20px; margin-bottom: 28px; box-shadow: none; }
.compare-eyebrow, .rank-eyebrow, .map-eyebrow { font-family: var(--font-numeric); font-size: 10px; font-weight: 800; color: var(--text-light); margin-bottom: 8px; }
.compare-title, .rank-title, .map-title { font-family: var(--font-display); font-size: 21px; font-weight: 700; line-height: 1.32; letter-spacing: -0.035em; margin-bottom: 6px; }
.compare-title { margin-bottom: 14px; }
.map-title .hl-strike { color: var(--text); }
.rank-sub, .map-sub { font-size: 12.5px; color: var(--text-soft); margin-bottom: 16px; line-height: 1.6; }
.compare-row { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line-strong); font-size: 13.5px; line-height: 1.6; }
.compare-row:last-child { border-bottom: none; padding-bottom: 0; }
.compare-num { background: var(--card); color: var(--text); width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-numeric); font-weight: 800; font-size: 12px; flex-shrink: 0; }
.compare-text { flex: 1; color: var(--text-soft); }
.compare-text b { color: var(--text); font-weight: 800; }
.rank-list { display: flex; flex-direction: column; gap: 4px; }
.rank-row { display: flex; align-items: center; gap: 12px; padding: 9px 11px; border-radius: var(--r-2); background: var(--card); position: relative; cursor: pointer; }
.rank-row.you { background: var(--dark); }
.rank-row.you .rank-name, .rank-row.you .rank-pos { color: #fff; }
.rank-pos { font-family: var(--font-numeric); font-size: 16px; font-weight: 800; color: var(--text-light); display: inline-flex; align-items: center; justify-content: center; gap: 2px; min-width: 32px; white-space: nowrap; letter-spacing: -0.03em; }
.rank-row .rank-medal { font-size: 14px; }
.rank-char { width: 36px; height: 36px; border-radius: 50%; overflow: hidden; position: relative; flex-shrink: 0; }
.rank-char .char-illustration { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.rank-char .char-illustration svg { width: 100%; height: 100%; }
.rank-name { flex: 1; font-size: 13px; font-weight: 700; color: var(--text); }
.rank-name-pin { display: inline-block; background: var(--accent); color: #121212; padding: 1px 7px; border-radius: var(--r-pill); font-size: 9px; font-weight: 800; margin-left: 6px; vertical-align: middle; }
.rank-lv { font-family: var(--font-numeric); font-size: 10.5px; font-weight: 800; color: var(--text-soft); padding: 3px 9px; border-radius: var(--r-pill); background: var(--bg-soft); flex-shrink: 0; }
.rank-row.you .rank-lv { background: rgba(255,255,255,0.14); color: #fff; }

/* 4분면 지도 */
.map-quadrant { position: relative; padding: 34px 26px; margin: 0 auto 14px; }
.map-axis-top, .map-axis-bottom, .map-axis-left, .map-axis-right { position: absolute; font-size: 10.5px; font-weight: 800; background: var(--card); color: var(--text-soft); padding: 4px 10px; border-radius: var(--r-pill); z-index: 4; white-space: nowrap; }
.map-axis-top { top: 0; left: 50%; transform: translateX(-50%); background: var(--dark); color: #fff; }
.map-axis-bottom { bottom: 0; left: 50%; transform: translateX(-50%); }
.map-axis-left { left: -4px; top: 50%; transform: translateY(-50%); background: var(--dark); color: #fff; }
.map-axis-right { right: -4px; top: 50%; transform: translateY(-50%); }
.map-grid-q { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 4px; position: relative; aspect-ratio: 1; max-width: 320px; margin: 0 auto; border: 1px solid var(--line-strong); border-radius: var(--r-2); padding: 4px; background: var(--card); }
.map-grid-q::before { content: ""; position: absolute; top: 50%; left: 4px; right: 4px; height: 1px; background: repeating-linear-gradient(90deg, var(--line-strong) 0 5px, transparent 5px 10px); z-index: 0; }
.map-grid-q::after { content: ""; position: absolute; left: 50%; top: 4px; bottom: 4px; width: 1px; background: repeating-linear-gradient(0deg, var(--line-strong) 0 5px, transparent 5px 10px); z-index: 0; }
.map-q { display: flex; align-items: center; justify-content: center; gap: 4px; padding: 6px; border-radius: var(--r-1); position: relative; }
.map-q-cell { width: 100%; max-width: 60px; aspect-ratio: 1; border-radius: var(--r-1); position: relative; overflow: hidden; opacity: 0.42; transition: opacity 0.3s, transform 0.2s; cursor: pointer; }
.map-q-cell:hover { opacity: 0.9; }
.map-q-cell.you { opacity: 1; box-shadow: 0 0 0 2px var(--accent); transform: scale(1.08); z-index: 3; }
.map-q-cell .char-illustration { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.map-q-cell .char-illustration svg { width: 92%; height: 92%; }
.map-q-cell .label { position: absolute; bottom: 0; left: 0; right: 0; padding: 8px 1px 3px; text-align: center; color: #fff; font-size: 8.5px; font-weight: 700; background: linear-gradient(180deg, transparent, rgba(0,0,0,0.72) 55%); letter-spacing: -0.03em; line-height: 1.15; }
.map-q-cell-wrap { position: relative; }
.map-you-pin { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #121212; padding: 3px 7px; border-radius: var(--r-pill); font-family: var(--font-numeric); font-size: 8.5px; font-weight: 800; white-space: nowrap; z-index: 10; pointer-events: none; }
.map-you-pin::after { display: none; }
.map-legend { background: var(--card); border-radius: var(--r-2); padding: 13px 15px; font-size: 11.5px; color: var(--text-soft); line-height: 1.75; margin-top: 14px; }
.map-legend-row b { color: var(--text); }
.map-cta { margin-top: 10px; padding: 13px 15px; background: var(--card); border-radius: var(--r-2); font-size: 13px; font-weight: 700; line-height: 1.6; color: var(--text); text-align: center; }
.map-cta b { color: var(--accent-deep); }

/* 도발·경고 (L3 계열) */
.harsh-card { background: var(--dark); color: #fff; border-radius: var(--r-3); padding: 26px 22px; margin-bottom: 28px; position: relative; overflow: hidden; }
.harsh-card::before { display: none; }
.harsh-eyebrow { font-family: var(--font-numeric); font-size: 10px; font-weight: 800; color: var(--accent); margin-bottom: 12px; }
.harsh-quote-label { font-family: var(--font-numeric); font-size: 9px; font-weight: 800; letter-spacing: 0.2em; color: var(--on-dark-soft); margin-bottom: 8px; text-transform: uppercase; }
.harsh-quote { font-family: var(--font-display); font-size: 21px; font-weight: 700; line-height: 1.5; letter-spacing: -0.035em; color: #fff; }
.harsh-quote::before, .harsh-quote::after { content: none; }
.harsh-signature { margin-top: 16px; font-size: 12px; color: var(--on-dark-soft); text-align: right; }
.miscon-card { background: var(--bg-soft); border: none; border-radius: var(--r-3); padding: 22px 20px; margin-bottom: 28px; box-shadow: none; }
.miscon-eyebrow { font-family: var(--font-numeric); font-size: 10px; font-weight: 800; color: var(--text-light); margin-bottom: 10px; }
.miscon-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; line-height: 1.38; letter-spacing: -0.035em; margin-bottom: 12px; }
.miscon-title span { color: var(--text-soft); }
.miscon-body { font-size: 14px; line-height: 1.75; color: var(--text); padding: 15px 16px; background: var(--card); border-radius: var(--r-2); }
.miscon-body b { color: var(--text); }
.warn-card { background: var(--dark); border: none; border-radius: var(--r-3); padding: 22px 20px; margin-bottom: 28px; position: relative; overflow: hidden; }
.warn-card::before { display: none; }
.warn-eyebrow { font-family: var(--font-numeric); font-size: 10px; font-weight: 800; color: var(--accent); margin-bottom: 10px; display: flex; align-items: center; gap: 7px; }
.warn-eyebrow .warn-dot { width: 7px; height: 7px; background: var(--accent); border-radius: 50%; animation: pulse 1.4s infinite; }
.warn-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; line-height: 1.38; letter-spacing: -0.035em; margin-bottom: 12px; color: #fff; }
.warn-body { font-size: 13.5px; line-height: 1.75; color: var(--on-dark-soft); padding: 15px 16px; background: rgba(255,255,255,0.07); border-radius: var(--r-2); }
.warn-body b { color: #fff; }
.miscon-warn-combo { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.mwc-card { padding: 24px 20px; border-radius: var(--r-3); margin-bottom: 0 !important; }
.mwc-card .miscon-eyebrow, .mwc-card .warn-eyebrow { font-size: 10px; margin-bottom: 10px; }
.mwc-card .miscon-body, .mwc-card .warn-body { font-size: 14.5px; line-height: 1.75; }

/* 가챠 미션 */
.gacha-card { background: var(--dark); color: #fff; border-radius: var(--r-3); padding: 26px 22px; margin-bottom: 28px; box-shadow: none; text-align: center; position: relative; overflow: hidden; }
.gacha-card::before, .gacha-card::after { display: none; }
.gacha-eyebrow { font-family: var(--font-numeric); font-size: 10px; font-weight: 800; color: var(--accent); margin-bottom: 10px; }
.gacha-title { font-family: var(--font-display); font-size: 23px; font-weight: 700; line-height: 1.32; margin-bottom: 10px; letter-spacing: -0.035em; color: #fff; }
.gacha-title span { color: var(--accent); }
.gacha-sub { font-size: 13px; color: var(--on-dark-soft); margin-bottom: 22px; line-height: 1.65; }
.gacha-sub b { color: #fff; }
.gacha-capsule { width: 140px; height: 140px; margin: 0 auto 22px; position: relative; cursor: pointer; }
@keyframes gacha-shake { 0%, 100% { transform: rotate(0); } 25% { transform: rotate(-7deg); } 75% { transform: rotate(7deg); } }
.gacha-capsule.shaking { animation: gacha-shake 0.4s ease-in-out 3; }
.gacha-capsule .top { position: absolute; top: 0; left: 0; right: 0; height: 50%; background: var(--accent); border-radius: 70px 70px var(--r-1) var(--r-1); }
.gacha-capsule .bot { position: absolute; bottom: 0; left: 0; right: 0; height: 50%; background: var(--dark-mid); border-radius: var(--r-1) var(--r-1) 70px 70px; }
.gacha-capsule .shine { position: absolute; top: 12%; left: 16%; width: 26%; height: 26%; background: rgba(255,255,255,0.45); border-radius: 50%; filter: blur(4px); }
.gacha-capsule .label { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #121212; font-weight: 800; font-size: 13px; z-index: 2; }
.gacha-btn { background: var(--accent); color: #121212; border: none; padding: 14px 28px; border-radius: var(--r-pill); font-size: 14px; font-weight: 800; cursor: pointer; }
.gacha-result { display: none; }
.gacha-result.show { display: block; animation: rc-card-in 0.6s var(--ease-out-strong); }
.mission-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-3); padding: 22px 20px; text-align: left; margin-bottom: 12px; position: relative; overflow: hidden; }
.mission-card::before { display: none; }
.mission-badge { display: inline-block; background: var(--accent); color: #121212; padding: 4px 12px; border-radius: var(--r-pill); font-size: 10px; font-weight: 800; margin-bottom: 12px; }
.mission-emoji { font-size: 34px; line-height: 1; margin-bottom: 10px; }
.mission-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; line-height: 1.34; letter-spacing: -0.035em; margin-bottom: 10px; color: var(--text); }
.mission-desc { font-size: 13.5px; line-height: 1.7; color: var(--text-soft); margin-bottom: 12px; }
.mission-time { font-family: var(--font-numeric); font-size: 11px; color: var(--text-light); font-weight: 800; }
.gacha-again-row { display: flex; gap: 8px; margin-top: 8px; }
.gacha-again-btn { flex: 1; padding: 13px; border-radius: var(--r-pill); font-size: 13px; font-weight: 800; cursor: pointer; font-family: inherit; border: none; }
.gacha-again-btn.outline { background: var(--bg-soft); color: var(--text); }
.gacha-again-btn.primary { background: var(--accent); color: #121212; }

/* 친구 지목 */
.friend-tag-list { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.friend-tag-item { display: flex; align-items: center; gap: 12px; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-2); padding: 10px 12px; cursor: pointer; text-align: left; transition: border-color 0.15s, transform 0.15s; }
.friend-tag-item:active { transform: scale(0.98); }
.friend-tag-item.sel { border-color: var(--accent); background: var(--accent-soft); }
.friend-tag-char { width: 42px; height: 42px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.friend-tag-char .char-illustration { width: 100%; height: 100%; }
.friend-tag-char svg { width: 100%; height: 100%; display: block; }
.friend-tag-body { flex: 1; min-width: 0; }
.friend-tag-line { font-size: 13px; font-weight: 700; line-height: 1.5; letter-spacing: -0.025em; }
.friend-tag-name { font-size: 11px; color: var(--text-light); font-weight: 700; margin-top: 3px; }
.friend-tag-check { width: 20px; height: 20px; border-radius: 50%; background: var(--accent); color: #121212; font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; opacity: 0; transition: opacity 0.15s; }
.friend-tag-item.sel .friend-tag-check { opacity: 1; }
.friend-ref-box { margin-top: 12px; }
.frb-empty { font-size: 12.5px; color: var(--text-soft); line-height: 1.65; text-align: center; background: var(--bg-soft); border-radius: var(--r-2); padding: 14px; }
.frb-title { font-size: 12.5px; font-weight: 800; margin-bottom: 8px; color: var(--text-light); }
.frb-row { display: flex; align-items: center; gap: 10px; padding: 9px 12px; background: var(--bg-soft); border-radius: var(--r-2); margin-bottom: 6px; cursor: pointer; transition: transform 0.15s; }
.frb-row:active { transform: scale(0.98); }
.frb-char { width: 34px; height: 34px; border-radius: 50%; overflow: hidden; position: relative; flex-shrink: 0; }
.frb-char .char-illustration { position: absolute; inset: 0; }
.frb-char svg { width: 100%; height: 100%; }
.frb-body { font-size: 13px; flex: 1; }
.frb-chem { color: var(--text-soft); font-size: 12px; margin-left: 4px; }
.nudge-target-box { background: var(--bg-soft); border-radius: var(--r-2); padding: 13px 15px; margin-bottom: 14px; }
.nudge-target-item { font-size: 12.5px; line-height: 1.75; color: var(--text-soft); padding: 3px 0; }

/* 공감 버튼 */
.empathy-btn { margin-top: 14px; white-space: nowrap; background: transparent; border: 1px solid var(--line-strong); color: var(--text); font-family: inherit; font-size: 13px; font-weight: 700; padding: 9px 16px; border-radius: var(--r-pill); cursor: pointer; transition: transform 0.15s, background 0.2s; }
.empathy-btn:active { transform: scale(0.94); }
.empathy-btn.done { background: var(--accent); border-color: var(--accent); color: #121212; }

/* 조기 CTA */
.early-cta { display: flex; align-items: center; gap: 12px; background: var(--bg-soft); border-radius: var(--r-2); padding: 14px 16px; margin-bottom: 28px; cursor: pointer; font-size: 13px; transition: transform 0.15s; }
.early-cta:active { transform: scale(0.98); }
.early-cta-emoji { font-size: 18px; }
.early-cta-text { flex: 1; line-height: 1.6; color: var(--text-soft); }
.early-cta-text b { color: var(--text); }
.early-cta-arrow { font-size: 12px; font-weight: 800; color: var(--accent-deep); white-space: nowrap; }

/* ==========================================================================
   4. 처방 (타임오프클럽) — 다크 밴드로 화면 전환
   ========================================================================== */
.rx-divider { margin: 32px -16px 0; padding: 44px 24px 40px; background: var(--dark); position: relative; overflow: hidden; }
.rx-divider::before { display: none; }
.rx-divider-eyebrow { font-family: var(--font-numeric); font-size: 10px; font-weight: 800; letter-spacing: 0.26em; color: var(--accent); text-align: center; margin-bottom: 16px; text-transform: uppercase; }
.rx-divider-title { font-family: var(--font-display); font-size: 32px; font-weight: 800; line-height: 1.26; letter-spacing: -0.042em; text-align: center; margin-bottom: 10px; color: #fff; }
.rx-divider-title .hl { color: var(--accent); }
.rx-divider-sub { font-size: 13.5px; color: var(--on-dark-soft); text-align: center; line-height: 1.7; }
.rx-divider-brand-row { text-align: center; }
.rx-divider-brand { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; padding: 8px 16px; background: rgba(255,255,255,0.1); color: #fff; border-radius: var(--r-pill); font-family: var(--font-numeric); font-size: 10.5px; font-weight: 800; letter-spacing: 0.16em; }
.rx-divider-brand .brand-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.rx-section { margin: 0 -16px 14px; padding: 28px 16px 16px; background: var(--bg); }
.rx-bridge { background: var(--card); border-radius: 0; padding: 0 0 24px; margin-bottom: 24px; box-shadow: none; position: relative; }
.rx-bridge::before { display: none; }
.rx-bridge-eyebrow { font-family: var(--font-numeric); font-size: 10px; color: var(--text-light); font-weight: 800; margin-bottom: 10px; }
.rx-bridge-title { font-family: var(--font-display); font-size: 24px; font-weight: 800; line-height: 1.32; letter-spacing: -0.038em; margin-bottom: 14px; }
.rx-bridge-title .hl { -webkit-text-fill-color: currentColor; color: var(--text); background: linear-gradient(to top, rgba(30,215,96,0.38) 0.06em, rgba(30,215,96,0.38) 0.3em, transparent 0.3em); }
.rx-bridge-body { font-size: 14.5px; line-height: 1.75; color: var(--text-soft); margin-bottom: 16px; }
.rx-bridge-body b { color: var(--text); }
.rx-prescription { background: var(--bg-soft); border-radius: var(--r-2); padding: 14px 16px; display: flex; align-items: center; gap: 14px; }
.rx-prescription-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; padding: 4px; }
.rx-prescription-icon svg { width: 100%; height: 100%; }
.rx-prescription-text { font-size: 13px; line-height: 1.6; color: var(--text-soft); }
.rx-prescription-text b { color: var(--text); }
.rx-prescription-text .rx-tag { display: inline-block; background: var(--accent); color: #121212; padding: 2px 8px; border-radius: var(--r-pill); font-size: 10px; font-weight: 800; margin-left: 4px; }
.rx-photo-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-3); overflow: hidden; margin-bottom: 24px; box-shadow: none; }
.rx-photo { width: 100%; aspect-ratio: 16/11; object-fit: cover; display: block; }
.rx-photo.rx-no-phone { display: flex; align-items: center; justify-content: center; padding: 0; background: var(--dark); }
.rx-photo.rx-no-phone svg { width: 100%; height: 100%; max-width: 360px; }
.rx-photo-body { padding: 22px 20px; }
.rx-photo-eyebrow { font-family: var(--font-numeric); font-size: 10px; color: var(--text-light); font-weight: 800; margin-bottom: 8px; }
.rx-photo-title { font-family: var(--font-display); font-size: 21px; font-weight: 700; line-height: 1.34; letter-spacing: -0.038em; margin-bottom: 12px; }
.rx-photo-desc { font-size: 13.5px; line-height: 1.75; color: var(--text-soft); }
.rx-photo-desc b { color: var(--text); }
.rx-photo-bullets { margin-top: 14px; }
.rx-photo-bullet { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; line-height: 1.6; padding: 5px 0; color: var(--text-soft); }
.rx-photo-bullet::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); flex-shrink: 0; margin-top: 8px; }
.method-mini-card { background: var(--bg-soft); border-radius: var(--r-2); padding: 15px 16px; margin-top: 12px; }
.method-mini-card.talk, .method-mini-card.solo { background: var(--dark-mid); color: #fff; }
.method-mini-top { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.method-mini-emoji { font-size: 19px; line-height: 1; }
.method-mini-title { font-size: 15.5px; font-weight: 700; letter-spacing: -0.03em; color: var(--text); }
.method-mini-card.talk .method-mini-title, .method-mini-card.solo .method-mini-title { color: #fff; }
.method-mini-body { font-size: 13px; line-height: 1.7; color: var(--text-soft); }
.method-mini-card.talk .method-mini-body, .method-mini-card.solo .method-mini-body { color: var(--on-dark-soft); }
.method-mini-body b { color: var(--text); }
.method-mini-card.talk .method-mini-body b, .method-mini-card.solo .method-mini-body b { color: var(--accent); }
.rx-info { background: var(--bg-soft); border-radius: var(--r-3); padding: 20px; margin-bottom: 24px; box-shadow: none; }
.rx-info-title { font-size: 11px; font-weight: 800; color: var(--text-light); margin-bottom: 12px; }
.rx-info-row { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line-strong); font-size: 13px; }
.rx-info-row:last-child { border-bottom: none; }
.rx-info-row .label { font-size: 10.5px; color: var(--text-light); font-weight: 800; letter-spacing: 0.06em; width: 52px; flex-shrink: 0; }
.rx-info-row .val { flex: 1; line-height: 1.6; color: var(--text-soft); }
.rx-info-row .val b { color: var(--text); }
.rx-spots-mini { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 4px; }
.rx-spots-mini .pill { background: var(--card); padding: 4px 10px; border-radius: var(--r-pill); font-size: 11px; font-weight: 700; color: var(--text-soft); }
.rx-cta { background: var(--dark); border-radius: var(--r-3); padding: 28px 22px 24px; color: #fff; text-align: center; box-shadow: none; margin-bottom: 24px; position: relative; overflow: hidden; }
.rx-cta::before { display: none; }
.rx-cta-eyebrow { font-family: var(--font-numeric); font-size: 10px; color: var(--accent); font-weight: 800; margin-bottom: 12px; }
.rx-cta-title { font-family: var(--font-display); font-size: 25px; font-weight: 800; line-height: 1.32; letter-spacing: -0.038em; margin-bottom: 8px; }
.rx-cta-sub { font-size: 13px; color: var(--on-dark-soft); margin-bottom: 20px; line-height: 1.65; }
.rx-cta-btn { background: var(--accent); color: #121212; border: none; padding: 16px 30px; border-radius: var(--r-pill); font-size: 15px; font-weight: 800; cursor: pointer; letter-spacing: -0.02em; display: inline-flex; align-items: center; justify-content: center; }
.rx-cta-btn:hover { background: var(--accent-press); }
.rx-cta-secondary { display: inline-block; margin-top: 14px; font-size: 12px; color: var(--on-dark-soft); text-decoration: underline; text-underline-offset: 2px; cursor: pointer; }

/* 구 타임오프클럽 블록 (호환 유지) */
.toc-hero { background: var(--dark); color: #fff; border-radius: var(--r-3); padding: 28px 22px; margin-bottom: 12px; text-align: center; position: relative; overflow: hidden; }
.toc-hero::before { display: none; }
.toc-hero-eyebrow { font-family: var(--font-numeric); font-size: 10px; font-weight: 800; color: var(--accent); margin-bottom: 12px; }
.toc-hero-emoji { font-size: 44px; margin-bottom: 12px; }
.toc-hero-title { font-family: var(--font-display); font-size: 26px; font-weight: 800; line-height: 1.28; margin-bottom: 10px; letter-spacing: -0.04em; }
.toc-hero-title .hl { color: var(--accent); }
.toc-hero-sub { font-size: 13px; color: var(--on-dark-soft); line-height: 1.7; }
.toc-block { background: var(--bg-soft); border-radius: var(--r-3); padding: 22px 20px; margin-bottom: 12px; box-shadow: none; }
.toc-block-eyebrow { font-family: var(--font-numeric); font-size: 10px; font-weight: 800; color: var(--text-light); margin-bottom: 8px; }
.toc-block-title { font-family: var(--font-display); font-size: 21px; font-weight: 700; line-height: 1.32; letter-spacing: -0.038em; margin-bottom: 10px; }
.toc-block-title .hl { color: var(--accent-deep); }
.toc-block-body { font-size: 14px; color: var(--text-soft); line-height: 1.75; }
.toc-block-body b { color: var(--text); }
.toc-schedule { display: flex; gap: 8px; margin-top: 14px; }
.toc-schedule-item { flex: 1; background: var(--card); padding: 14px 10px; border-radius: var(--r-2); text-align: center; }
.toc-schedule-day { font-size: 13px; font-weight: 700; }
.toc-schedule-time { font-family: var(--font-numeric); font-size: 12px; color: var(--text-soft); font-weight: 700; margin-top: 3px; }
.toc-spots-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; margin-top: 12px; }
.toc-spot { aspect-ratio: 1; border-radius: var(--r-2); padding: 6px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; text-align: center; background: var(--dark-mid); }
.toc-spot.s-0 { background: #2C5A8C; } .toc-spot.s-1 { background: #8C2F42; } .toc-spot.s-2 { background: #2F6B45; }
.toc-spot.s-3 { background: #7A3E96; } .toc-spot.s-4 { background: #4E5A62; }
.toc-spot-emoji { font-size: 20px; margin-bottom: 3px; }
.toc-spot-name { font-size: 10.5px; font-weight: 700; }
.toc-spot-vibe { font-size: 8px; opacity: 0.8; margin-top: 1px; font-weight: 600; line-height: 1.2; }
.toc-methods-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.038em; }
.toc-methods-sub { font-size: 13px; color: var(--text-soft); margin-bottom: 12px; }
.method-cards { display: flex; flex-direction: column; gap: 10px; }
.method-card { padding: 22px 20px; border-radius: var(--r-3); color: #fff; cursor: pointer; position: relative; overflow: hidden; background: var(--dark-mid); }
.method-card.talk { background: #2C5A8C; }
.method-card.solo { background: #7A3E96; }
.method-card::before { display: none; }
.method-top { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 12px; }
.method-emoji { font-size: 36px; flex-shrink: 0; }
.method-title { font-family: var(--font-display); font-size: 21px; font-weight: 700; line-height: 1.24; letter-spacing: -0.035em; }
.method-tag { font-size: 12px; color: rgba(255,255,255,0.8); margin-top: 5px; font-weight: 700; }
.method-body { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.9); margin-bottom: 12px; }
.method-hook { font-size: 13px; font-weight: 600; background: rgba(0,0,0,0.22); padding: 11px 14px; border-radius: var(--r-2); line-height: 1.6; }
.method-recommend-tag { display: inline-block; font-size: 9px; font-weight: 800; padding: 3px 9px; border-radius: var(--r-pill); background: var(--accent); color: #121212; margin-bottom: 8px; }
.method-card.talk .method-recommend-tag, .method-card.solo .method-recommend-tag { color: #121212; }
.toc-cta { background: var(--dark); color: #fff; border-radius: var(--r-3); padding: 24px 20px; text-align: center; margin-bottom: 12px; box-shadow: none; }
.toc-cta-text { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.035em; }
.toc-cta-sub { font-size: 13px; color: var(--on-dark-soft); margin-bottom: 16px; }
.toc-cta-buttons { display: flex; gap: 8px; }
.toc-cta-btn { flex: 1; padding: 14px 8px; border-radius: var(--r-pill); font-size: 13px; font-weight: 800; cursor: pointer; font-family: inherit; border: none; }
.toc-cta-btn.yes { background: var(--accent); color: #121212; }
.toc-cta-btn.no { background: rgba(255,255,255,0.12); color: #fff; }
.trust-footer { background: var(--bg-soft); padding: 18px 20px; border-radius: var(--r-2); margin-bottom: 14px; }
.trust-footer-title { font-size: 10.5px; font-weight: 800; color: var(--text-light); margin-bottom: 10px; }
.trust-footer-body { font-size: 12px; line-height: 1.75; color: var(--text-soft); }
.trust-footer-body b { color: var(--text); }
.powered-link { display: inline-block; margin-top: 12px; padding: 8px 14px; background: var(--card); border-radius: var(--r-pill); font-size: 12px; font-weight: 700; color: var(--text); text-decoration: none; cursor: pointer; border: 1px solid var(--line); }

/* 댓글 작성 */
.post-comment-card { background: var(--bg-soft); padding: 22px 20px; border-radius: var(--r-3); box-shadow: none; margin-bottom: 28px; }
.pc-title { font-family: var(--font-display); font-size: 19px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.035em; }
.pc-sub { font-size: 13px; color: var(--text-soft); margin-bottom: 14px; }
.pc-input { width: 100%; padding: 13px; border: 1px solid var(--line-strong); border-radius: var(--r-2); font-family: inherit; font-size: 14px; resize: none; margin-bottom: 8px; background: var(--card); color: var(--text); }
.pc-input:focus { outline: none; border-color: var(--text); }
.pc-submit { padding: 13px 24px; background: var(--accent); color: #121212; border: none; border-radius: var(--r-pill); font-weight: 800; cursor: pointer; font-family: inherit; font-size: 14px; width: 100%; }
.pc-comments-list { display: flex; flex-direction: column; gap: 0; max-height: 320px; overflow-y: auto; margin-top: 14px; }

/* 푸터 */
.footer-share { background: var(--bg-soft); border-radius: var(--r-3); padding: 22px 20px; margin-bottom: 24px; box-shadow: none; }
.footer-share-eyebrow { font-family: var(--font-numeric); font-size: 10px; color: var(--text-light); font-weight: 800; margin-bottom: 8px; }
.footer-share-title { font-family: var(--font-display); font-size: 19px; font-weight: 700; line-height: 1.34; letter-spacing: -0.035em; margin-bottom: 16px; }
.new-footer { padding: 20px 0 24px; text-align: center; }
.new-footer-meta { font-size: 11px; color: var(--text-light); line-height: 1.75; padding: 16px 18px; background: var(--bg-soft); border-radius: var(--r-2); margin-bottom: 20px; text-align: left; }
.new-footer-meta b { color: var(--text-soft); }
.new-footer-restart { display: inline-block; padding: 14px 34px; background: transparent; color: var(--text); border: 1px solid var(--line-strong); border-radius: var(--r-pill); font-size: 14px; font-weight: 700; cursor: pointer; font-family: inherit; }
.restart { text-align: center; margin-top: 8px; }
.restart a { color: var(--text-light); font-size: 13px; text-decoration: underline; cursor: pointer; }

/* ==========================================================================
   5. 친구 게이트 · 궁합 공개 · 매력 카드
   ========================================================================== */
.gate-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-3); padding: 26px 22px 22px; box-shadow: none; text-align: center; margin-bottom: 20px; position: relative; overflow: hidden; }
.gate-blur { filter: blur(14px) saturate(0.8); opacity: 0.8; }
.gate-char { width: 128px; height: 128px; border-radius: 50%; margin: 0 auto; overflow: hidden; }
.gate-char svg { width: 100%; height: 100%; display: block; }
.gate-lock { position: absolute; top: 62px; left: 50%; transform: translateX(-50%); font-size: 34px; }
.gate-caption { margin-top: 16px; font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light); }
.gate-line { margin-top: 14px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 13.5px; color: var(--text-soft); line-height: 1.7; }
.gate-line b { color: var(--text); }
.reveal-card { background: var(--card); border: 1px solid var(--accent); border-radius: var(--r-3); padding: 22px 20px; margin-bottom: 24px; box-shadow: none; }
.reveal-eyebrow { font-family: var(--font-numeric); font-size: 10px; font-weight: 800; letter-spacing: 0.18em; color: var(--accent-deep); margin-bottom: 18px; text-align: center; text-transform: uppercase; }
.reveal-row { display: flex; align-items: center; justify-content: center; gap: 12px; }
.reveal-side { flex: 1; text-align: center; }
.reveal-char { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 10px; overflow: hidden; }
.reveal-char svg { width: 100%; height: 100%; display: block; }
.reveal-name { font-size: 11px; color: var(--text-light); line-height: 1.5; font-weight: 700; }
.reveal-name b { display: block; font-size: 14px; color: var(--text); margin-top: 2px; }
.reveal-mid { flex-shrink: 0; text-align: center; padding-bottom: 20px; }
.reveal-emoji { font-size: 24px; }
.reveal-label { font-size: 10.5px; font-weight: 800; color: var(--text-soft); margin-top: 3px; white-space: nowrap; }
.reveal-text { margin-top: 18px; font-size: 13.5px; line-height: 1.7; color: var(--text-soft); text-align: center; }
.reveal-guess { margin-top: 14px; background: var(--bg-soft); border-radius: var(--r-2); padding: 13px 15px; font-size: 12.5px; line-height: 1.7; color: var(--text-soft); text-align: center; }
.reveal-guess b { color: var(--text); }
.charm-card { background: var(--bg-soft); border-radius: var(--r-3); padding: 22px 20px; margin-bottom: 24px; box-shadow: none; display: flex; flex-direction: column; gap: 18px; }
.charm-block { border-left: none; padding-left: 0; }
.charm-label { font-size: 10.5px; font-weight: 800; color: var(--text-light); margin-bottom: 8px; }
.charm-text { font-size: 15px; line-height: 1.7; font-weight: 600; letter-spacing: -0.025em; }
.charm-block.shadow .charm-text { font-size: 13.5px; color: var(--text-soft); font-weight: 500; }
.charm-kakao { border-top: 1px solid var(--line-strong); padding-top: 18px; }
.charm-kakao-label { font-size: 11px; color: var(--text-light); font-weight: 800; margin-bottom: 10px; }
.charm-kakao-bubble { display: inline-block; background: var(--kakao); color: #121212; font-size: 15px; font-weight: 700; padding: 11px 16px; border-radius: 16px 16px 16px 4px; letter-spacing: -0.03em; }
.tag-steps { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.tag-step { font-size: 12.5px; color: var(--text-soft); line-height: 1.6; display: flex; align-items: baseline; gap: 8px; }
.tag-step > b:first-child { flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%; background: var(--accent); color: #121212; font-family: var(--font-numeric); font-size: 10.5px; display: inline-flex; align-items: center; justify-content: center; }
.tag-step b { color: var(--text); }

/* ==========================================================================
   6. 오버레이 — 모달 · 1분 챌린지 · 안구운동 · 캡처 · 토스트
   ========================================================================== */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); display: none; align-items: center; justify-content: center; padding: 16px; z-index: 100; overflow-y: auto; }
.modal-overlay.active { display: flex; animation: modal-fade 150ms ease-out; }
.modal { background: var(--card); border-radius: var(--r-3); padding: 28px 22px; text-align: center; max-width: 380px; width: 100%; max-height: 92vh; overflow-y: auto; }
.modal-overlay.active .modal { animation: modal-pop 220ms var(--ease-out-strong); }
@keyframes modal-fade { from { opacity: 0; } }
@keyframes modal-pop { from { opacity: 0; transform: scale(0.96) translateY(8px); } }
.modal-emoji { font-size: 44px; margin-bottom: 12px; }
.modal h3 { font-family: var(--font-display); font-size: 21px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.035em; }
.modal p { color: var(--text-soft); font-size: 14px; margin-bottom: 18px; line-height: 1.7; white-space: pre-line; }
.modal-close { background: var(--accent); color: #121212; border: none; padding: 14px 32px; border-radius: var(--r-pill); font-size: 15px; font-weight: 800; cursor: pointer; font-family: inherit; }

.ch1-overlay { position: fixed; inset: 0; background: var(--dark); display: none; align-items: center; justify-content: center; z-index: 200; padding: 20px; flex-direction: column; }
.ch1-overlay.active { display: flex; }
.ch1-eyebrow { font-family: var(--font-numeric); font-size: 10px; font-weight: 800; color: var(--accent); margin-bottom: 14px; }
.ch1-title { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: #fff; text-align: center; line-height: 1.32; letter-spacing: -0.04em; margin-bottom: 12px; max-width: 320px; }
.ch1-sub { font-size: 13.5px; color: var(--on-dark-soft); text-align: center; line-height: 1.7; margin-bottom: 32px; max-width: 320px; }
.ch1-circle-wrap { width: 200px; height: 200px; position: relative; margin-bottom: 26px; }
.ch1-ring { width: 100%; height: 100%; transform: rotate(-90deg); }
.ch1-ring-bg { stroke: rgba(255,255,255,0.12); fill: none; stroke-width: 4; }
.ch1-ring-fill { stroke: var(--accent); fill: none; stroke-width: 4; stroke-linecap: round; stroke-dasharray: 565.5; stroke-dashoffset: 565.5; transition: stroke-dashoffset 1s linear; }
.ch1-time { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; }
.ch1-time-num { font-family: var(--font-numeric); font-size: 58px; font-weight: 800; line-height: 1; letter-spacing: -0.04em; font-variant-numeric: tabular-nums; }
.ch1-time-unit { font-family: var(--font-numeric); font-size: 10px; color: var(--on-dark-soft); margin-top: 8px; letter-spacing: 0.2em; }
.ch1-fact { width: 100%; max-width: 320px; min-height: 96px; margin-bottom: 22px; padding: 14px 18px; background: rgba(255,255,255,0.06); border-radius: var(--r-2); display: flex; align-items: center; justify-content: center; text-align: center; position: relative; }
.ch1-fact-inner { transition: opacity 0.4s ease; width: 100%; display: flex; flex-direction: column; align-items: center; }
.ch1-fact-inner.swapping { opacity: 0; }
.ch1-fact-eyebrow { font-family: var(--font-numeric); font-size: 9.5px; font-weight: 800; color: var(--accent); letter-spacing: 0.18em; margin-bottom: 8px; }
.ch1-fact-body { font-size: 13.5px; line-height: 1.6; color: #fff; font-weight: 500; }
.ch1-fact-body b { color: var(--accent); }
.ch1-stat { font-size: 12px; color: var(--on-dark-soft); text-align: center; margin-bottom: 18px; }
.ch1-actions { display: flex; flex-direction: column; gap: 8px; width: 100%; max-width: 320px; }
.ch1-btn { padding: 16px; border-radius: var(--r-pill); font-size: 15px; font-weight: 800; cursor: pointer; font-family: inherit; border: none; }
.ch1-btn.primary { background: var(--accent); color: #121212; }
.ch1-btn.skip { background: rgba(255,255,255,0.12); color: #fff; }
.ch1-fail-msg { font-size: 13px; color: #FF6B6B; font-weight: 700; margin-top: 12px; text-align: center; min-height: 22px; max-width: 320px; line-height: 1.6; }
@keyframes ch1-shake { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-6px); } 75% { transform: translateX(6px); } }
.ch1-circle-wrap.shake { animation: ch1-shake 0.4s ease-in-out; }
.ch1-comments { width: 100%; max-width: 360px; margin-top: 18px; }
.ch1-comments-title { font-size: 10px; font-weight: 800; color: var(--on-dark-soft); letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 10px; text-align: center; }
.ch1-comments-marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent 0, black 12%, black 88%, transparent 100%); -webkit-mask-image: linear-gradient(90deg, transparent 0, black 12%, black 88%, transparent 100%); }
.ch1-comments-track { display: flex; gap: 8px; animation: ch1-marquee 30s linear infinite; }
@keyframes ch1-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ch1-comment-bubble { flex-shrink: 0; background: rgba(255,255,255,0.07); padding: 11px 14px; border-radius: var(--r-2); min-width: 240px; max-width: 280px; }
.ch1-comment-name { font-size: 10px; font-weight: 800; color: var(--accent); margin-bottom: 4px; }
.ch1-comment-body { font-size: 12px; line-height: 1.55; color: var(--on-dark-soft); }
.ch1-notif-layer { position: absolute; top: max(14px, env(safe-area-inset-top)); left: 12px; right: 12px; z-index: 30; display: flex; flex-direction: column; gap: 8px; pointer-events: none; }
.ch1-notif { pointer-events: auto; display: flex; gap: 10px; align-items: flex-start; background: rgba(255,255,255,0.97); color: #121212; border-radius: var(--r-3); padding: 11px 14px; box-shadow: 0 12px 30px rgba(0,0,0,0.4); transform: translateY(-130%); opacity: 0; transition: transform 380ms var(--ease-out-strong), opacity 300ms ease; cursor: pointer; }
.ch1-notif.in { transform: translateY(0); opacity: 1; }
.ch1-notif:active { transform: scale(0.97); }
.ch1-notif-dot { width: 28px; height: 28px; border-radius: var(--r-2); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.ch1-notif-body { flex: 1; min-width: 0; }
.ch1-notif-app { font-size: 10.5px; font-weight: 800; color: #6A6A6A !important; margin-bottom: 3px; }
.ch1-notif-app span { font-weight: 500; color: #949494 !important; }
.ch1-notif-text { font-size: 13px; line-height: 1.5; font-weight: 600; color: #121212 !important; }
/* 챌린지 결과 인증 카드 */
.ch1-result-screen { display: none; position: absolute; inset: 0; flex-direction: column; align-items: center; justify-content: center; padding: 24px; }
.ch1-overlay.show-result .ch1-circle-wrap, .ch1-overlay.show-result .ch1-fact, .ch1-overlay.show-result .ch1-fail-msg, .ch1-overlay.show-result .ch1-actions { display: none !important; }
.ch1-overlay.show-result .ch1-result-screen { display: flex; }
.ch1-result-card { width: 100%; max-width: 280px; aspect-ratio: 9/16; border-radius: var(--r-3); overflow: hidden; padding: 26px 22px; display: flex; flex-direction: column; color: #fff; box-shadow: 0 20px 40px rgba(0,0,0,0.5); position: relative; }
.ch1-result-card.failed { background: #5A1A26; }
.ch1-result-card.success { background: #17402C; }
.ch1-result-card::after { display: none; }
.ch1-result-top { font-family: var(--font-numeric); font-size: 9px; font-weight: 800; letter-spacing: 0.24em; color: rgba(255,255,255,0.85); }
.ch1-result-test { font-size: 12px; font-weight: 600; margin-top: 5px; opacity: 0.95; }
.ch1-result-mid { flex: 1; display: flex; flex-direction: column; justify-content: center; text-align: center; }
.ch1-result-emoji { font-size: 60px; margin-bottom: 16px; line-height: 1; }
.ch1-result-big { font-family: var(--font-numeric); font-size: 78px; font-weight: 800; line-height: 1; letter-spacing: -0.055em; margin-bottom: 6px; font-variant-numeric: tabular-nums; }
.ch1-result-big .sec { font-size: 26px; font-weight: 700; opacity: 0.85; letter-spacing: 0; margin-left: 4px; }
.ch1-result-verdict { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.035em; }
.ch1-result-quote { font-size: 12.5px; line-height: 1.6; opacity: 0.9; padding: 0 6px; }
.ch1-result-cause { margin: 12px auto 0; background: rgba(255,255,255,0.12); border-radius: var(--r-2); padding: 10px 14px; font-size: 12px; line-height: 1.6; }
.ch1-result-cause b { font-size: 14px; }
.ch1-result-bottom { font-family: var(--font-numeric); font-size: 10.5px; font-weight: 700; opacity: 0.9; text-align: center; letter-spacing: 0.06em; }
.ch1-result-actions { display: flex; flex-direction: column; gap: 8px; width: 100%; max-width: 320px; margin-top: 18px; }
.ch1-result-btn { padding: 14px; border-radius: var(--r-pill); font-size: 13.5px; font-weight: 800; cursor: pointer; font-family: inherit; border: none; }
.ch1-result-btn.primary { background: var(--accent); color: #121212; }
.ch1-result-btn.kakao { background: var(--kakao); color: #121212; }
.ch1-result-btn.test { background: rgba(255,255,255,0.14); color: #fff; }

/* 안구운동 */
.eye-game-section { background: var(--bg-soft); border-radius: var(--r-3); padding: 26px 20px; margin: 24px 0; text-align: center; box-shadow: none; }
.eye-game-eyebrow { font-family: var(--font-numeric); font-size: 10px; font-weight: 800; color: var(--text-light); margin-bottom: 10px; }
.eye-game-title { font-family: var(--font-display); font-size: 24px; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.04em; line-height: 1.28; }
.eye-game-sub { font-size: 13.5px; color: var(--text-soft); margin-bottom: 20px; line-height: 1.6; }
.eye-game-area { background: var(--card); border-radius: var(--r-3); padding: 20px 16px; box-shadow: none; }
.eye-game-stage { width: 100%; aspect-ratio: 1; max-width: 320px; margin: 0 auto; position: relative; background: var(--dark); border-radius: var(--r-2); overflow: hidden; }
.eye-start-screen, .eye-active-screen, .eye-complete-screen { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px; }
.eye-active-screen, .eye-complete-screen { display: none; }
.eye-game-area.playing .eye-start-screen { display: none; }
.eye-game-area.playing .eye-active-screen { display: flex; }
.eye-game-area.done .eye-start-screen, .eye-game-area.done .eye-active-screen { display: none; }
.eye-game-area.done .eye-complete-screen { display: flex; }
.eye-start-emoji { font-size: 46px; margin-bottom: 14px; }
.eye-start-text { font-size: 13.5px; color: var(--on-dark-soft); margin-bottom: 20px; line-height: 1.6; font-weight: 500; }
.eye-start-btn { background: var(--accent); color: #121212; border: none; padding: 14px 34px; border-radius: var(--r-pill); font-size: 15px; font-weight: 800; cursor: pointer; font-family: inherit; }
.eye-dot { position: absolute; width: 28px; height: 28px; border-radius: 50%; background: var(--accent); top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2; }
.eye-dot.move-horizontal { animation: eye-horizontal 3s ease-in-out infinite; }
@keyframes eye-horizontal { 0%,100% { left: 16%; top: 50%; } 50% { left: 84%; top: 50%; } }
.eye-dot.move-vertical { animation: eye-vertical 3s ease-in-out infinite; }
@keyframes eye-vertical { 0%,100% { left: 50%; top: 16%; } 50% { left: 50%; top: 84%; } }
.eye-dot.move-circle { animation: eye-circle 4s linear infinite; }
@keyframes eye-circle { 0% { left: 84%; top: 50%; } 25% { left: 50%; top: 84%; } 50% { left: 16%; top: 50%; } 75% { left: 50%; top: 16%; } 100% { left: 84%; top: 50%; } }
.eye-dot.move-figure8 { animation: eye-figure8 4s ease-in-out infinite; }
@keyframes eye-figure8 { 0% { left: 50%; top: 50%; } 12.5% { left: 75%; top: 28%; } 25% { left: 86%; top: 50%; } 37.5% { left: 75%; top: 72%; } 50% { left: 50%; top: 50%; } 62.5% { left: 25%; top: 28%; } 75% { left: 14%; top: 50%; } 87.5% { left: 25%; top: 72%; } 100% { left: 50%; top: 50%; } }
.eye-blink-icon { font-size: 72px; animation: eye-blink 1s ease-in-out infinite; }
@keyframes eye-blink { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.25; transform: scale(0.85); } }
.eye-round-label { position: absolute; top: 14px; left: 14px; right: 14px; z-index: 3; display: flex; justify-content: space-between; align-items: center; }
.eye-round-name { font-size: 11px; font-weight: 800; background: rgba(255,255,255,0.9); color: #121212; padding: 4px 10px; border-radius: var(--r-pill); }
.eye-round-count { font-family: var(--font-numeric); font-size: 10.5px; font-weight: 800; color: #121212; background: rgba(255,255,255,0.9); padding: 4px 10px; border-radius: var(--r-pill); letter-spacing: 0.08em; }
.eye-instruction { position: absolute; bottom: 16px; left: 0; right: 0; z-index: 3; font-size: 11.5px; color: var(--on-dark-soft); font-weight: 700; margin: 0 auto; max-width: fit-content; padding: 6px 14px; background: rgba(255,255,255,0.1); border-radius: var(--r-pill); }
.eye-rounds-list { display: flex; justify-content: center; gap: 6px; margin-top: 14px; }
.eye-round-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--bg-soft-2); transition: background-color 250ms ease, transform 250ms var(--ease-out-strong); }
.eye-round-dot.done { background: var(--accent); opacity: 0.5; }
.eye-round-dot.current { background: var(--accent); transform: scale(1.4); }
.eye-progress-track { margin-top: 10px; height: 4px; background: var(--bg-soft-2); border-radius: var(--r-1); overflow: hidden; }
.eye-progress-fill { height: 100%; background: var(--accent); border-radius: var(--r-1); transition: width 0.3s linear; width: 0; }
.eye-complete-emoji { font-size: 54px; margin-bottom: 12px; }
.eye-complete-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.035em; color: #fff; }
.eye-complete-stats { font-size: 13px; color: var(--on-dark-soft); margin-bottom: 18px; line-height: 1.65; }
.eye-complete-stats b { color: #fff; }
.eye-complete-actions { display: flex; gap: 8px; }
.eye-complete-btn { padding: 12px 20px; border-radius: var(--r-pill); font-size: 14px; font-weight: 800; cursor: pointer; font-family: inherit; border: none; }
.eye-complete-btn.primary { background: var(--accent); color: #121212; }
.eye-complete-btn.outline { background: rgba(255,255,255,0.14); color: #fff; border: none; }
.eye-prompt-overlay { position: fixed; inset: 0; background: var(--dark); display: none; align-items: center; justify-content: center; flex-direction: column; z-index: 240; padding: 20px; }
.eye-prompt-overlay.active { display: flex; animation: fadeIn 0.3s ease-out; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.eye-prompt-content { width: 100%; max-width: 360px; text-align: center; color: #fff; position: relative; }
.eye-prompt-close { position: absolute; top: -10px; right: -4px; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.12); color: #fff; border: none; font-size: 16px; cursor: pointer; font-family: inherit; }
.eye-prompt-emoji { font-size: 46px; margin-bottom: 14px; }
.eye-prompt-eyebrow { font-family: var(--font-numeric); font-size: 10px; font-weight: 800; color: var(--accent); margin-bottom: 12px; }
.eye-prompt-title { font-family: var(--font-display); font-size: 26px; font-weight: 800; line-height: 1.3; letter-spacing: -0.04em; margin-bottom: 14px; }
.eye-prompt-sub { font-size: 13.5px; color: var(--on-dark-soft); line-height: 1.7; margin-bottom: 30px; }
.eye-prompt-actions { display: flex; flex-direction: column; gap: 8px; max-width: 320px; margin: 0 auto; }
.eye-prompt-btn { padding: 16px; border-radius: var(--r-pill); font-size: 15px; font-weight: 800; cursor: pointer; font-family: inherit; border: none; }
.eye-prompt-btn.primary { background: var(--accent); color: #121212; }
.eye-prompt-btn.skip { background: rgba(255,255,255,0.12); color: #fff; }
.eye-fullscreen-game { width: 100%; max-width: 360px; display: flex; flex-direction: column; align-items: center; }
.eye-overlay-stage { width: 100%; aspect-ratio: 1; max-width: 320px; position: relative; background: rgba(255,255,255,0.06); border-radius: var(--r-2); margin-bottom: 16px; overflow: hidden; }
.eye-overlay-dot { position: absolute; width: 32px; height: 32px; border-radius: 50%; background: var(--accent); top: 50%; left: 50%; transform: translate(-50%, -50%); transition: left 2s ease-in-out, top 2s ease-in-out; z-index: 2; }
.eye-overlay-instruction { position: absolute; bottom: 16px; left: 0; right: 0; font-size: 12px; color: var(--on-dark-soft); text-align: center; font-weight: 700; }
.eye-overlay-progress-track { width: 100%; max-width: 320px; height: 4px; background: rgba(255,255,255,0.14); border-radius: var(--r-1); margin-bottom: 20px; overflow: hidden; }
.eye-overlay-progress-fill { height: 100%; background: var(--accent); border-radius: var(--r-1); width: 0; }
.eye-overlay-actions { width: 100%; max-width: 320px; }

/* 캡처 */
.capture-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.9); display: none; align-items: center; justify-content: center; flex-direction: column; z-index: 250; padding: 20px; }
.capture-overlay.active { display: flex; animation: fadeIn 0.3s ease-out; }
.capture-close { position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.14); color: #fff; border: none; font-size: 18px; cursor: pointer; font-family: inherit; }
.capture-hint { color: var(--on-dark-soft); font-size: 12.5px; font-weight: 700; margin-bottom: 14px; text-align: center; padding: 8px 16px; background: rgba(255,255,255,0.1); border-radius: var(--r-pill); }
.capture-card-wrap { width: 100%; max-width: 280px; }
.capture-insta-card { aspect-ratio: 9/16; border-radius: var(--r-3); box-shadow: 0 24px 48px rgba(0,0,0,0.5); }
.capture-download { margin-top: 18px; padding: 14px 26px; background: var(--accent); color: #121212; border: none; border-radius: var(--r-pill); font-size: 14px; font-weight: 800; cursor: pointer; font-family: inherit; }

/* 라이브 토스트 */
.live-toast { position: fixed; top: 16px; left: 50%; transform: translateX(-50%) translateY(-120px); background: var(--dark); padding: 10px 14px; border-radius: var(--r-pill); box-shadow: var(--shadow-strong); display: flex; align-items: center; gap: 10px; transition: transform 0.5s var(--ease-out-strong); z-index: 50; max-width: 340px; }
.live-toast.show { transform: translateX(-50%) translateY(0); }
.live-toast .lt-char { width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0; overflow: hidden; position: relative; }
.live-toast .lt-char .char-illustration { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.live-toast .lt-char .char-illustration svg { width: 100%; height: 100%; }
.live-toast .lt-text { font-size: 12px; line-height: 1.45; flex: 1; color: #fff; }
.live-toast .lt-text b { color: var(--accent); }
.live-toast .lt-time { font-family: var(--font-numeric); font-size: 10px; color: var(--on-dark-soft); font-weight: 700; }

/* 아이콘 */
.ds-icon { display: inline-flex; align-items: center; justify-content: center; vertical-align: -2px; }
.ds-icon svg { display: block; }

/* ==========================================================================
   7. 모션 레이어 — 프레스 피드백 · hover 게이트 · reduced-motion
   ========================================================================== */
.btn-primary, .ch1-entry-btn, .rx-cta-btn, .pc-submit, .gacha-btn, .modal-close, .eye-start-btn,
.mini-share-btn, .rs-share-btn, .footer-share-btn, .ch1-btn, .ch1-result-btn, .gacha-again-btn,
.insta-minimal-btn, .insta-share-btn, .capture-download, .new-footer-restart, .type-char, .rank-row,
.match-card, .rs-match-card, .share-btn, .hook-item, .ai-optional-btn, .toc-cta-btn, .lc-age-btn,
.btn-soft, .btn-secondary, .powered-link { transition: transform 160ms var(--ease-out-strong), background-color 200ms ease, border-color 200ms ease; }
.btn-primary:active, .ch1-entry-btn:active, .rx-cta-btn:active, .pc-submit:active, .gacha-btn:active,
.modal-close:active, .eye-start-btn:active, .mini-share-btn:active, .rs-share-btn:active,
.footer-share-btn:active, .ch1-btn:active, .ch1-result-btn:active, .gacha-again-btn:active,
.insta-minimal-btn:active, .insta-share-btn:active, .capture-download:active, .new-footer-restart:active,
.type-char:active, .rank-row:active, .match-card:active, .rs-match-card:active, .share-btn:active,
.ai-optional-btn:active, .toc-cta-btn:active, .btn-soft:active, .btn-secondary:active { transform: scale(0.97); }
.choice-btn { transition: transform 160ms var(--ease-out-strong), border-color 160ms ease, background-color 160ms ease; }
.choice-btn:active { transform: scale(0.985); }
.hero-dots span { transition: background-color 250ms ease, width 250ms var(--ease-out-strong); }
@media (hover: none), (pointer: coarse) {
  .choice-btn:hover, .hook-item:hover, .btn-primary:hover, .rank-row:hover, .match-card:hover,
  .rs-match-card:hover, .share-btn:hover, .mini-share-btn:hover, .rs-share-btn:hover,
  .footer-share-btn:hover, .new-footer-restart:hover, .method-card:hover, .map-q-cell:hover,
  .frb-row:hover, .type-char:hover { transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-char-card, .confetti-bit, .result-spark, .result-ring, .live-dot, .warn-dot, .loading-emoji,
  .ch1-circle-wrap.shake, .gacha-capsule.shaking, .btn-hero-mini, .ch1-comments-track,
  .ch1-entry-comments-track, .lc-tick-dot, .eye-blink-icon { animation: none !important; }
  .result-flash-overlay, .anim-shine::after { display: none !important; }
  .anim-card, .anim-char-pop, .result-card-v2, .result-nickname, .result-provocative-label,
  .anim-text-in, .signature-item.revealed, .signature-aside.revealed { animation-duration: 0.2s !important; }
  .choice-btn:hover, .btn-primary:hover, .hook-item:hover { transform: none; }
  .ch1-notif { transform: none; transition: opacity 200ms ease; }
  html { scroll-behavior: auto !important; }
}

/* ── 댓글 원탭 리액션 칩 ── */
.pc-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 14px; }
.pc-chip { background: var(--bg-soft); border: 1px solid transparent; color: var(--text); font-family: inherit; font-size: 13px; font-weight: 600; padding: 9px 14px; border-radius: 500px; cursor: pointer; transition: transform 160ms var(--ease-out-strong), background-color 160ms ease; }
.pc-chip:active { transform: scale(0.96); }
.pc-chip.done { background: var(--accent); color: var(--accent-ink, #121212); border-color: var(--accent); }
.pc-sub { margin-bottom: 12px; }

/* ── 친구 유형 맞히기: 원탭 전송 ── */
.footer-share-desc { font-size: 13px; line-height: 1.6; color: var(--text-soft); margin-bottom: 16px; }
.footer-share-desc b { color: var(--text); }
.friend-tag-send { flex-shrink: 0; font-size: 12px; font-weight: 700; color: var(--accent-deep); background: var(--accent-soft); padding: 6px 11px; border-radius: 500px; white-space: nowrap; }
.friend-tag-item { transition: transform 160ms var(--ease-out-strong), background-color 160ms ease; }
.friend-tag-item:active { transform: scale(0.98); }

/* ── 처방 별도 페이지 ── */
.rx-divider-btn { display: inline-block; margin-top: 22px; padding: 15px 30px; background: var(--accent); color: #121212; border: none; border-radius: var(--r-pill); font-family: inherit; font-size: 15px; font-weight: 800; letter-spacing: -0.02em; cursor: pointer; transition: transform 160ms var(--ease-out-strong); }
.rx-divider-btn:active { transform: scale(0.97); }
.rx-divider .rx-divider-brand-row { margin-top: 4px; }
.rx-page-top { display: flex; align-items: center; justify-content: space-between; padding: 16px 0 8px; }
.rx-back { font-size: 13.5px; font-weight: 700; color: var(--text-soft); cursor: pointer; padding: 6px 0; }
.rx-back:active { opacity: 0.6; }
.rx-page-type { font-size: 12px; font-weight: 700; color: var(--text-soft); background: var(--bg-soft); padding: 5px 12px; border-radius: var(--r-pill); }
.rx-page-head { padding: 8px 0 20px; }
.rx-page-head .rx-divider-eyebrow { text-align: left; margin-bottom: 10px; color: var(--accent-deep); }
.rx-page-title { font-family: var(--font-display); font-size: 30px; font-weight: 800; line-height: 1.25; letter-spacing: -0.042em; }

/* ── 친구 섹션 통합: 지목 + 일반 공유 한 흐름 ── */
.rs-pick-title { font-size: 15px; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 6px; }
.rs-pick-desc { font-size: 12.5px; line-height: 1.6; color: var(--text-soft); margin-bottom: 14px; }
.rs-pick-desc b { color: var(--text); }
.relation-share-card .friend-tag-list { margin-bottom: 4px; }
.rs-or { position: relative; text-align: center; font-size: 11px; font-weight: 700; color: var(--text-light); letter-spacing: 0.04em; margin: 20px 0 12px; }
.rs-or::before, .rs-or::after { content: ""; position: absolute; top: 50%; width: calc(50% - 76px); height: 1px; background: var(--line); }
.rs-or::before { left: 0; }
.rs-or::after { right: 0; }

/* ══ 랜딩 히어로: 한글 아이브로우 · 이미지 비인터랙티브 ══ */
.hero-eyebrow { font-family: var(--font-core); font-size: 12px; font-weight: 800; letter-spacing: 0.02em; }
.hero-char-card { cursor: default; }

/* ══ 처방 CTA — 페이지에서 가장 눌러야 할 버튼 ══ */
.rx-divider-btn { display: block; width: 100%; max-width: 300px; margin: 26px auto 0; padding: 19px 24px; font-size: 17px; font-weight: 800; letter-spacing: -0.03em; box-shadow: 0 8px 24px rgba(30,215,96,0.28); }

/* ══ 매력 / 그림자 / 카톡 — 아이콘 + 좌측 컬러바 카드 ══ */
.charm-card { background: transparent; padding: 0; gap: 10px; }
.charm-row { display: flex; gap: 13px; align-items: flex-start; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-2); padding: 17px 18px; position: relative; overflow: hidden; }
.charm-row::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; }
.charm-row.good::before { background: var(--accent); }
.charm-row.shadow::before { background: var(--line-strong); }
.charm-icon { font-size: 20px; line-height: 1.4; flex-shrink: 0; }
.charm-body { flex: 1; min-width: 0; }
.charm-row .charm-label { font-size: 11px; font-weight: 800; letter-spacing: 0.02em; margin-bottom: 6px; }
.charm-row.good .charm-label { color: var(--accent-deep); }
.charm-row.shadow .charm-label { color: var(--text-light); }
.charm-row .charm-text { font-size: 14.5px; line-height: 1.7; font-weight: 600; letter-spacing: -0.025em; color: var(--text); }
.charm-row.shadow .charm-text { font-size: 14px; font-weight: 500; color: var(--text-soft); }
.charm-kakao { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-2); padding: 17px 18px; border-top: 1px solid var(--line); }
.charm-kakao-label { font-size: 11px; font-weight: 800; color: var(--text-light); margin-bottom: 11px; }
.charm-kakao-bubble { font-size: 15.5px; padding: 12px 17px; }

/* ══ 강점 / 약점 — 배지 + 칩 ══ */
.pros-cons { display: flex; flex-direction: column; gap: 9px; margin-top: 22px; }
.pros-cons-card { display: flex; align-items: center; gap: 13px; padding: 14px 16px; border-radius: var(--r-2); }
.pros-cons-label { flex-shrink: 0; width: 46px; margin-bottom: 0; font-size: 12.5px; font-weight: 800; letter-spacing: -0.02em; text-transform: none; }
.pros-cons-items { display: flex; flex-wrap: wrap; gap: 6px; flex: 1; min-width: 0; }
.pros-cons-item { font-size: 13.5px; font-weight: 600; line-height: 1.4; padding: 7px 13px; border-radius: var(--r-pill); background: var(--card); letter-spacing: -0.025em; }
.pros-cons-card.pros .pros-cons-item { color: var(--accent-deep); }
.pros-cons-card.cons .pros-cons-item { color: var(--text-soft); }

/* ══ 가로 레일: 친구 지목 카드 · 댓글 리액션 칩 ══ */
.friend-tag-rail, .pc-chips { display: flex; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; scroll-snap-type: x proximity; }
.friend-tag-rail::-webkit-scrollbar, .pc-chips::-webkit-scrollbar { display: none; }

/* 친구 지목 — 세로 리스트 → 가로 카드 */
.friend-tag-rail { gap: 10px; margin: 2px -20px 0; padding: 2px 20px 14px; }
.friend-tag-rail .friend-tag-item { flex: 0 0 min(63%, 268px); flex-direction: column; align-items: stretch; gap: 0; padding: 14px 14px 13px; scroll-snap-align: start; }
.friend-tag-rail .friend-tag-char { width: 100%; height: 148px; border-radius: 12px; margin-bottom: 12px; }
.friend-tag-rail .friend-tag-char .char-illustration { display: flex; align-items: center; justify-content: center; }
.friend-tag-rail .friend-tag-char svg { width: 92%; height: 92%; }
.friend-tag-rail .friend-tag-line { font-size: 13.5px; font-weight: 700; line-height: 1.5; letter-spacing: -0.03em; min-height: 40px; }
.friend-tag-rail .friend-tag-name { font-size: 11px; font-weight: 700; color: var(--text-light); margin-top: 5px; }
.friend-tag-rail .friend-tag-send { display: block; margin-top: 11px; padding: 9px 0; text-align: center; font-size: 12.5px; }
.rail-hint { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 11.5px; font-weight: 700; color: var(--text-light); letter-spacing: 0.01em; margin-top: -2px; }
.rail-hint::after { content: "→"; display: inline-block; animation: rail-nudge 1.6s ease-in-out infinite; }
@keyframes rail-nudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(5px); } }
@media (prefers-reduced-motion: reduce) { .rail-hint::after { animation: none; } }

/* 댓글 칩 — 한 줄 가로 스크롤 */
.pc-chips { flex-wrap: nowrap; gap: 7px; margin: 0 -20px 14px; padding: 2px 20px 4px; }
.pc-chip { flex: 0 0 auto; scroll-snap-align: start; }

/* ══ 랜딩 셀프 체크리스트 — 위 섹션들과 대비되는 다크 인터랙티브 블록 ══ */
.hook-check-card { background: var(--dark); border-radius: var(--r-3); padding: 24px 20px 20px; margin: 4px 0 30px; color: #fff; }
.hcc-eyebrow { font-size: 11px; font-weight: 800; letter-spacing: 0.14em; color: var(--accent); margin-bottom: 9px; }
.hcc-title { font-family: var(--font-display); font-size: 23px; font-weight: 800; line-height: 1.28; letter-spacing: -0.042em; margin-bottom: 18px; color: #fff; }
.hcc-list { display: flex; flex-direction: column; gap: 8px; }
.hcc-item { display: flex; align-items: flex-start; gap: 12px; background: rgba(255,255,255,0.06); border: 1px solid transparent; border-radius: var(--r-2); padding: 14px 15px; cursor: pointer; transition: background-color 180ms ease, border-color 180ms ease, transform 160ms var(--ease-out-strong); }
.hcc-item:active { transform: scale(0.985); }
.hcc-item.on { background: rgba(30,215,96,0.14); border-color: var(--accent); }
.hcc-box { flex-shrink: 0; width: 21px; height: 21px; border-radius: 7px; border: 2px solid rgba(255,255,255,0.28); margin-top: 1px; position: relative; transition: background-color 180ms ease, border-color 180ms ease; }
.hcc-item.on .hcc-box { background: var(--accent); border-color: var(--accent); }
.hcc-box::after { content: ""; position: absolute; left: 6px; top: 2px; width: 5px; height: 10px; border: solid #121212; border-width: 0 2.5px 2.5px 0; transform: rotate(45deg) scale(0); transition: transform 180ms var(--ease-out-strong); }
.hcc-item.on .hcc-box::after { transform: rotate(45deg) scale(1); }
.hcc-text { flex: 1; font-size: 14.5px; line-height: 1.55; font-weight: 500; color: rgba(255,255,255,0.9); letter-spacing: -0.025em; }
.hcc-text b { color: #fff; font-weight: 700; }
.hcc-result { display: flex; align-items: center; gap: 12px; margin-top: 16px; padding: 14px 16px; background: rgba(255,255,255,0.06); border-radius: var(--r-2); transition: background-color 240ms ease; }
.hcc-result.hot { background: rgba(30,215,96,0.16); }
.hcc-count { font-family: var(--font-numeric); font-size: 15px; font-weight: 800; color: rgba(255,255,255,0.55); white-space: nowrap; }
.hcc-count b { font-size: 25px; color: var(--accent); margin-right: 3px; }
.hcc-msg { flex: 1; font-size: 14px; font-weight: 700; letter-spacing: -0.03em; color: #fff; }

/* ══ 챌린지 결과 카드 — 일러스트 + 톤 정리 ══ */
.ch1-result-card.failed { background: linear-gradient(165deg, #6E2130 0%, #3E101B 100%); }
.ch1-result-card.success { background: linear-gradient(165deg, #1F5537 0%, #0F2E1F 100%); }
.ch1-result-top { font-family: var(--font-core); font-size: 11.5px; font-weight: 700; letter-spacing: -0.02em; color: rgba(255,255,255,0.92); background: rgba(255,255,255,0.16); padding: 6px 12px; border-radius: var(--r-pill); display: inline-block; }
.ch1-result-test { font-size: 11.5px; font-weight: 500; margin-top: 9px; opacity: 0.82; }
.ch1-result-art { width: 118px; height: 118px; margin: 0 auto 14px; }
.ch1-result-art svg { width: 100%; height: 100%; display: block; }

/* ══ 검색엔진·사용자 모두 읽는 정적 소개 (푸터 위) ══ */
.seo-about { max-width: 480px; margin: 8px auto 0; padding: 30px 20px 6px; border-top: 1px solid var(--line); color: var(--text-soft); }
.seo-about h1 { font-family: var(--font-display); font-size: 19px; font-weight: 800; letter-spacing: -0.035em; color: var(--text); margin-bottom: 10px; }
.seo-about h2 { font-size: 14.5px; font-weight: 800; letter-spacing: -0.03em; color: var(--text); margin: 22px 0 8px; }
.seo-about p { font-size: 13px; line-height: 1.75; margin-bottom: 4px; }
.seo-about strong { color: var(--text); font-weight: 700; }
.seo-about ul { list-style: none; margin: 0; padding: 0; }
.seo-about li { font-size: 13px; line-height: 1.7; padding: 6px 0; border-bottom: 1px solid var(--line); }
.seo-about li:last-child { border-bottom: none; }
.seo-about a { color: var(--text); text-decoration: none; }
.seo-about a b { font-weight: 700; }
.seo-about a:hover { color: var(--accent-deep); }
