/* === FILE: css/landing.css === */
/* Style landing page: centered layout, logo, tombol aksi, footer */

.landing-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 32px 24px;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.landing-header {
  margin-bottom: 40px;
}

.landing-logo {
  width: 120px;
  height: auto;
  margin-bottom: 16px;
  animation: fadeIn 0.6s ease;
}

.landing-title {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 4px;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--accent-primary), #0059D9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.landing-tagline {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 12px;
}

.landing-description {
  font-size: 14px;
  color: var(--text-tertiary);
  line-height: 1.6;
}

.landing-actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
}

.landing-footer {
  width: 100%;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.landing-footer-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 8px;
}

.landing-version {
  font-size: 12px;
  color: var(--text-tertiary);
}

.landing-license {
  font-size: 12px;
  color: var(--text-tertiary);
}

.landing-domain {
  font-size: 12px;
  color: var(--text-tertiary);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}