/* ============================================================
   랜딩 페이지 — style.css
   🎨 메인 포인트 컬러: 골드/앰버 계열 (#E2943B, #FFD25E, #C97A22)
   배경: 다크 차콜 톤 (#121212 / #1A1C23)
============================================================ */

/* ── 0. CSS VARIABLES ──────────────────────────────────────── */
:root {
  /* 브랜드 컬러 — 골드/앰버 */
  --c-primary:      #E2943B;      /* 메인 골드 */
  --c-primary-lt:   #FFD25E;      /* 밝은 골드 */
  --c-primary-dk:   #C97A22;      /* 진한 골드 */
  --c-primary-dim:  rgba(226,148,59,0.12);
  --c-primary-glow: rgba(226,148,59,0.30);

  /* 배경 — 다크(차콜) 톤 */
  --c-bg:        #121212;
  --c-bg-2:      #17181D;
  --c-bg-card:   #1A1C23;
  --c-bg-card2:  #15161B;

  /* 텍스트 */
  --c-text:      #FFFFFF;
  --c-muted:     #9A9DA5;
  --c-border:    rgba(255,255,255,0.10);

  /* 타이포 */
  --f-body:  'Inter', sans-serif;
  --f-head:  'Space Grotesk', 'Inter', sans-serif;

  /* 그라디언트 */
  --grad-primary: linear-gradient(135deg, #C97A22 0%, #E2943B 50%, #FFD25E 100%);
  --grad-primary-soft: linear-gradient(135deg, rgba(226,148,59,0.12) 0%, rgba(255,210,94,0.05) 100%);

  /* 레이아웃 */
  --max-w: 640px;
  --r-card: 16px;
  --r-btn:  12px;
}

/* ── 1. RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }
body {
  font-family: var(--f-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
em { font-style: normal; }
strong { font-weight: 700; }

/* ── 2. WRAPPER ─────────────────────────────────────────────── */
.kd-wrap {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

/* ── 3. HEADER ──────────────────────────────────────────────── */
.kd-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0,0,0,0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 1px 14px rgba(0,0,0,0.4);
}
.kd-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.kd-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.3px;
  color: #FFFFFF;
}
.kd-live-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,50,50,0.10);
  border: 1px solid rgba(255,50,50,0.28);
  border-radius: 20px;
  padding: 4px 10px;
}
.kd-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #ff3c3c;
  animation: livePulse 1.4s ease-in-out infinite;
}
.kd-live-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #ff3c3c;
}
@keyframes livePulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.85); }
}

/* ── 4. HERO ────────────────────────────────────────────────── */
.kd-hero {
  position: relative;
  overflow: hidden;
  padding: 36px 0 40px;
  flex: 1;
  background: var(--c-bg);
}
/* 그리드 배경 */
.kd-hero-grid {
  display: none;
}
/* Orb */
.kd-hero-orb {
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 520px; height: 420px;
  background: radial-gradient(ellipse at center, rgba(226,148,59,0.11) 0%, transparent 68%);
  pointer-events: none;
  filter: blur(4px);
}
.kd-hero-inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* ── 5. VIEWER BADGE ─────────────────────────────────────────── */
.kd-viewer-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 13px;
  color: #FFFFFF;
  font-weight: 600;
}
.kd-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #FFFFFF;
  animation: livePulse 1.4s ease-in-out infinite;
  flex-shrink: 0;
}

/* ── 6. HEADLINE ─────────────────────────────────────────────── */
.kd-headline {
  font-family: var(--f-head);
  font-size: clamp(21px, 5.4vw, 30px);
  font-weight: 800;
  text-align: center;
  line-height: 1.28;
  letter-spacing: -0.5px;
  color: #FFFFFF;
}
.kd-neon-text {
  color: #FFFFFF;
  -webkit-text-fill-color: #FFFFFF;
  display: inline-block;
}
.kd-gold-text {
  color: #B49261;
  -webkit-text-fill-color: #B49261;
}
.kd-hero-desc {
  font-size: 13.5px;
  color: var(--c-muted);
  text-align: center;
  line-height: 1.6;
}
.kd-hero-desc strong {
  color: #FFFFFF;
  font-weight: 700;
}

