/* landing.css — index.html 전용 스타일 */

body { background: var(--sage-dark); }

.landing {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* 메인 콘텐츠 */
.landing-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-8) var(--space-6);
  position: relative;
  z-index: 1;
}

.landing-title {
  font-size: 2.4rem;
  font-weight: var(--fw-extrabold);
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: var(--space-4);
  animation: fade-up 0.5s ease 0.2s both;
  text-align: center;
}

.landing-title .highlight {
  color: var(--point);
  position: relative;
  display: inline-block;
}

.landing-desc {
  font-size: var(--text-base);
  color: rgba(200,221,208,0.8);
  line-height: var(--lh-normal);
  margin-bottom: var(--space-16);
  animation: fade-up 0.5s ease 0.3s both;
  text-align: center;
}

/* CTA 버튼 영역 */
.landing-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-3);
  animation: fade-up 0.5s ease 0.45s both;
}

.btn-landing-secondary {
  width: 100%;
  height: 54px;
  border-radius: var(--border-radius);
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.18);
  color: #fff;
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  cursor: pointer;
  transition: all var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}

.btn-landing-primary {
  width: 100%;
  height: 54px;
  border-radius: var(--border-radius);
  background: var(--point);
  color: #fff;
  font-size: var(--text-base);
  font-weight: var(--fw-bold);
  letter-spacing: -0.01em;
  gap: var(--space-2);
  cursor: pointer;
  transition: all var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
  border: none;
}

/* 하단 */
.landing-footer {
  padding: var(--space-5) var(--space-6);
  padding-bottom: calc(var(--space-5) + env(safe-area-inset-bottom, 0px));
  text-align: center;
  position: relative;
  z-index: 1;
}

.landing-footer__text {
  font-size: var(--text-xs);
  color: rgba(200,221,208,0.4);
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes logo-pop {
  from { transform: scale(0.4) rotate(-10deg); opacity: 0; }
  to   { transform: scale(1) rotate(0deg); opacity: 1; }
}
