/* Mind Your Business — single-viewport landing, no page scroll */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  overflow: hidden;
}

body {
  min-height: 100dvh;
  font-family: Fredoka, ui-rounded, "Segoe UI", system-ui, sans-serif;
  color: #2a4a6e;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(
    180deg,
    #b8d9f2 0%,
    #c9e6fa 35%,
    #d8eefc 55%,
    #e8f4fd 78%,
    #f0f8ff 100%
  );
}

/* Sky layer behind content */
.sky {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Soft cloud puffs — transform-only animation */
.cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  filter: blur(0.5px);
  box-shadow:
    2.2rem 0.35rem 0 -0.2rem rgba(255, 255, 255, 0.75),
    -2rem 0.5rem 0 -0.35rem rgba(255, 255, 255, 0.65),
    0 1.1rem 0 -0.15rem rgba(255, 255, 255, 0.55);
  opacity: 0.92;
  animation: drift 28s ease-in-out infinite;
}

.cloud--1 {
  width: 5.5rem;
  height: 2rem;
  top: 12%;
  left: -5%;
  animation-duration: 32s;
  animation-delay: -4s;
}

.cloud--2 {
  width: 7rem;
  height: 2.35rem;
  top: 22%;
  right: -8%;
  animation-name: drift-alt;
  animation-duration: 38s;
  animation-delay: -12s;
}

.cloud--3 {
  width: 4.5rem;
  height: 1.65rem;
  bottom: 28%;
  left: 8%;
  opacity: 0.78;
  animation-duration: 44s;
  animation-delay: -20s;
}

.cloud--4 {
  width: 6rem;
  height: 2.1rem;
  bottom: 18%;
  right: 5%;
  opacity: 0.85;
  animation-duration: 36s;
  animation-delay: -8s;
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(2.5rem, -0.75rem, 0);
  }
}

@keyframes drift-alt {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1.15);
  }
  50% {
    transform: translate3d(-2rem, 0.6rem, 0) scale(1.15);
  }
}

.hero {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(1rem, 4vw, 2.5rem);
  max-width: min(36rem, 92vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.65rem, 2.5vw, 1rem);
}

.hero__glow {
  position: absolute;
  inset: auto;
  top: 50%;
  left: 50%;
  translate: -50% -55%;
  width: min(120vw, 28rem);
  height: min(70vh, 18rem);
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.12) 45%,
    transparent 70%
  );
  pointer-events: none;
  z-index: -1;
}

.hero__title {
  margin: 0;
  font-weight: 700;
  font-size: clamp(1.85rem, 6.5vw, 3rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8),
    0 0.15rem 0.5rem rgba(120, 170, 210, 0.35);
}

.hero__tagline {
  margin: 0;
  font-weight: 400;
  font-size: clamp(0.95rem, 3.2vw, 1.15rem);
  opacity: 0.88;
  max-width: 26rem;
  line-height: 1.35;
}

.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.75rem, 2.5vw, 1rem);
  margin-top: clamp(0.35rem, 1.5vw, 0.75rem);
  width: 100%;
  max-width: min(22rem, 100%);
}

.cta__primary {
  width: 100%;
}

.cta__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  gap: clamp(0.45rem, 2vw, 0.65rem);
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55em 1.1em;
  min-height: 2.65rem;
  font-family: inherit;
  font-weight: 600;
  font-size: clamp(0.82rem, 2.6vw, 0.95rem);
  text-decoration: none;
  color: #2a4a6e;
  background: rgba(255, 255, 255, 0.72);
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  box-shadow:
    0 0.12rem 0 rgba(180, 210, 235, 0.9),
    0 0.35rem 0.85rem rgba(100, 150, 190, 0.18);
  transition:
    background 0.15s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.btn:hover {
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-1px);
  box-shadow:
    0 0.12rem 0 rgba(180, 210, 235, 0.9),
    0 0.45rem 1rem rgba(100, 150, 190, 0.22);
}

.btn:active {
  transform: translateY(1px);
  box-shadow:
    0 0.06rem 0 rgba(180, 210, 235, 0.85),
    0 0.2rem 0.5rem rgba(100, 150, 190, 0.15);
}

.btn:focus-visible {
  outline: 3px solid #6eb3e8;
  outline-offset: 3px;
}

.btn--primary {
  color: #fff;
  background: linear-gradient(180deg, #5aa8e8 0%, #3d8fd4 100%);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow:
    0 0.12rem 0 #2d6fad,
    0 0.4rem 0.9rem rgba(45, 111, 173, 0.35);
}

.btn--primary:hover {
  background: linear-gradient(180deg, #6cb4ee 0%, #4a9add 100%);
  box-shadow:
    0 0.12rem 0 #2d6fad,
    0 0.5rem 1.1rem rgba(45, 111, 173, 0.4);
}

.btn--primary:focus-visible {
  outline-color: #2d6fad;
}

.btn--wishlist {
  width: 100%;
  min-height: 3.1rem;
  padding: 0.65em 1.35em;
  font-size: clamp(0.95rem, 3.2vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow:
    0 0.14rem 0 #25649a,
    0 0.5rem 1.15rem rgba(45, 111, 173, 0.42);
}

.btn--wishlist:hover {
  box-shadow:
    0 0.14rem 0 #25649a,
    0 0.6rem 1.35rem rgba(45, 111, 173, 0.48);
}

.btn--quiet {
  font-weight: 500;
  opacity: 0.92;
  background: rgba(255, 255, 255, 0.45);
  border-color: rgba(255, 255, 255, 0.65);
  box-shadow: 0 0.08rem 0.4rem rgba(100, 150, 190, 0.12);
}

.btn--quiet:hover {
  background: rgba(255, 255, 255, 0.65);
}

@media (prefers-reduced-motion: reduce) {
  .cloud {
    animation: none;
  }

  .btn {
    transition: none;
  }

  .btn:hover,
  .btn:active {
    transform: none;
  }
}