/* ── 7. VIDEO ───────────────────────────────────────────────── */
.kd-video-wrap {
  width: 100%;
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow:
    0 0 0 1.5px rgba(226,148,59,0.18),
    0 8px 32px rgba(0,0,0,0.10),
    0 2px 8px rgba(0,0,0,0.05);
}
.kd-video-ratio {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background: #000;
}
.kd-video-ratio iframe,
#kdYTPlaceholder,
#kdYTPlaceholder iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}

/* 오버레이 */
.kd-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}
.kd-overlay:hover { background: rgba(0,0,0,0.65); }
.kd-overlay.kd-hidden { display: none; }

.kd-sound-btn {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  box-shadow: 0 0 28px rgba(226,148,59,0.55);
  animation: soundPulse 2s ease-in-out infinite;
}
@keyframes soundPulse {
  0%,100% { box-shadow: 0 0 28px rgba(226,148,59,0.55); transform: scale(1); }
  50%      { box-shadow: 0 0 48px rgba(226,148,59,0.85); transform: scale(1.06); }
}
.kd-overlay-text {
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  text-shadow: 0 0 12px rgba(255,255,255,0.4);
}
.kd-overlay-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

/* VIP 배지 */
.kd-vip-badge {
  position: absolute;
  top: 10px; left: 10px;
  z-index: 9;
  background: rgba(0,0,0,0.70);
  border: 1px solid rgba(255,255,255,0.38);
  border-radius: 6px;
  padding: 4px 9px;
  font-size: 10px;
  color: #FFFFFF;
  font-weight: 600;
  letter-spacing: 0.3px;
  backdrop-filter: blur(4px);
}

/* 진행바 */
.kd-progress-bar {
  width: 100%;
  height: 5px;
  background: rgba(0,0,0,0.07);
  position: relative;
  overflow: hidden;
}
.kd-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--grad-primary);
  transition: width 1s linear;
  box-shadow: 0 0 10px rgba(226,148,59,0.5);
}
.kd-progress-label {
  padding: 10px 14px;
  font-size: 12px;
  color: #FFFFFF;
  background: var(--c-bg-card);
  text-align: center;
}
.kd-progress-label.kd-done {
  color: var(--c-primary-lt);
  font-weight: 600;
  background: var(--c-bg-card);
}

/* ── 8. SUB COPY ─────────────────────────────────────────────── */
.kd-sub-copy {
  font-size: 14px;
  color: #FFFFFF;
  text-align: center;
}

/* ── 9. REVEAL ANIMATION ─────────────────────────────────────── */
.kd-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.kd-reveal.kd-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── 10. CONVERSION SECTION ──────────────────────────────────── */
.kd-conv {
  padding: 32px 0 24px;
  background: var(--c-bg-2);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.kd-conv-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* 잠금 안내 */
.kd-lock-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px;
  border-radius: var(--r-card);
  background: var(--c-bg-card);
  border: 1px dashed rgba(226,148,59,0.30);
}
.kd-lock-icon {
  font-size: 24px;
  color: var(--c-primary-lt);
  opacity: 0.9;
}
.kd-lock-msg {
  font-size: 13px;
  color: #FFFFFF;
  text-align: center;
}
.kd-lock-prog {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-primary-lt);
}
.kd-lock-wrap.kd-done {
  background: var(--c-bg-card);
  border-color: rgba(226,148,59,0.45);
  border-style: solid;
}

/* ── 11. MAIN BUTTON ─────────────────────────────────────────── */
.kd-btn-main {
  display: block;
  width: 100%;
  border-radius: var(--r-btn);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.2px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
  line-height: 1.3;
  padding: 18px 20px;
  color: #fff;
}

/* 잠금 상태 — 페이지 필(pill) 스타일 */
.kd-btn-main.kd-locked {
  background: var(--c-bg-card);
  border: 1px solid rgba(255,255,255,0.12);
  cursor: not-allowed;
  color: #FFFFFF;
  border-radius: 50px;
}
.kd-btn-main .kd-on { display: none; }
.kd-btn-main.kd-locked .kd-on { display: none; }
.kd-btn-main.kd-locked .kd-off { display: flex; justify-content: center; }

