/* 고객 대시보드 (ISS-011) — brand-dna 토큰 기반. 모바일 우선. */
:root {
  --cdash-hero: #1B4FD8;
  --cdash-accent: #D97706;
  --cdash-surface: #F7F8FC;
  --cdash-surface-alt: #FFFFFF;
  --cdash-text: #0D1B3E;
  --cdash-text-sub: #4B5A7A;
  --cdash-border: #D1D9EE;
  --cdash-radius: 12px;
}

.cdash-body {
  margin: 0;
  background: var(--cdash-surface);
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--cdash-text);
  -webkit-font-smoothing: antialiased;
}

.cdash {
  max-width: 480px;
  margin: 0 auto;
  padding: 24px 20px 40px;
  overflow-x: hidden;
}

.cdash__header { margin-bottom: 20px; }

.cdash__brand {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--cdash-hero);
  margin: 0 0 8px;
}

.cdash__greeting {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

/* 영상 플레이어 */
.cdash__video { margin-bottom: 20px; }

.cdash__video-player {
  width: 100%;
  border-radius: var(--cdash-radius);
  background: #000;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* 분석 카드 */
.cdash__card {
  background: var(--cdash-surface-alt);
  border: 1px solid var(--cdash-border);
  border-radius: var(--cdash-radius);
  padding: 24px 20px;
}

.cdash__card--empty {
  color: var(--cdash-text-sub);
  font-size: 15px;
  text-align: center;
}

.cdash__score {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  color: var(--cdash-hero);
}

.cdash__score-num { font-size: 56px; font-weight: 800; line-height: 1; }
.cdash__score-unit { font-size: 18px; font-weight: 600; }

.cdash__score-label {
  text-align: center;
  font-size: 14px;
  color: var(--cdash-text-sub);
  margin: 6px 0 20px;
}
.cdash__score-label abbr { text-decoration: underline dotted; cursor: help; }

.cdash__lack {
  background: rgba(217, 118, 6, 0.06);
  border-left: 3px solid var(--cdash-accent);
  border-radius: 8px;
  padding: 14px 16px;
}

.cdash__lack-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--cdash-accent);
  margin: 0 0 6px;
}

.cdash__lack-body {
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

.cdash__rec {
  font-size: 13px;
  color: var(--cdash-text-sub);
  margin: 16px 0 0;
}

.cdash__footer {
  text-align: center;
  font-size: 12px;
  color: var(--cdash-text-sub);
  margin-top: 28px;
}

/* 만료 페이지 */
.cdash--expired {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
}

.cdash__expired-box { text-align: center; }
.cdash__expired-title { font-size: 20px; font-weight: 700; margin: 0 0 12px; }
.cdash__expired-body { font-size: 15px; line-height: 1.6; color: var(--cdash-text-sub); margin: 0; }
