.landing {
  min-height: 100vh;
  padding: 2rem 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.landing-hero {
  text-align: center;
  padding: 3rem 0 2rem;
  position: relative;
}

.moon {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at 35% 35%, var(--yellow-soft), var(--yellow-glow));
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 60px rgba(246, 211, 101, 0.4), 0 0 120px rgba(246, 211, 101, 0.15);
  animation: moonGlow 4s ease-in-out infinite alternate;
}

@keyframes moonGlow {
  from { box-shadow: 0 0 60px rgba(246, 211, 101, 0.4), 0 0 120px rgba(246, 211, 101, 0.15); }
  to { box-shadow: 0 0 80px rgba(246, 211, 101, 0.5), 0 0 160px rgba(246, 211, 101, 0.2); }
}

.landing-hero h1 {
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--yellow-soft), var(--yellow-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.tagline {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--moon-cream);
  margin-bottom: 0.5rem;
}

.subtitle {
  color: var(--blue-light);
  opacity: 0.7;
  font-size: 1rem;
  line-height: 1.6;
}

.landing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.landing-card h2 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.landing-card > p {
  color: var(--moon-cream);
  opacity: 0.7;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

/* Family code display */
.code-display {
  text-align: center;
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: rgba(246, 211, 101, 0.1);
  border: 2px dashed rgba(246, 211, 101, 0.3);
  border-radius: var(--radius);
}

.code-display .code {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--yellow-soft);
  letter-spacing: 0.5rem;
}

.code-display p {
  font-size: 0.85rem;
  color: var(--moon-cream);
  margin-top: 0.5rem;
}

/* Features grid */
.landing-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  padding-bottom: 3rem;
}

.feature {
  text-align: center;
  padding: 1rem;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.feature h3 {
  font-size: 1rem;
  color: var(--yellow-soft);
  margin-bottom: 0.25rem;
}

.feature p {
  font-size: 0.8rem;
  color: var(--moon-cream);
  opacity: 0.7;
}

@media (max-width: 768px) {
  .landing-hero h1 { font-size: 2.5rem; }
  .tagline { font-size: 1.1rem; }
  .landing-cards { grid-template-columns: 1fr; }
}