/* 활성 상태 */
.kd-btn-main.kd-active {
  background: var(--grad-primary);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 28px rgba(226,148,59,0.38), 0 0 0 1px rgba(226,148,59,0.22);
  animation: btnPulse 2.2s ease-in-out infinite;
}
.kd-btn-main.kd-active .kd-off { display: none; }
.kd-btn-main.kd-active .kd-on  { display: block; }
.kd-btn-main.kd-active:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(226,148,59,0.50), 0 0 0 1px rgba(226,148,59,0.32);
}
@keyframes btnPulse {
  0%,100% { box-shadow: 0 4px 28px rgba(226,148,59,0.38), 0 0 0 1px rgba(226,148,59,0.22); }
  50%      { box-shadow: 0 4px 44px rgba(226,148,59,0.60), 0 0 0 1px rgba(226,148,59,0.40); }
}

/* 잠금 버튼 내부 */
.kd-btn-locked-inner {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.kd-btn-free-label {
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
}
.kd-btn-free-label i { color: var(--c-primary-lt); }
.kd-btn-lock-status {
  font-size: 13px;
  color: var(--c-primary-lt);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── 12. WARNING BOX ─────────────────────────────────────────── */
.kd-warning-box {
  padding: 14px 16px;
  border-radius: 10px;
  background: var(--c-bg-card);
  border: 1px solid rgba(226,148,59,0.35);
}
.kd-warning-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-primary-lt);
  margin-bottom: 6px;
}
.kd-warning-body {
  font-size: 13px;
  color: var(--c-muted);
  line-height: 1.7;
}

/* ── 12b. INFO LIST BOX (이 영상에서 다루는 것) ───────────────── */
.kd-info-box {
  padding: 20px;
  border-radius: var(--r-card);
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
}
.kd-info-title {
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}
.kd-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.kd-info-list li {
  font-size: 13.5px;
  color: var(--c-muted);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.kd-info-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-primary-lt);
  margin-top: 6px;
  flex-shrink: 0;
}

/* ── 12c. QUANT GRID (2x2 아이콘 카드) ────────────────────────── */
.kd-quant-section {
  padding: 40px 0 8px;
  background: var(--c-bg);
}
.kd-quant-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}
.kd-quant-title {
  font-family: var(--f-head);
  font-size: clamp(19px, 5vw, 24px);
  font-weight: 800;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 8px;
}
.kd-quant-desc {
  font-size: 13px;
  color: var(--c-muted);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 24px;
}
.kd-quant-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.kd-quant-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-card);
  padding: 18px 16px;
  transition: border-color 0.3s;
}
.kd-quant-card:hover { border-color: rgba(226,148,59,0.35); }
.kd-quant-icon {
  font-size: 22px;
  margin-bottom: 10px;
  display: block;
}
.kd-quant-card-title {
  font-size: 14.5px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 5px;
}
.kd-quant-card-desc {
  font-size: 12px;
  color: var(--c-muted);
  line-height: 1.55;
}

/* ── 12d. FINAL CTA STRIP ─────────────────────────────────────── */
.kd-final-cta {
  padding: 36px 0 44px;
  background: var(--c-bg);
  text-align: center;
}
.kd-final-cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}
.kd-final-cta-text {
  font-size: 15px;
  color: #FFFFFF;
  line-height: 1.6;
  margin-bottom: 20px;
}
.kd-final-cta-text .kd-highlight {
  color: var(--c-primary-lt);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── 12e. PILL LOCK BUTTON (재사용 가능한 필형 버튼) ─────────────── */
.kd-btn-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.kd-btn-pill.kd-locked {
  background: var(--c-bg-card);
  border: 1px solid rgba(255,255,255,0.12);
  color: #FFFFFF;
  cursor: not-allowed;
}
.kd-btn-pill.kd-locked i { color: var(--c-primary-lt); }
.kd-btn-pill.kd-locked .kd-pill-time { color: var(--c-primary-lt); font-weight: 800; }
.kd-btn-pill.kd-active {
  background: var(--grad-primary);
  border: none;
  color: #1A1206;
  cursor: pointer;
  box-shadow: 0 4px 28px rgba(226,148,59,0.40);
  animation: btnPulse 2.2s ease-in-out infinite;
}
.kd-btn-pill.kd-active .kd-pill-on { display: inline; }
.kd-btn-pill.kd-active .kd-pill-off { display: none; }
.kd-btn-pill.kd-locked .kd-pill-on { display: none; }
.kd-btn-pill.kd-locked .kd-pill-off { display: inline; }

/* ── 13. PROOF SECTION ───────────────────────────────────────── */
.kd-proof {
  padding: 40px 0 36px;
  background: var(--c-bg);
}

/* Divider */
.kd-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: var(--max-w);
  margin: 0 auto 28px;
  padding: 0 20px;
}
.kd-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
}
.kd-divider-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #FFFFFF;
}

