/* ============================================================
   landing.css - 랜딩페이지 전용 스타일
   ============================================================ */

/* ── 기본 리셋 ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.lp-body {
  font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #0a0000;
  color: #e8e0e0;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── 히어로 ── */
.lp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 40px 60px;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0000 0%, #1a0505 50%, #0d0000 100%);
  text-align: center;
}

.lp-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,68,68,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(180,0,0,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.lp-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── 영업 상태 배너 ── */
.lp-shop-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 20px;
}
.lp-shop-open {
  background: rgba(52, 211, 153, 0.15);
  border: 2px solid rgba(52, 211, 153, 0.6);
  color: #34d399;
  box-shadow: 0 0 20px rgba(52, 211, 153, 0.25);
}
.lp-shop-closed {
  background: rgba(239, 68, 68, 0.15);
  border: 2px solid rgba(239, 68, 68, 0.6);
  color: #f87171;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.25);
}
.lp-shop-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.lp-shop-open .lp-shop-dot {
  background: #34d399;
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.3);
  animation: lp-dot-pulse-green 1.8s infinite;
}
.lp-shop-closed .lp-shop-dot {
  background: #f87171;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.3);
  animation: lp-dot-pulse-red 1.8s infinite;
}
@keyframes lp-dot-pulse-green {
  0%, 100% { box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.3); }
  50%       { box-shadow: 0 0 0 7px rgba(52, 211, 153, 0.1); }
}
@keyframes lp-dot-pulse-red {
  0%, 100% { box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.3); }
  50%       { box-shadow: 0 0 0 7px rgba(239, 68, 68, 0.1); }
}

/* ── 뱃지 ── */
.lp-hero-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.lp-badge {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.lp-badge.red   { background: rgba(255,68,68,0.2);  color: #ff6b6b;  border: 1px solid rgba(255,68,68,0.4); }
.lp-badge.green { background: rgba(52,211,153,0.15); color: #34d399;  border: 1px solid rgba(52,211,153,0.4); }
.lp-badge.blue  { background: rgba(96,165,250,0.15); color: #60a5fa;  border: 1px solid rgba(96,165,250,0.4); }

/* ── 히어로 텍스트 ── */
.lp-hero-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.lp-hero-sub {
  display: block;
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 500;
  color: #ff4444;
  margin-top: 8px;
  letter-spacing: 0;
}
.lp-hero-desc {
  font-size: 16px;
  color: #b09090;
  margin-bottom: 32px;
  line-height: 1.8;
  text-align: center;
}

/* ── 히어로 스탯 ── */
.lp-hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,68,68,0.2);
  border-radius: 12px;
  padding: 16px 24px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.lp-stat { text-align: center; padding: 0 24px; }
.lp-stat-num {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #ff4444;
  line-height: 1.2;
}
.lp-stat-num.lp-stat-live {
  color: #34d399;
}
.lp-stat-label {
  display: flex;
  font-size: 12px;
  color: #907070;
  margin-top: 2px;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.lp-live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  flex-shrink: 0;
  animation: lp-live-pulse 1.8s infinite;
}
@keyframes lp-live-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52,211,153,0.5); opacity: 1; }
  50%       { box-shadow: 0 0 0 5px rgba(52,211,153,0);  opacity: 0.7; }
}
.lp-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,68,68,0.2);
}

/* ── 버튼 ── */
.lp-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ff4444;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 8px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.lp-btn-primary:hover { background: #ff6b6b; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,68,68,0.4); }
.lp-btn-primary.large { padding: 15px 36px; font-size: 16px; }

.lp-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(251,191,36,0.15);
  color: #fbbf24;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 8px;
  border: 1px solid rgba(251,191,36,0.4);
  transition: all 0.2s;
}
.lp-btn-secondary:hover { background: rgba(251,191,36,0.25); transform: translateY(-2px); }

/* ── 신뢰 바 ── */
.lp-trust-bar {
  background: rgba(255,68,68,0.06);
  border-top: 1px solid rgba(255,68,68,0.15);
  border-bottom: 1px solid rgba(255,68,68,0.15);
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.lp-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #b09090;
  padding: 6px 24px;
  white-space: nowrap;
}
.lp-trust-item i { color: #ff4444; }
.lp-trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,68,68,0.2);
}

/* ── 섹션 공통 ── */
.lp-section-header {
  text-align: center;
  margin-bottom: 48px;
}
.lp-section-title {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.lp-section-desc {
  font-size: 16px;
  color: #907070;
}

/* ── 스크롤 애니메이션 ── */
.lp-anim {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.lp-anim.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── 히어로 축소 버전 ── */
.lp-hero-compact {
  min-height: auto;
  padding: 60px 40px 50px;
}

/* ── 가격표 섹션 ── */
.lp-price-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.lp-price-text {
  display: block;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  color: #e0e0e0;
  font-family: inherit;
  font-size: 25px;
  line-height: 2.2;
  white-space: pre-wrap;
  word-break: break-word;
  text-align: center;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.lp-bottom-notice {
  display: block;
  max-width: 760px;
  margin: 24px auto 0;
  padding: 18px 28px;
  background: rgba(251,191,36,0.07);
  border: 1px solid rgba(251,191,36,0.25);
  border-radius: 10px;
  color: #fbbf24;
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
  white-space: pre-wrap;
  word-break: break-word;
}

.lp-bottom-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  padding: 0 16px 20px;
}

/* ── 반응형 768px ── */
@media (max-width: 768px) {
  .lp-hero {
    flex-direction: column;
    align-items: center;
    padding: 90px 24px 50px;
    min-height: auto;
    gap: 0;
  }
  .lp-hero-compact { padding: 40px 20px 36px; }
  .lp-hero-stats {
    padding: 14px 16px;
    width: 100%;
    justify-content: center;
  }
  .lp-stat { padding: 0 16px; }
  .lp-stat-num { font-size: 22px; }

  .lp-trust-bar {
    padding: 12px 16px;
    gap: 4px;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
  }
  .lp-trust-divider { display: none; }
  .lp-trust-item { font-size: 12px; padding: 4px 12px; }

  .lp-price-section { padding: 40px 16px 60px; }
  .lp-price-text { font-size: 16px; padding: 20px 16px; }
  .lp-bottom-btns { flex-direction: column; align-items: center; }
  .lp-btn-primary.large, .lp-btn-secondary { width: 100%; justify-content: center; }
}

/* ── 반응형 480px ── */
@media (max-width: 480px) {
  .lp-hero-title { font-size: 34px; }
  .lp-hero-desc { font-size: 14px; }
  .lp-hero-btns { flex-direction: column; }
  .lp-btn-primary, .lp-btn-secondary { width: 100%; justify-content: center; }
  .lp-hero-stats {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }
  .lp-stat-divider { width: 60px; height: 1px; }
  .lp-section-title { font-size: 24px; }
  .lp-price-text { font-size: 14px; line-height: 1.9; }
}
