.landing-body {
  background: linear-gradient(160deg, #fff5fa 0%, #f0e8ff 40%, #e8f4ff 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

.landing-hero {
  min-height: 100vh;
  position: relative;
  padding: 0 1.5rem 4rem;
}

.landing-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  max-width: 1100px;
  margin: 0 auto;
}

.landing-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
}

.landing-nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-content {
  max-width: 640px;
  margin: 4rem auto 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(200, 150, 255, 0.2);
  animation: float 3s ease-in-out infinite;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.gradient-text {
  background: linear-gradient(90deg, #ff6b9d, #c44dff, #5eb3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  opacity: 0.85;
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-doodles .doodle {
  position: absolute;
  font-size: 2rem;
  opacity: 0.6;
  animation: float 4s ease-in-out infinite;
}
.doodle.d1 { top: 20%; left: 10%; animation-delay: 0s; }
.doodle.d2 { top: 30%; right: 15%; animation-delay: 0.5s; }
.doodle.d3 { bottom: 25%; left: 20%; animation-delay: 1s; }
.doodle.d4 { bottom: 30%; right: 10%; animation-delay: 1.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.landing-features {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: center;
}

.landing-features h2 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: #fff;
  border-radius: 24px;
  padding: 2rem 1.5rem;
  box-shadow: 0 8px 40px rgba(150, 100, 200, 0.12);
  transition: transform 0.3s ease;
}
.feature-card:hover { transform: translateY(-6px) scale(1.02); }
.feature-icon { font-size: 2.5rem; display: block; margin-bottom: 1rem; }

.landing-preview {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
  text-align: center;
}

.preview-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.preview-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.25rem;
  text-align: left;
  box-shadow: 0 4px 24px rgba(100, 80, 150, 0.1);
}

.landing-footer {
  text-align: center;
  padding: 2rem;
  opacity: 0.8;
  font-size: 0.9rem;
}
.landing-footer a { margin: 0 0.5rem; color: #9b5de5; }

@media (max-width: 600px) {
  .landing-nav { flex-direction: column; gap: 1rem; }
}