.kd-proof-title {
  font-family: var(--f-head);
  font-size: clamp(20px, 5vw, 26px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.3;
  color: #FFFFFF;
}
.kd-neon { color: #FFFFFF; }

/* 리뷰 그리드 */
.kd-review-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.kd-review-card {
  background: var(--c-bg-card);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-card);
  padding: 18px;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.kd-review-card:hover {
  border-color: rgba(255,255,255,0.28);
  box-shadow: 0 4px 24px rgba(0,0,0,0.6);
}
.kd-review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.kd-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.kd-review-meta { flex: 1; }
.kd-review-name {
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 5px;
}
.kd-review-verified {
  font-size: 11px;
  color: #FFFFFF;
  font-weight: 500;
}
.kd-stars {
  font-size: 12px;
  color: #FFFFFF;
  margin-top: 2px;
}
.kd-profit {
  font-size: 16px;
  font-weight: 800;
  color: #FFFFFF;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 8px;
  padding: 3px 9px;
  flex-shrink: 0;
}
.kd-review-body {
  font-size: 13.5px;
  color: #FFFFFF;
  line-height: 1.65;
  margin-bottom: 8px;
}
.kd-review-tag {
  font-size: 11px;
  color: #FFFFFF;
  letter-spacing: 0.2px;
}

/* 후기 하단 CTA */
.kd-proof-cta {
  max-width: var(--max-w);
  margin: 24px auto 0;
  padding: 0 20px;
}

/* ── 14. SUB BUTTON ──────────────────────────────────────────── */
.kd-btn-sub {
  display: block;
  width: 100%;
  border-radius: var(--r-btn);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}
.kd-btn-sub.kd-locked {
  background: var(--c-bg-card);
  border: 1px solid rgba(255,255,255,0.12);
  color: #FFFFFF;
  cursor: not-allowed;
  border-radius: 50px;
}
.kd-btn-sub .kd-sub-on { display: none; }
.kd-btn-sub.kd-locked .kd-sub-off { display: block; }
.kd-btn-sub.kd-active {
  background: var(--grad-primary);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 28px rgba(226,148,59,0.36);
  animation: btnPulse 2.2s ease-in-out infinite;
}
.kd-btn-sub.kd-active .kd-sub-off { display: none; }
.kd-btn-sub.kd-active .kd-sub-on  { display: block; }
.kd-btn-sub.kd-active:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(226,148,59,0.50);
}

/* ── 15. URGENCY SECTION ─────────────────────────────────────── */
.kd-urgency {
  padding: 40px 0 44px;
  background: var(--c-bg-2);
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.kd-urgency-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.kd-urgency-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,80,80,0.09);
  border: 1px solid rgba(255,80,80,0.26);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  color: #CC3333;
  letter-spacing: 0.3px;
}
.kd-urgency-title {
  font-family: var(--f-head);
  font-size: clamp(20px, 5.5vw, 28px);
  font-weight: 800;
  line-height: 1.3;
  color: #FFFFFF;
}
.kd-urgency-desc {
  font-size: 13px;
  color: #FFFFFF;
}

/* 카운트다운 */
.kd-countdown {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--c-bg-card);
  border: 1.5px solid rgba(226,148,59,0.30);
  border-radius: 14px;
  padding: 14px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5), 0 1px 4px rgba(0,0,0,0.3);
}
.kd-cd-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.kd-cd-num {
  font-family: var(--f-head);
  font-size: 40px;
  font-weight: 800;
  color: var(--c-primary-lt);
  line-height: 1;
  min-width: 56px;
  text-align: center;
}
.kd-cd-label {
  font-size: 11px;
  color: #FFFFFF;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.kd-cd-colon {
  font-size: 34px;
  font-weight: 800;
  color: #FFFFFF;
  opacity: 0.55;
  line-height: 1;
  padding-bottom: 14px;
}

