.landing {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  padding: 32px 24px;
  text-align: center;
}

.landing__icon {
  font-size: 48px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeInDown 0.6s ease forwards;
}

.landing__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  max-width: 340px;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeInDown 0.6s ease 0.2s forwards;
}

.landing__subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 300px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeInDown 0.6s ease 0.4s forwards;
}

.landing__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-blue);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 24px var(--accent-glow), 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.6s forwards, pulse 2.5s ease-in-out 1.2s infinite;
}

.landing__cta:active {
  transform: scale(0.97);
  box-shadow: 0 0 12px var(--accent-glow), 0 2px 8px rgba(0, 0, 0, 0.3);
}

.landing__cta-icon {
  font-size: 20px;
}

.landing__disclaimer {
  position: fixed;
  bottom: 24px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
  opacity: 0;
  animation: fadeIn 0.6s ease 1s forwards;
}

/* Animations now in global.css */
