/* www/assets/css/landing.css
   인스레드 — 공개 랜딩 (index.php) 전용 콘텐츠 스타일
   히어로 · 30일 심볼 엠블럼 · 글래스 섹션 · 스크롤 리빌
   전역 다크 테마·배경 이펙트·마우스 팔로워는 aurora.css / aurora_fx.php 담당. */

/* ── 레이아웃 공통 ───────────────────────────────────── */
.ld-wrap {
  width: min(100% - 48px, 1100px);
  margin: 0 auto;
  position: relative; z-index: 3;
}
.ld-main { position: relative; z-index: 3; }

/* 스크롤 리빌 */
.ld-reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.ld-reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .ld-reveal { opacity: 1; transform: none; transition: none; }
}

/* ── 히어로 ──────────────────────────────────────────── */
.ld-hero {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0 64px;
}
/* 상단 로고: 두 컬럼 위에 한 줄로 (grid 전체 폭), 중앙 정렬 */
.ld-hero-logo {
  grid-column: 1 / -1;
  display: flex; justify-content: center;
  margin-bottom: 6px;
}
.ld-hero-logo img {
  width: 148px; height: auto; border-radius: 30px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .12), 0 16px 44px rgba(0, 0, 0, .45);
}
.ld-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(139, 157, 255, .1);
  border: 1px solid rgba(139, 157, 255, .28);
  color: #b8c4ff;
  font-size: 13px; font-weight: 600;
  padding: 8px 18px; border-radius: 100px;
  margin-bottom: 30px;
}
.ld-pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #8b9dff;
  box-shadow: 0 0 10px #8b9dff;
  animation: ldPulse 2.4s ease-in-out infinite;
}
@keyframes ldPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .35; }
}
.ld-hero h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.32;
  letter-spacing: -.035em;
  color: #e8eaf6;
}
.ld-grad {
  background: linear-gradient(92deg, #8b9dff 10%, #c4b5fd 55%, #f0abfc 95%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.ld-hero-sub {
  margin: 24px 0 0;
  max-width: 480px;
  color: #9aa2c7;
  font-size: 16.5px; line-height: 1.8;
}
.ld-hero-cta { margin-top: 40px; display: flex; gap: 12px; flex-wrap: wrap; }
.ld-btn-glow {
  display: inline-block;
  background: linear-gradient(92deg, #6366f1, #8b5cf6);
  color: #fff; text-decoration: none;
  padding: 16px 36px; border-radius: 14px;
  font-size: 15px; font-weight: 700;
  box-shadow: 0 8px 40px -8px rgba(124, 108, 246, .65);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.ld-btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 48px -8px rgba(124, 108, 246, .8);
}
.ld-btn-glass {
  display: inline-block;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  color: #dfe3ff; text-decoration: none;
  padding: 15px 34px; border-radius: 14px;
  font-size: 15px; font-weight: 600;
  transition: background .25s;
}
.ld-btn-glass:hover { background: rgba(255, 255, 255, .12); color: #fff; }
.ld-hero-note { margin-top: 20px; font-size: 13.5px; color: #6f77a0; }
.ld-hero-note a { color: #b8c4ff; text-decoration: none; font-weight: 600; }
.ld-hero-note a:hover { text-decoration: underline; }

/* ── 30일 심볼 엠블럼 ────────────────────────────────── */
.ld-emblem-box {
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  perspective: 900px;
}
.ld-emblem {
  width: min(100%, 380px);
  aspect-ratio: 1;
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .3s ease-out;
}
.ld-emblem svg { width: 100%; height: 100%; display: block; overflow: visible; }
.ld-emblem .ring-deco {
  transform-box: fill-box; transform-origin: center;
  animation: ldSpin 60s linear infinite;
}
.ld-emblem .ring-deco2 {
  transform-box: fill-box; transform-origin: center;
  animation: ldSpin 90s linear infinite reverse;
}
@keyframes ldSpin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .ld-emblem .ring-deco, .ld-emblem .ring-deco2 { animation: none; }
}
/* 날짜 도트: JS가 .lit을 순차 부여 */
.ld-emblem .day-dot {
  fill: rgba(255, 255, 255, .1);
  transition: fill .5s ease, filter .5s ease;
}
.ld-emblem .day-dot.lit {
  fill: url(#ldDotGrad);
  filter: drop-shadow(0 0 6px rgba(164, 148, 255, .8));
}
.ld-emblem .day-dot.today {
  fill: #fff;
  filter: drop-shadow(0 0 10px rgba(196, 181, 253, .95));
}
.ld-emblem .today-halo {
  fill: none; stroke: rgba(196, 181, 253, .5); stroke-width: 1.5;
  transform-origin: center;
  animation: ldHalo 2.6s ease-out infinite;
}
@keyframes ldHalo {
  0%   { opacity: .9; r: 8; }
  70%  { opacity: 0;  r: 17; }
  100% { opacity: 0;  r: 17; }
}
.ld-emblem .prog-arc {
  fill: none;
  stroke: url(#ldArcGrad);
  stroke-width: 3; stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(139, 157, 255, .5));
  transition: stroke-dashoffset 1.6s var(--ease);
}
.ld-emblem .center-num {
  font-family: Pretendard, sans-serif;
  font-size: 64px; font-weight: 800; letter-spacing: -.04em;
  fill: url(#ldArcGrad);
}
.ld-emblem .center-label {
  font-family: Pretendard, sans-serif;
  font-size: 10.5px; font-weight: 700; letter-spacing: .34em;
  fill: #8b93bd;
}
.ld-emblem-caption {
  display: inline-flex; align-items: center; gap: 14px;
  background: rgba(19, 23, 44, .72);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 100px;
  padding: 11px 22px;
  font-size: 13.5px; color: #9aa2c7; white-space: nowrap;
}
.ld-emblem-caption b { color: #c4b5fd; font-weight: 700; }
.ld-emblem-caption .sep { width: 1px; height: 12px; background: rgba(255, 255, 255, .16); }

/* ── DAY 스트립 ─────────────────────────────────────── */
.ld-day-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  padding: 20px 0 0;
}
.ld-day-chip {
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  padding: 22px 20px;
}
.ld-day-chip .d {
  font-size: 12px; font-weight: 700; letter-spacing: .18em;
  color: #8b9dff; margin-bottom: 8px;
}
.ld-day-chip .t { font-size: 14.5px; font-weight: 600; color: #dfe3ff; line-height: 1.6; }

/* ── 섹션 공통 ──────────────────────────────────────── */
.ld-sec { padding: 88px 0 0; }
.ld-sec-head { text-align: center; margin-bottom: 48px; }
.ld-sec-head .tag {
  color: #8b9dff; font-size: 13px; font-weight: 700;
  letter-spacing: .24em; text-transform: uppercase;
  display: block; margin-bottom: 14px;
}
.ld-sec-head h2 {
  margin: 0;
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 800; letter-spacing: -.025em; line-height: 1.4;
  color: #e8eaf6;
}

/* 루틴 글래스 카드 4종 */
.ld-glass-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ld-gcard {
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 22px;
  padding: 30px 24px;
  transition: background .25s, transform .25s var(--ease);
}
.ld-gcard:hover { background: rgba(255, 255, 255, .08); transform: translateY(-3px); }
.ld-gcard .step {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 42px; height: 42px; padding: 0 12px;
  border-radius: 12px;
  font-size: 13px; font-weight: 800; letter-spacing: .08em; color: #c4b5fd;
  background: linear-gradient(135deg, rgba(99, 102, 241, .35), rgba(139, 92, 246, .22));
  border: 1px solid rgba(139, 157, 255, .3);
  margin-bottom: 20px;
}
.ld-gcard strong {
  display: block; font-size: 16.5px; font-weight: 700;
  margin-bottom: 10px; letter-spacing: -.01em; color: #e8eaf6;
}
.ld-gcard span { color: #9aa2c7; font-size: 13.5px; line-height: 1.75; }

/* 와이드 카드 + 통계 */
.ld-wide-card {
  background: linear-gradient(135deg, rgba(99, 102, 241, .16), rgba(139, 92, 246, .08));
  border: 1px solid rgba(139, 157, 255, .24);
  border-radius: 26px;
  padding: 56px;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: center;
}
.ld-wide-card h3 {
  margin: 0 0 16px;
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 800; letter-spacing: -.02em; line-height: 1.45; color: #e8eaf6;
}
.ld-wide-card p { margin: 0; color: #9aa2c7; font-size: 15px; line-height: 1.85; }
.ld-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ld-stat {
  background: rgba(8, 11, 24, .5);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  padding: 24px;
}
.ld-stat .n {
  font-size: 26px; font-weight: 800; letter-spacing: -.02em;
  background: linear-gradient(92deg, #8b9dff, #c4b5fd);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.ld-stat .l { color: #9aa2c7; font-size: 13px; margin-top: 6px; }

/* 플랜 카드 */
.ld-plan { padding: 88px 0 96px; text-align: center; }
.ld-plan-card {
  max-width: 560px; margin: 0 auto;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(139, 157, 255, .3);
  border-radius: 28px;
  padding: 56px 48px;
  position: relative; overflow: hidden;
}
.ld-plan-card::before {
  content: "";
  position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 300px; height: 120px;
  background: radial-gradient(ellipse, rgba(139, 92, 246, .4), transparent 70%);
  pointer-events: none;
}
.ld-plan-card .pname {
  font-size: 13px; font-weight: 700; letter-spacing: .26em;
  color: #b8c4ff; text-transform: uppercase; margin: 0 0 20px;
}
.ld-plan-card .price { font-size: 46px; font-weight: 800; letter-spacing: -.03em; color: #e8eaf6; }
.ld-plan-card .price small { font-size: 16px; font-weight: 500; color: #9aa2c7; }
.ld-plan-card .credit {
  display: inline-block;
  background: rgba(139, 157, 255, .14);
  border: 1px solid rgba(139, 157, 255, .3);
  color: #b8c4ff;
  font-size: 13px; font-weight: 600;
  padding: 7px 18px; border-radius: 100px;
  margin: 16px 0 18px;
}
.ld-plan-card .desc { color: #9aa2c7; font-size: 14.5px; line-height: 1.85; margin: 0 0 30px; }

/* 푸터 */
.ld-footer {
  position: relative; z-index: 3;
  border-top: 1px solid rgba(255, 255, 255, .09);
  padding: 40px 0 60px;
  text-align: center;
  color: #6f77a0; font-size: 13px;
}
.ld-footer .flinks { display: flex; gap: 20px; justify-content: center; margin-bottom: 12px; }
.ld-footer .flinks a { color: #9aa2c7; text-decoration: none; }
.ld-footer .flinks a:hover { color: #b8c4ff; }

/* ── 반응형 ─────────────────────────────────────────── */
@media (max-width: 960px) {
  /* 모바일 순서: 로고 → 텍스트 → 캘린더 엠블럼 (문서 순서 그대로 — order 재배치 없음) */
  .ld-hero { grid-template-columns: 1fr; gap: 44px; padding-top: 40px; text-align: center; }
  .ld-hero-sub { margin-left: auto; margin-right: auto; }
  .ld-hero-cta { justify-content: center; }
  .ld-hero-logo img { width: 128px; }
  .ld-emblem { width: min(78vw, 320px); }
  .ld-glass-grid { grid-template-columns: 1fr 1fr; }
  .ld-wide-card { grid-template-columns: 1fr; padding: 40px 30px; }
}
@media (max-width: 620px) {
  .ld-wrap { width: min(100% - 32px, 1100px); }
  .ld-day-strip { grid-template-columns: 1fr; }
  .ld-glass-grid { grid-template-columns: 1fr; }
  .ld-emblem-caption { font-size: 12.5px; padding: 10px 16px; gap: 10px; }
  .ld-sec { padding-top: 68px; }
}

/* ══ 샘플 공개 영역 (BC-1, 비로그인 전용) ══════════════════
   히어로 아래 ① 라이브 데모 콘솔 ② 결과물 갤러리.
   샘플은 index.php에 하드코딩된 정적 연출 데이터입니다. */

.ld-sec-sub { margin: 14px 0 0; font-size: 14.5px; color: #9aa2c7; }
.ld-demo { padding-top: 72px; }

/* ── 데모 콘솔 (탭 + 과정 + 결과 1개) ── */
.ld-console {
  background: rgba(10, 13, 28, .72);
  border: 1px solid rgba(139, 157, 255, .18);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5), inset 0 1px 0 rgba(255, 255, 255, .05);
  overflow: hidden;
}
.ld-tabs {
  display: flex; gap: 4px; flex-wrap: wrap;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  background: rgba(255, 255, 255, .02);
}
.ld-tab {
  font-family: inherit;
  font-size: 13.5px; font-weight: 600; color: #9aa2c7;
  background: none; border: 1px solid transparent;
  border-radius: 10px; padding: 9px 18px; cursor: pointer;
  transition: color .2s, background .2s;
}
.ld-tab:hover { color: #dfe3ff; }
.ld-tab[aria-selected="true"] {
  color: #fff;
  background: rgba(139, 157, 255, .14);
  border-color: rgba(139, 157, 255, .35);
}
.ld-tab:focus-visible { outline: 2px solid #8b9dff; outline-offset: 2px; }
.ld-panel { display: none; padding: 26px; grid-template-columns: .9fr 1.1fr; gap: 26px; align-items: center; }
.ld-panel.on { display: grid; }
.ld-panel-media { display: grid; place-items: center; }
.ld-panel-media .ld-cn { width: min(100%, 250px); font-size: 11.5px; }
.ld-panel-media .ld-vid { width: min(100%, 200px); }
.ld-console-note {
  padding: 0 26px 20px;
  font-size: 12px; color: #6f77a0; text-align: center;
}

/* 과정 스텝 + 게이지 + 타이핑 커서 */
.ld-steps { display: flex; flex-direction: column; gap: 12px; }
.ld-step { display: flex; gap: 11px; align-items: flex-start; font-size: 13px; color: #9aa2c7; line-height: 1.6; }
.ld-step i {
  flex: none; width: 21px; height: 21px; border-radius: 50%;
  border: 1px solid rgba(139, 157, 255, .4);
  display: grid; place-items: center;
  font-size: 10.5px; font-style: normal; font-weight: 700; color: #b8c4ff;
  margin-top: 1px;
}
.ld-step.done i { background: linear-gradient(92deg, #6366f1, #8b5cf6); border-color: transparent; color: #fff; }
.ld-step b { color: #d5daf3; font-weight: 700; }
.ld-gauge { height: 7px; border-radius: 5px; background: rgba(255, 255, 255, .08); overflow: hidden; margin-top: 7px; }
.ld-gauge i {
  display: block; height: 100%; width: 78%; border-radius: 5px;
  background: linear-gradient(92deg, #8b9dff 10%, #c4b5fd 55%, #f0abfc 95%);
  animation: ldGauge 2.6s ease-in-out infinite alternate;
}
@keyframes ldGauge { from { width: 52%; } to { width: 88%; } }
.ld-typing::after { content: "▍"; color: #8b9dff; animation: ldBlink 1s steps(1) infinite; }
@keyframes ldBlink { 50% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .ld-gauge i { animation: none; }
  .ld-typing::after { animation: none; }
}

/* ── 피드형 글 카드 ── */
.ld-post {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  padding: 20px 20px 16px;
  display: flex; flex-direction: column; gap: 11px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
}
.ld-post-label {
  width: fit-content;
  font-size: 10.5px; font-weight: 700; letter-spacing: .08em; color: #b8c4ff;
  background: rgba(139, 157, 255, .12);
  border: 1px solid rgba(139, 157, 255, .25);
  padding: 3px 10px; border-radius: 100px;
}
.ld-post-who { display: flex; align-items: center; gap: 10px; }
.ld-post-who .avatar {
  width: 34px; height: 34px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, #8b9dff, #f0abfc);
}
.ld-post-who b { font-size: 13.5px; font-weight: 700; color: #e8eaf6; }
.ld-post-who span { font-size: 12px; color: #6f77a0; }
.ld-post-body { margin: 0; font-size: 14px; line-height: 1.8; color: #d5daf3; white-space: pre-line; }

/* ── 카드뉴스 목업 (4:5 규격, em 스케일) ── */
.ld-cn {
  aspect-ratio: 4 / 5;
  border-radius: 16px; overflow: hidden; position: relative;
  background: linear-gradient(165deg, #fdf6ec 0%, #fbeeda 100%);
  color: #3d3327;
  display: flex; flex-direction: column; padding: 8% 8% 7%; gap: 4.5%;
  box-shadow: 0 14px 44px rgba(0, 0, 0, .45);
}
.ld-cn .ld-cn-tag {
  width: fit-content;
  font-size: .62em; font-weight: 800; letter-spacing: .02em;
  background: #e98c4a; color: #fff;
  border-radius: 100px; padding: .35em 1em;
}
.ld-cn h4 { margin: 0; font-size: 1.24em; line-height: 1.35; font-weight: 900; letter-spacing: -.02em; color: inherit; }
.ld-cn h4 em { font-style: normal; color: #e07a33; }
.ld-cn .row {
  display: flex; gap: .7em; align-items: flex-start;
  background: #fff; border-radius: .8em; padding: .75em .9em;
  box-shadow: 0 3px 10px rgba(160, 120, 60, .12);
}
.ld-cn .chk { flex: none; width: 1.35em; height: 1.35em; border-radius: .45em; background: #e98c4a; position: relative; }
.ld-cn .chk::after {
  content: ""; position: absolute; left: .38em; top: .16em;
  width: .3em; height: .62em;
  border: solid #fff; border-width: 0 .16em .16em 0;
  transform: rotate(42deg);
}
.ld-cn .row b { display: block; font-size: .78em; font-weight: 800; line-height: 1.35; }
.ld-cn .row span { display: block; font-size: .6em; color: #8a7a63; margin-top: .15em; line-height: 1.4; }
.ld-cn-foot { margin-top: auto; font-size: .55em; color: #a4917a; text-align: center; }
/* 랭킹형 변형 (그린 팔레트) */
.ld-cn.green h4 { color: #33402f; }
.ld-cn.green h4 em { color: #5a7d5a; }
.ld-cn.green .ld-cn-tag, .ld-cn.green .chk { background: #5a7d5a; }

/* ── 펫 영상 포스터 (9:16 규격, CSS 연출) ── */
.ld-vid {
  aspect-ratio: 9 / 16;
  border-radius: 16px; overflow: hidden; position: relative;
  background:
    radial-gradient(140% 60% at 50% 108%, #f7b267 0%, #e8875a 34%, transparent 62%),
    linear-gradient(180deg, #2b2554 0%, #6b4b8a 46%, #d96f4e 100%);
  box-shadow: 0 14px 44px rgba(0, 0, 0, .45);
}
.ld-vid::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 26%;
  background: linear-gradient(180deg, rgba(20, 12, 30, 0) 0%, rgba(20, 12, 30, .75) 60%);
}
.ld-vid .sun {
  position: absolute; left: 50%; top: 52%; width: 34%; aspect-ratio: 1;
  border-radius: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, #ffe0a3 0%, #ffb36b 60%, transparent 72%);
  opacity: .9;
}
.ld-vid .dog {
  position: absolute; left: 14%; bottom: 14%; width: 34%; aspect-ratio: 1.5;
  background: #1c1430; opacity: .88;
  clip-path: polygon(8% 62%, 20% 38%, 34% 30%, 46% 34%, 58% 22%, 66% 8%, 74% 16%, 72% 30%, 86% 40%, 96% 58%, 88% 74%, 70% 78%, 60% 92%, 52% 74%, 34% 82%, 26% 96%, 18% 76%);
}
.ld-vid .play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(10, 8, 24, .55);
  border: 1px solid rgba(255, 255, 255, .35);
  display: grid; place-items: center;
}
.ld-vid .play::after {
  content: ""; margin-left: 4px;
  border-style: solid; border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent #fff;
}
.ld-vid-meta {
  position: absolute; left: 12px; right: 12px; bottom: 12px;
  display: flex; justify-content: space-between;
  font-size: 10.5px; font-weight: 600; color: #f3e8ff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .6);
}

/* ── 데모 콘솔 실물 샘플 (2026-07-23: CSS 목업 → 실제 cardnews-1/petvideo-1 교체) ── */
.ld-demo-cnimg {
  position: relative;
  width: min(100%, 280px);
  border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 14px 44px rgba(0, 0, 0, .45);
}
.ld-demo-cnimg img { display: block; width: 100%; height: auto; }
/* 데모 쪽은 타일이 커서 도장 말풍선도 한 단계 키움 */
.ld-demo-cnimg .ld-cn-idcall .bub { font-size: 10.5px; padding: 6px 14px 7px; }
.ld-demo-cnimg .ld-cn-idcall .bub b { font-size: 12.5px; }
.ld-demo-pv {
  position: relative;
  width: min(100%, 210px); aspect-ratio: 9 / 16;
  border-radius: 14px; overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 14px 44px rgba(0, 0, 0, .45);
}
.ld-demo-pv video { display: block; width: 100%; height: 100%; object-fit: cover; }
.ld-demo-pv .ld-pv-play { animation: ldPvPulse 2.6s ease-out infinite; }
.ld-demo-pv.playing .ld-pv-play { opacity: 0; animation: none; }
.ld-demo-pv:focus-visible { outline: 2px solid #8b9dff; outline-offset: 2px; }

/* ── 잠금 연출 (블러 + 베일) ── */
.ld-locked { position: relative; overflow: hidden; border-radius: 18px; }
.ld-locked .blurred { filter: blur(7px) saturate(.8); pointer-events: none; user-select: none; height: 100%; }
.ld-locked-veil {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  background: rgba(8, 11, 24, .45);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: inherit;
  text-align: center; padding: 16px;
}
.ld-locked-veil .lock {
  width: 36px; height: 36px; border-radius: 12px;
  background: rgba(139, 157, 255, .14);
  border: 1px solid rgba(139, 157, 255, .3);
  display: grid; place-items: center;
}
.ld-locked-veil .lock svg { width: 15px; height: 15px; stroke: #b8c4ff; }
.ld-locked-veil b { font-size: 13.5px; color: #dfe3ff; }
.ld-locked-veil span { font-size: 12px; color: #9aa2c7; }

/* ── 갤러리: 그룹 소개 + 규격별 정렬 ── */
.ld-gal-group { margin-bottom: 64px; }
.ld-gal-group:last-of-type { margin-bottom: 0; }
/* 그룹 소개: 메뉴 칩 + 감성 헤드라인 + 설명 + 메타 */
.ld-gal-intro {
  margin-bottom: 24px;
  padding-left: 18px;
  border-left: 3px solid rgba(139, 157, 255, .55);
}
.ld-gal-intro .menu {
  display: inline-block;
  font-size: 11.5px; font-weight: 700; letter-spacing: .12em;
  color: #b8c4ff;
  background: rgba(139, 157, 255, .12);
  border: 1px solid rgba(139, 157, 255, .28);
  border-radius: 100px; padding: 4px 13px;
  margin-bottom: 12px;
}
.ld-gal-intro h3 {
  margin: 0;
  font-size: clamp(19px, 2.6vw, 25px);
  font-weight: 800; letter-spacing: -.02em; line-height: 1.4;
  color: #e8eaf6;
}
.ld-gal-intro p {
  margin: 10px 0 0;
  max-width: 620px;
  font-size: 14px; line-height: 1.85; color: #9aa2c7;
}
.ld-gal-intro .meta { display: block; margin-top: 10px; font-size: 12px; color: #6f77a0; }
/* 그룹 1: 글 카드 3단 그리드 — 동일 규격·동일 높이 */
.ld-gal-posts {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  align-items: stretch; /* 직계 항목(글 카드·잠금 래퍼)은 그리드가 같은 높이로 늘림 */
}
.ld-locked .ld-post { height: 100%; box-sizing: border-box; } /* 잠금 래퍼 내부 카드만 명시 */
/* 그룹 2: 카드뉴스(4:5)·영상(9:16) — 실규격 비율 유지, 같은 높이로 정렬 */
.ld-gal-media {
  display: flex; gap: 18px; justify-content: center; align-items: flex-start; flex-wrap: wrap;
}
.ld-media-item { margin: 0; display: flex; flex-direction: column; gap: 12px; }
.ld-gal-media .ld-cn { height: 400px; font-size: 15px; }
.ld-gal-media .ld-vid { height: 400px; }
.ld-media-item figcaption { font-size: 12.5px; color: #9aa2c7; text-align: center; }
.ld-media-item figcaption em {
  font-style: normal; font-weight: 700; color: #b8c4ff;
  background: rgba(139, 157, 255, .12);
  border: 1px solid rgba(139, 157, 255, .25);
  border-radius: 100px; padding: 1px 9px; margin-left: 6px; font-size: 11px;
}
.ld-gal-cta { text-align: center; margin-top: 44px; }

/* ══ 갤러리 확장 (2026-07-23): 카드뉴스·펫영상 운영자 샘플 + 캘린더·통계 미리보기 ══
   카드뉴스·펫영상은 www/img/landing/ 의 실파일(cardnews-N / petvideo-N)을 노출,
   없는 슬롯은 파일명 안내 자리표시(.ld-ph). 캘린더·통계는 정적 연출 예시입니다. */

/* 카드뉴스 6장 — 6단 한 줄 그리드 (2026-07-23: 3단 → 6단, 타일 절반 크기.
   6장이 6·3열 어디서나 균등 분할이라 줄이 어긋나지 않습니다)
   비율: 실제 산출물은 1024x1536 생성 → 배경 트림 → 폭 1080 스케일이라 4:5보다 세로로 깁니다.
   운영자 샘플 실측(1055x1491)에 맞춰 4:5 → 1055/1491로 조정 — cover 크롭으로 상하 텍스트가
   잘리던 문제 해결 (트림 편차로 비율이 조금 다른 샘플도 수 % 안쪽 크롭에 그칩니다). */
.ld-sample-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.ld-cn-tile {
  aspect-ratio: 1055 / 1491;
  border-radius: 12px; overflow: hidden;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}
.ld-cn-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* 아이디 자동 도장 강조 스티커 v2 (2026-07-23): 갬성 말풍선 + 반짝이.
   핑크→라벤더 말풍선이 통통 튀며(bob) 꼬리로 카드 하단 중앙의 실제 워터마크
   ("@아이디") 자리를 가리키고, 주변 반짝이가 시차를 두고 깜빡입니다. */
.ld-cn-tile { position: relative; }
.ld-cn-idcall {
  position: absolute; left: 50%; bottom: 4%;
  transform: translateX(-50%);
  pointer-events: none;
  filter: drop-shadow(0 6px 16px rgba(255, 122, 189, .45));
  animation: ldIdBob 1.4s ease-in-out infinite;
}
.ld-cn-idcall .bub {
  position: relative; display: block; text-align: center;
  padding: 5px 12px 6px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff8fc6, #b89bff);
  border: 1.5px solid rgba(255, 255, 255, .8);
  color: #fff; font-size: 9px; font-weight: 700; line-height: 1.4;
  white-space: nowrap; letter-spacing: -.01em;
  transform: rotate(-3deg);
}
.ld-cn-idcall .bub b {
  display: block; font-size: 10.5px; font-weight: 900;
  text-shadow: 0 1px 4px rgba(170, 70, 135, .45);
}
/* 말풍선 꼬리 — 워터마크 자리를 콕 가리킴 */
.ld-cn-idcall .bub::after {
  content: ""; position: absolute; left: 50%; bottom: -5px;
  width: 10px; height: 10px; margin-left: -5px;
  background: #cf97e0;
  border-radius: 2px;
  transform: rotate(45deg);
}
/* 반짝이 3종 — 시차 트윙클 */
.ld-cn-idcall .sp {
  position: absolute; font-style: normal; font-size: 11px; line-height: 1;
  animation: ldTwinkle 1.6s ease-in-out infinite;
}
.ld-cn-idcall .sp1 { top: -13px; left: -4px; }
.ld-cn-idcall .sp2 { top: -15px; right: -3px; font-size: 13px; animation-delay: .5s; }
.ld-cn-idcall .sp3 { bottom: -3px; right: -9px; font-size: 9px; animation-delay: 1s; }
@keyframes ldIdBob {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, -6px); }
}
@keyframes ldTwinkle {
  0%, 100% { opacity: .2; transform: scale(.6) rotate(-10deg); }
  50%      { opacity: 1; transform: scale(1.2) rotate(10deg); }
}

/* 자리표시 타일 (샘플 파일이 아직 없는 슬롯) */
.ld-ph {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  border: 1px dashed rgba(139, 157, 255, .35);
  background: rgba(139, 157, 255, .05);
  box-shadow: none; text-align: center;
}
.ld-ph span { font-size: 13px; font-weight: 600; color: #9aa2c7; line-height: 1.5; }
.ld-ph code {
  font-size: 11px; color: #6f77a0;
  background: rgba(255, 255, 255, .05);
  border-radius: 8px; padding: 3px 8px;
  word-break: break-all;
}

/* 펫 영상 6개 — 한 줄 6단, 9:16 규격, 클릭 재생 */
.ld-pv-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.ld-pv-tile {
  aspect-ratio: 9 / 16;
  border-radius: 14px; overflow: hidden; position: relative;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  cursor: pointer;
}
.ld-pv-tile.ld-ph { cursor: default; }
.ld-pv-tile video { width: 100%; height: 100%; object-fit: cover; display: block; }
.ld-pv-play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(10, 8, 24, .55);
  border: 1px solid rgba(255, 255, 255, .35);
  display: grid; place-items: center;
  pointer-events: none;
  transition: opacity .25s;
}
.ld-pv-play::after {
  content: ""; margin-left: 3px;
  border-style: solid; border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent #fff;
}
.ld-pv-tile.playing .ld-pv-play { opacity: 0; }
.ld-pv-tile:focus-visible { outline: 2px solid #8b9dff; outline-offset: 2px; }

/* 기록 캘린더 미리보기 (/calendar.php 형태의 연출) */
.ld-cal {
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 20px; overflow: hidden;
}
.ld-cal-head {
  display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.ld-cal-head b { font-size: 15.5px; font-weight: 800; color: #e8eaf6; letter-spacing: -.01em; }
.ld-cal-head span { font-size: 12px; font-weight: 600; color: #8b9dff; }
.ld-cal-week {
  display: grid; grid-template-columns: repeat(7, 1fr);
  background: rgba(255, 255, 255, .03);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.ld-cal-week span { text-align: center; padding: 9px 2px; font-size: 11px; font-weight: 700; color: #6f77a0; }
.ld-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); }
.ld-cal-day {
  min-height: 64px; padding: 8px 4px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  border-top: 1px solid rgba(255, 255, 255, .05);
}
.ld-cal-grid .ld-cal-day:nth-child(-n+7) { border-top: none; }
.ld-cal-day .d { font-size: 12px; color: #9aa2c7; font-variant-numeric: tabular-nums; }
.ld-cal-day.rec .d { color: #e8eaf6; font-weight: 700; }
.ld-cal-day.future .d { color: #444b6e; }
.ld-cal-day.today { background: rgba(139, 157, 255, .1); }
.ld-cal-day.today .d { color: #fff; font-weight: 800; }
.ld-cal-day .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #8b9dff;
  box-shadow: 0 0 6px rgba(139, 157, 255, .8);
}
.ld-cal-day .chip {
  font-size: 9.5px; font-weight: 700; color: #b8c4ff;
  background: rgba(139, 157, 255, .14);
  border: 1px solid rgba(139, 157, 255, .28);
  border-radius: 100px; padding: 1px 7px; white-space: nowrap;
}
/* 캘린더 연출 강화 (2026-07-23): 팔로워 증감 칩 + 기념 스티커 + 범례 + 클릭 상세 모달 */
.ld-cal-day .chip.up { color: #9fd6a8; background: rgba(97, 190, 120, .13); border-color: rgba(97, 190, 120, .3); }
.ld-cal-day .chip.down { color: #f0a795; background: rgba(204, 102, 68, .15); border-color: rgba(204, 102, 68, .32); }
/* 스티커: absolute로 띄우면 날짜 숫자·옆 칸과 어긋나 보여서, 칩 아래 일반 흐름으로 배치합니다 */
.ld-cal-day .stk {
  font-size: 13px; line-height: 1;
  margin-top: 1px;
  transform: rotate(-6deg);
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, .45));
}
.ld-cal-day:nth-child(even) .stk { transform: rotate(6deg); }
.ld-cal-foot {
  display: flex; flex-wrap: wrap; align-items: center; gap: 4px 14px;
  padding: 10px 16px 12px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  font-size: 11px; font-weight: 600; color: #9aa2c7;
}
.ld-cal-foot .hint { margin-left: auto; color: #8b9dff; }
/* 기록된 날짜 = 버튼 (실제 캘린더처럼 클릭 → 상세) — 버튼 기본 스타일 리셋 */
button.ld-cal-day {
  appearance: none; -webkit-appearance: none;
  border: none; border-top: 1px solid rgba(255, 255, 255, .05);
  background: none; color: inherit; font: inherit;
  cursor: pointer; text-align: center;
  transition: background .2s;
}
button.ld-cal-day:hover { background: rgba(139, 157, 255, .1); }
button.ld-cal-day:focus-visible { outline: 2px solid #8b9dff; outline-offset: -2px; }
button.ld-cal-day.today { background: rgba(139, 157, 255, .1); }
button.ld-cal-day.today:hover { background: rgba(139, 157, 255, .16); }

/* 날짜 상세 모달 (연출) — 오로라 다크 글래스 톤 */
.ld-cm-backdrop {
  position: fixed; inset: 0; z-index: 80;
  display: flex; align-items: center; justify-content: center;
  padding: 18px;
  background: rgba(8, 10, 22, .6);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.ld-cm-backdrop[hidden] { display: none !important; }
.ld-cm {
  width: min(560px, 100%); max-height: min(82vh, 720px);
  display: flex; flex-direction: column; overflow: hidden;
  background: linear-gradient(150deg, #171c38, #101426);
  border: 1px solid rgba(139, 157, 255, .28);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
}
.ld-cm-head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 10px;
  padding: 16px 18px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.ld-cm-head b { font-size: 15px; font-weight: 800; color: #e8eaf6; letter-spacing: -.01em; }
.ld-cm-head .sub { display: block; margin-top: 3px; font-size: 11.5px; font-weight: 600; color: #8b9dff; }
.ld-cm-x {
  flex: none; width: 32px; height: 32px;
  border-radius: 50%; border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .05); color: #c7cdea;
  font-size: 16px; line-height: 1; cursor: pointer;
}
.ld-cm-x:hover { border-color: rgba(139, 157, 255, .5); color: #fff; }
.ld-cm-body { padding: 14px 18px 18px; overflow-y: auto; }
.ld-cm-metrics { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; margin-bottom: 12px; }
.ld-cm-metric {
  padding: 9px 4px; text-align: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
}
.ld-cm-metric b { display: block; font-size: 13.5px; font-weight: 800; color: #e8eaf6; font-variant-numeric: tabular-nums; }
.ld-cm-metric span { display: block; margin-top: 2px; font-size: 9.5px; font-weight: 600; color: #9aa2c7; }
.ld-cm-stickers { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.ld-cm-sticker {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 11px;
  border-radius: 100px;
  background: rgba(240, 171, 252, .1);
  border: 1px solid rgba(240, 171, 252, .3);
  font-size: 11.5px; font-weight: 700; color: #f0c9fa;
  transform: rotate(-1deg);
}
.ld-cm-posts { display: grid; gap: 8px; }
.ld-cm-post {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .09);
}
.ld-cm-post .top { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.ld-cm-post .top b { font-size: 12.5px; font-weight: 750; color: #dfe3ff; }
.ld-cm-chip {
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 10px; font-weight: 700;
  background: rgba(97, 190, 120, .13); color: #9fd6a8;
  border: 1px solid rgba(97, 190, 120, .3);
}
.ld-cm-post .nums { display: block; margin-top: 4px; font-size: 11px; font-weight: 600; color: #9aa2c7; font-variant-numeric: tabular-nums; }
.ld-cm-post .prev { display: block; margin-top: 5px; font-size: 11.5px; color: #c7cdea; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ld-cm-note {
  margin-top: 12px; padding: 9px 12px;
  border-radius: 10px;
  background: rgba(139, 157, 255, .08);
  border: 1px solid rgba(139, 157, 255, .18);
  font-size: 11px; font-weight: 600; color: #aab4e8; line-height: 1.5;
}

/* 성장 통계 미리보기 (/stats.php 형태의 연출) */
.ld-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 14px; }
.ld-kpi {
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 16px; padding: 18px 12px; text-align: center;
}
.ld-kpi b {
  display: block; font-size: 22px; font-weight: 800; letter-spacing: -.02em;
  background: linear-gradient(92deg, #8b9dff, #c4b5fd);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
}
.ld-kpi span { display: block; font-size: 12px; color: #9aa2c7; margin-top: 5px; }
.ld-charts { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ld-chart {
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 16px; padding: 16px 18px;
}
.ld-chart .t { font-size: 12.5px; font-weight: 700; color: #dfe3ff; margin-bottom: 10px; }
.ld-chart svg { display: block; width: 100%; height: auto; }
/* 통계 미리보기 상세화 (2026-07-23): 축 눈금·수치 라벨·범례·체감 반응 분포 */
.ld-chart svg text { font-size: 9px; font-weight: 600; fill: #8a92bb; }
.ld-chart svg text.v { font-weight: 700; fill: #dfe3ff; }
.ld-chart .lgd { display: flex; flex-wrap: wrap; gap: 4px 12px; margin: -4px 0 8px; }
.ld-chart .lgd span { display: inline-flex; align-items: center; gap: 5px; font-size: 10.5px; font-weight: 600; color: #9aa2c7; }
.ld-chart .lgd i { width: 9px; height: 9px; border-radius: 3px; flex: none; }
.ld-feel .bar { display: flex; height: 14px; border-radius: 100px; overflow: hidden; margin: 6px 0 12px; background: rgba(255, 255, 255, .08); }
.ld-feel .bar i { height: 100%; }
.ld-feel .lg { display: flex; flex-direction: column; gap: 5px; font-size: 11.5px; font-weight: 600; color: #9aa2c7; }
.ld-feel .lg i { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 6px; }
.ld-feel-note {
  margin-top: 10px; padding: 8px 11px;
  border-radius: 10px;
  background: rgba(139, 157, 255, .08);
  border: 1px solid rgba(139, 157, 255, .16);
  font-size: 11.5px; font-weight: 600; color: #c7cdea; line-height: 1.5;
}

/* ══ 임팩트 효과 (2026-07-23): 순차 등장 + 호버 리프트 + 펄스 ══ */

/* 순차 등장: 그룹(.ld-reveal)이 화면에 들어오면 내부 .ld-si가 시차를 두고 떠오름 */
.ld-si {
  opacity: 0; transform: translateY(26px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.ld-reveal.in .ld-si { opacity: 1; transform: none; }
.ld-reveal.in .ld-si:nth-child(1) { transition-delay: .06s; }
.ld-reveal.in .ld-si:nth-child(2) { transition-delay: .15s; }
.ld-reveal.in .ld-si:nth-child(3) { transition-delay: .24s; }
.ld-reveal.in .ld-si:nth-child(4) { transition-delay: .33s; }
.ld-reveal.in .ld-si:nth-child(5) { transition-delay: .42s; }
.ld-reveal.in .ld-si:nth-child(6) { transition-delay: .51s; }

/* 호버 리프트: 글 카드 */
.ld-gal-posts .ld-post, .ld-locked {
  transition: transform .3s var(--ease), border-color .3s, background .3s, box-shadow .3s;
}
.ld-gal-posts .ld-post:hover, .ld-locked:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 157, 255, .35);
  background: rgba(255, 255, 255, .075);
}
.ld-locked:hover { background: none; }

/* 호버 리프트: 카드뉴스 타일 (이미지 줌 + 보랏빛 테두리) */
.ld-cn-tile { transition: transform .35s var(--ease), border-color .35s, box-shadow .35s; }
.ld-cn-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 157, 255, .5);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .5), 0 0 24px rgba(139, 157, 255, .18);
}
.ld-cn-tile img { transition: transform .5s var(--ease); }
.ld-cn-tile:hover img { transform: scale(1.05); }
.ld-ph:hover { transform: none; box-shadow: none; }

/* 호버 리프트 + 재생 버튼 펄스: 펫 영상 타일 */
.ld-pv-tile { transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.ld-pv-tile:not(.ld-ph):hover {
  transform: translateY(-5px);
  border-color: rgba(139, 157, 255, .5);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .5), 0 0 20px rgba(139, 157, 255, .16);
}
.ld-pv-play { transition: opacity .25s, transform .3s var(--ease); }
.ld-pv-tile:not(.ld-ph):hover .ld-pv-play { transform: translate(-50%, -50%) scale(1.12); }
.ld-pv-tile:not(.playing):not(.ld-ph) .ld-pv-play { animation: ldPvPulse 2.6s ease-out infinite; }
@keyframes ldPvPulse {
  0%   { box-shadow: 0 0 0 0 rgba(139, 157, 255, .4); }
  70%  { box-shadow: 0 0 0 12px rgba(139, 157, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(139, 157, 255, 0); }
}

/* 캘린더: 오늘 도트 맥동 (히어로 필 도트와 같은 리듬) */
.ld-cal-day.today .dot { animation: ldPulse 2.4s ease-in-out infinite; }

/* KPI·차트 호버 */
.ld-kpi, .ld-chart { transition: transform .3s var(--ease), border-color .3s; }
.ld-kpi:hover, .ld-chart:hover { transform: translateY(-3px); border-color: rgba(139, 157, 255, .35); }

@media (prefers-reduced-motion: reduce) {
  .ld-si { opacity: 1; transform: none; transition: none; }
  .ld-pv-tile .ld-pv-play { animation: none; }
  .ld-cal-day.today .dot { animation: none; }
  .ld-cn-idcall, .ld-cn-idcall .sp { animation: none; }
  .ld-gal-posts .ld-post, .ld-locked, .ld-cn-tile, .ld-cn-tile img, .ld-pv-tile, .ld-kpi, .ld-chart { transition: none; }
}

/* ── 샘플 영역 반응형 ── */
@media (max-width: 960px) {
  .ld-panel { grid-template-columns: 1fr; }
  .ld-gal-posts { grid-template-columns: 1fr 1fr; }
  .ld-gal-posts > .ld-locked { grid-column: 1 / -1; }
  .ld-gal-media .ld-cn, .ld-gal-media .ld-vid { height: 340px; }
  .ld-gal-media .ld-cn { font-size: 13px; }
  .ld-sample-grid { grid-template-columns: repeat(3, 1fr); } /* 6장 → 3열 2줄 균등 */
  .ld-pv-grid { grid-template-columns: repeat(3, 1fr); }
  .ld-kpis { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .ld-panel { padding: 20px; }
  .ld-gal-posts { grid-template-columns: 1fr; }
  .ld-gal-posts > .ld-locked { grid-column: auto; }
  .ld-gal-media { gap: 14px; }
  .ld-gal-media .ld-cn, .ld-gal-media .ld-vid { height: 300px; }
  .ld-gal-media .ld-cn { font-size: 11.5px; }
  .ld-sample-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; } /* 2열이면 6장이 3줄로 커져서 3열 2줄 유지 */
  /* 모바일 타일(3열 ~104px)에 맞춰 말풍선 축소 — overflow:hidden 클리핑 방지 */
  .ld-cn-idcall .bub { font-size: 7.5px; padding: 4px 8px 5px; border-radius: 11px; }
  .ld-cn-idcall .bub b { font-size: 8.5px; }
  .ld-cn-idcall .sp { font-size: 9px; }
  .ld-cn-idcall .sp2 { font-size: 10px; }
  .ld-pv-grid { grid-template-columns: repeat(2, 1fr); }
  .ld-charts { grid-template-columns: 1fr; }
  .ld-cal-day { min-height: 50px; padding: 6px 2px; }
  .ld-cal-day .chip { display: none; }
  .ld-cal-day .stk { font-size: 11px; }
  .ld-cal-foot { gap: 4px 10px; padding: 9px 12px 11px; font-size: 10px; }
  .ld-cal-foot .hint { margin-left: 0; width: 100%; }
  /* 날짜 상세 모달: 모바일은 바텀 시트 */
  .ld-cm-backdrop { padding: 0; align-items: flex-end; }
  .ld-cm { width: 100%; max-height: 88vh; border-radius: 18px 18px 0 0; }
  .ld-cm-metric b { font-size: 12px; }
  .ld-cm-post .prev { white-space: normal; }
}
