body.landing-page {
  margin: 0;
  min-height: 100vh;
  background: #c9ded6;
  color: #24433c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Segoe UI', Roboto, sans-serif;
}

body.landing-page::before {
  display: none;
}

.landing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding: 3rem 1.5rem;
  text-align: center;
}

.landing-logo {
  width: min(60vw, 420px);
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 36px rgba(18, 53, 46, 0.35));
}

.landing-actions {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.landing-button {
  min-width: 160px;
  padding: 0.85rem 2.75rem;
  font-size: 1.05rem;
  text-decoration: none;
  text-align: center;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(22, 60, 51, 0.25);
}

.landing-button.primary {
  background: linear-gradient(135deg, #659c9b, #3f6f6e);
  color: #f3fffb;
}

.landing-button.primary:hover {
  background: linear-gradient(135deg, #76afae, #4d7f7e);
}

.landing-button.secondary {
  background: rgba(255, 255, 255, 0.35);
  color: #24433c;
  box-shadow: inset 0 0 0 1px rgba(36, 67, 60, 0.35);
}

.landing-button.secondary:hover {
  background: rgba(255, 255, 255, 0.5);
}

@media (max-width: 520px) {
  .landing {
    gap: 2rem;
  }

  .landing-button {
    width: 100%;
  }
}
