/* ==========================================
   LANDING PAGE
   ========================================== */

.landing { overflow-x: hidden; }

/* Hero */
.lp-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(180deg, #4a90a8 0%, #7ec8e3 40%, #a8dff0 70%, #5b8731 95%, #8b6914 100%);
  position: relative;
  overflow: hidden;
}

.lp-hero .cloud {
  position: absolute;
  background: white;
  border: 3px solid #ddd;
  opacity: 0.8;
}

.lp-hero .cloud-1 { width: 100px; height: 30px; top: 10%; left: 10%; animation: mc-float 6s ease-in-out infinite; }
.lp-hero .cloud-2 { width: 140px; height: 35px; top: 15%; right: 15%; animation: mc-float 8s ease-in-out infinite 1s; }
.lp-hero .cloud-3 { width: 80px; height: 25px; top: 25%; left: 50%; animation: mc-float 7s ease-in-out infinite 2s; }

.lp-hero .floating-block {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 3px solid var(--mc-border);
  animation: mc-float 5s ease-in-out infinite;
}

.lp-hero .block-1 { background: var(--mc-grass); top: 20%; left: 5%; animation-delay: 0.5s; }
.lp-hero .block-2 { background: var(--mc-stone); top: 30%; right: 8%; animation-delay: 1.5s; }
.lp-hero .block-3 { background: var(--mc-dirt); bottom: 20%; left: 15%; animation-delay: 2.5s; }
.lp-hero .block-4 { background: var(--mc-diamond); bottom: 25%; right: 12%; animation-delay: 3s; width: 30px; height: 30px; }

.lp-hero .avatar {
  font-size: 6rem;
  margin-bottom: 20px;
  animation: mc-bounce 2s ease-in-out infinite;
}

.lp-hero .speech-bubble {
  background: var(--mc-text);
  color: var(--mc-text-dark);
  padding: 15px 25px;
  border: 3px solid var(--mc-border);
  box-shadow: 4px 4px 0 var(--mc-border);
  max-width: 500px;
  margin-bottom: 30px;
  position: relative;
  font-size: 0.65rem;
}

.lp-hero .speech-bubble::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 15px solid var(--mc-text);
}

.lp-hero .logo-title {
  font-size: 1.8rem;
  color: var(--mc-gold);
  text-shadow: 4px 4px 0 rgba(0,0,0,0.5);
  margin-bottom: 10px;
}

.lp-hero .hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.lp-hero .hero-buttons .mc-btn {
  min-width: 180px;
  padding: 15px 20px;
  font-size: 0.6rem;
}

/* LP Sections */
.lp-section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.lp-section--alt {
  background: rgba(255,255,255,0.03);
}

.lp-section h2 {
  text-align: center;
  color: var(--mc-gold);
  font-size: 1rem;
  margin-bottom: 30px;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.5);
}

/* Brain Comparison */
.brain-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 30px 0;
}

.brain-side {
  text-align: center;
  padding: 25px;
  border: 3px solid var(--mc-border);
}

.brain-side .brain-visual {
  font-size: 4rem;
  margin-bottom: 15px;
}

.brain-side .brain-label {
  font-size: 0.6rem;
  color: var(--mc-gold);
  margin-bottom: 8px;
}

.brain-healthy {
  background: rgba(94,199,80,0.1);
  border-color: var(--mc-grass-light);
}

.brain-affected {
  background: rgba(176,46,38,0.1);
  border-color: var(--mc-red);
}

/* CTA Section */
.lp-cta {
  background: linear-gradient(180deg, var(--mc-bg-dark), #2a1a3d, var(--mc-bg-dark));
  padding: 80px 20px;
  text-align: center;
}

.lp-cta h2 {
  color: var(--mc-gold);
  margin-bottom: 10px;
}

.lp-cta .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.lp-cta .cta-buttons .mc-btn {
  min-width: 220px;
  padding: 18px 25px;
  font-size: 0.65rem;
}

/* Decorations */
.lp-stars {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 8px;
  margin: 20px 0;
  color: var(--mc-gold);
}

/* ==========================================
   RESPONSIVE — TABLET (≤ 768px)
   ========================================== */
@media (max-width: 768px) {
  .lp-hero .logo-title {
    font-size: 1.3rem;
  }

  .lp-hero .avatar {
    font-size: 4rem;
  }

  .lp-hero .speech-bubble {
    max-width: 90%;
    font-size: 0.55rem;
    padding: 12px 15px;
  }

  .lp-hero .hero-buttons .mc-btn {
    min-width: 150px;
    padding: 12px 15px;
    font-size: 0.5rem;
  }

  .lp-hero .cloud { display: none; }

  .lp-section h2 {
    font-size: 0.85rem;
  }

  .brain-compare {
    gap: 15px;
  }

  .brain-side {
    padding: 15px;
  }

  .brain-side .brain-visual {
    font-size: 2.5rem;
  }

  .lp-cta {
    padding: 50px 15px;
  }

  .lp-cta .cta-buttons .mc-btn {
    min-width: 180px;
    font-size: 0.55rem;
  }
}

/* ==========================================
   RESPONSIVE — MOBILE (≤ 480px)
   ========================================== */
@media (max-width: 480px) {
  .lp-hero {
    padding: 30px 15px;
    min-height: 100svh;
  }

  .lp-hero .logo-title {
    font-size: 0.9rem;
  }

  .lp-hero .avatar {
    font-size: 3.5rem;
    margin-bottom: 12px;
  }

  .lp-hero .speech-bubble {
    max-width: 95%;
    font-size: 0.5rem;
    padding: 10px 12px;
  }

  .lp-hero .hero-buttons {
    flex-direction: column;
    width: 100%;
    padding: 0 10px;
  }

  .lp-hero .hero-buttons .mc-btn {
    min-width: unset;
    width: 100%;
    padding: 12px 10px;
    font-size: 0.5rem;
  }

  .lp-hero .floating-block { display: none; }

  .lp-hero .cloud { display: none; }

  .lp-stars {
    font-size: 0.6rem;
    letter-spacing: 4px;
  }

  .lp-section {
    padding: 35px 15px;
  }

  .lp-section h2 {
    font-size: 0.75rem;
    margin-bottom: 20px;
  }

  .brain-compare {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .brain-side .brain-visual {
    font-size: 2rem;
  }

  .brain-side .brain-label {
    font-size: 0.5rem;
  }

  .lp-cta {
    padding: 40px 15px;
  }

  .lp-cta .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .lp-cta .cta-buttons .mc-btn {
    min-width: unset;
    width: 100%;
    max-width: 300px;
    font-size: 0.5rem;
    padding: 14px 15px;
  }
}
