.landing {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.landing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 18, 0.72);
}

.landing-content {
  position: relative;
  z-index: 1;
  max-width: 480px;
}

.landing-logo {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  margin-bottom: 20px;
}

.landing-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.landing-tagline {
  color: var(--text-dim);
  font-size: 16px;
  margin-bottom: 32px;
}

.landing-cta {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 12px;
  background: var(--accent);
  color: #04121f;
  font-weight: 600;
  font-size: 15px;
}
