:root {
  --lavender: #cbbcf5;
  --lavender-deep: #9e86db;
  --blush: #f8cfe3;
  --peach: #f9b4c8;
  --cream: #fff5f7;
  --plum: #55445f;
  --shadow: rgba(85, 68, 95, 0.16);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Zen Maru Gothic", "Trebuchet MS", sans-serif;
  color: var(--plum);
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 10%, rgba(248, 207, 227, 0.65) 0%, rgba(255, 255, 255, 0) 45%),
    radial-gradient(circle at 80% 20%, rgba(203, 188, 245, 0.6) 0%, rgba(255, 255, 255, 0) 42%),
    radial-gradient(circle at 50% 60%, rgba(240, 220, 255, 0.5) 0%, rgba(255, 255, 255, 0) 55%),
    linear-gradient(160deg, #fff1f8 0%, #f6f0ff 50%, #f9f4ff 100%);
  overflow-x: hidden;
}

.home {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 8vw;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.home__copy {
  max-width: 85%;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  line-height: 1.8;
  background: rgba(255, 255, 255, 0.75);
  padding: 22px 26px;
  border-radius: 22px;
  box-shadow: 0 18px 36px var(--shadow);
  text-align: center;
}

.hero__logo {
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero__logo img {
  width: 65vw;
  max-width: 900px;
  
  height: auto;
  display: block;
  border: 0;
  filter: drop-shadow(0 18px 30px rgba(85, 68, 95, 0.22));
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.45;
  z-index: 0;
  animation: floaty 16s ease-in-out infinite;
}

.orb-a {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(248, 207, 227, 0.65) 0%, rgba(255, 255, 255, 0) 70%);
  top: -80px;
  left: -60px;
}

.orb-b {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(203, 188, 245, 0.55) 0%, rgba(255, 255, 255, 0) 70%);
  bottom: -140px;
  right: -120px;
}

.orb-c {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(249, 180, 200, 0.5) 0%, rgba(255, 255, 255, 0) 70%);
  top: 40%;
  right: 10%;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.6) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 40%, rgba(255, 255, 255, 0.5) 0 1px, transparent 1px),
    radial-gradient(circle at 50% 70%, rgba(255, 255, 255, 0.45) 0 1px, transparent 1px);
  background-size: 180px 180px;
  mix-blend-mode: soft-light;
  z-index: 0;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