.kd-urgency-caution {
  font-size: 11.5px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ── 16. FOOTER ──────────────────────────────────────────────── */
.kd-footer {
  padding: 32px 0 120px;
  background: var(--c-bg-2);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.kd-footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.kd-footer-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(30,30,50,0.38);
}
.kd-yt-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,50,50,0.07);
  border: 1px solid rgba(255,50,50,0.20);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(210,50,50,0.85);
  transition: all 0.2s;
}
.kd-yt-btn:hover {
  background: rgba(255,50,50,0.13);
  border-color: rgba(255,50,50,0.32);
}
.kd-footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #FFFFFF;
}
.kd-footer-links a {
  text-decoration: underline;
  text-underline-offset: 2px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.kd-footer-links a:hover { opacity: 1; }
.kd-footer-biz {
  font-size: 11px;
  color: rgba(70,70,90,0.50);
  line-height: 1.8;
}
.kd-footer-disc {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* 개인정보 / 약관 박스 */
.kd-privacy-box,
.kd-terms-box {
  width: 100%;
  background: var(--c-bg-card);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  margin-top: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.kd-privacy-box h3,
.kd-terms-box h3 {
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
}
.kd-privacy-box p,
.kd-terms-box p {
  font-size: 12px;
  color: #FFFFFF;
  line-height: 1.7;
  margin-bottom: 6px;
}

/* ── 17. FLOATING BAR ────────────────────────────────────────── */
.kd-fbar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
}
.kd-fbar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.kd-fbar-left { flex: 1; overflow: hidden; }
.kd-fbar-copy {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: #FFFFFF;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.kd-fbar-copy.kd-active-copy {
  color: #FFFFFF;
}

.kd-btn-fbar {
  flex-shrink: 0;
  border-radius: 10px;
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.2px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}
/* 잠금 상태 */
.kd-btn-fbar[aria-disabled="true"] {
  background: var(--c-bg-card);
  border: 1.5px solid rgba(255,255,255,0.14);
  color: #FFFFFF;
  cursor: not-allowed;
}
.kd-btn-fbar[aria-disabled="true"] .kd-fbar-bolt-icon { display: none; }
/* 활성 상태 */
.kd-btn-fbar[aria-disabled="false"] {
  background: var(--grad-primary);
  color: #1A1206;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(226,148,59,0.36);
  animation: btnPulse 2.2s ease-in-out infinite;
}
.kd-btn-fbar[aria-disabled="false"] .kd-fbar-lock-icon { display: none; }
.kd-btn-fbar[aria-disabled="false"] .kd-fbar-bolt-icon { display: block; }
.kd-btn-fbar[aria-disabled="false"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(226,148,59,0.50);
}

/* ── 18. TOAST ───────────────────────────────────────────────── */
.kd-unlock-toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 300;
  background: var(--c-bg-card);
  border: 1.5px solid var(--c-primary-lt);
  border-radius: 50px;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6), 0 2px 8px rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.3s, transform 0.3s;
}
.kd-unlock-toast.kd-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── 19. COLON BLINK ─────────────────────────────────────────── */
@keyframes colonBlink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.2; }
}
.kd-cd-colon { animation: colonBlink 1s step-end infinite; }

/* ── 20. SCROLLBAR ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--c-bg-2); }
::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.20);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.40); }

/* ── 21. SELECTION ───────────────────────────────────────────── */
::selection {
  background: rgba(255,255,255,0.25);
  color: #FFFFFF;
}

/* ── 22. RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 400px) {
  .kd-headline { font-size: 19px; }
  .kd-btn-main { font-size: 14px; padding: 16px 16px; }
  .kd-cd-num { font-size: 34px; min-width: 48px; }
  .kd-cd-colon { font-size: 28px; }
}
@media (min-width: 640px) {
  .kd-hero { padding: 52px 0 56px; }
  .kd-hero-inner { gap: 24px; }
  .kd-proof { padding: 52px 0 48px; }
}
/* 데스크탑: 플로팅 바 숨김 */
@media (min-width: 768px) {
  .kd-fbar { display: none; }
  .kd-footer { padding-bottom: 48px; }
}
