 :root {
  --pastel-pink: #F7B6C2;
  --pastel-blue: #BCE6D6;
  --pastel-purple: #DCC6F7;
  --pastel-yellow: #FFE4A6;
  --pastel-peach: #FFD6C9;
  --ink: #4f4960;
  --muted: #7f7890;
  --white: #fffdfc;
}

* { box-sizing: border-box; }
html, body { min-height: 100%; }
body {
  margin: 0;
  font-family: "Nunito Rounded", "Nunito", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 214, 201, .72), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(188, 230, 214, .62), transparent 26%),
    radial-gradient(circle at 18% 86%, rgba(220, 198, 247, .52), transparent 28%),
    linear-gradient(135deg, #fffaf9 0%, #fffdfc 46%, #f9fffd 100%);
  overflow-x: hidden;
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(22px, 4vw, 60px);
}

.hero {
  position: relative;
  width: min(1080px, 100%);
  min-height: min(760px, calc(100vh - 44px));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(26px, 6vw, 76px);
  border: 1px solid rgba(188, 230, 214, .65);
  border-radius: 42px;
  background: rgba(255, 253, 252, .75);
  box-shadow: 0 28px 90px rgba(127, 120, 144, .15);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.brand-card {
  width: min(430px, 88vw);
  margin-bottom: 14px;
  padding: 18px;
  border-radius: 34px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 18px 48px rgba(247, 182, 194, .18);
}
.logo { width: 100%; display: block; border-radius: 24px; mix-blend-mode: multiply; }

.eyebrow {
  margin: 6px 0 10px;
  font-size: clamp(.92rem, 2vw, 1.05rem);
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #8ccdbd;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.25rem, 7vw, 5.4rem);
  line-height: .95;
  letter-spacing: -.045em;
}
.lead {
  max-width: 650px;
  margin: 22px auto 0;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  line-height: 1.65;
  color: var(--muted);
}

.status-card {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  margin-top: 30px;
  padding: 14px 22px;
  border-radius: 999px;
  background: rgba(255, 228, 166, .48);
  border: 1px solid rgba(255, 214, 201, .9);
}
.pulse {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--pastel-pink);
  box-shadow: 0 0 0 0 rgba(247, 182, 194, .62);
  animation: pulse 1.8s infinite;
}

.actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 30px; }
.btn {
  text-decoration: none;
  color: var(--ink);
  font-weight: 900;
  padding: 15px 24px;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(127, 120, 144, .12);
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(127, 120, 144, .16); }
.primary { background: var(--pastel-pink); }
.soft { background: var(--pastel-blue); }

.mini-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(760px, 100%);
  margin-top: 34px;
}
.mini-info div {
  padding: 16px 14px;
  border-radius: 22px;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(220, 198, 247, .48);
  font-weight: 800;
}

.blob, .float { position: absolute; pointer-events: none; }
.blob { width: 300px; height: 300px; border-radius: 50%; filter: blur(2px); opacity: .45; }
.blob-one { left: -90px; top: -80px; background: var(--pastel-peach); }
.blob-two { right: -95px; bottom: -105px; background: var(--pastel-purple); }
.float { font-size: clamp(2rem, 5vw, 4rem); font-weight: 900; opacity: .75; animation: float 5s ease-in-out infinite; }
.star { left: 8%; top: 16%; color: var(--pastel-yellow); }
.heart { right: 9%; top: 20%; color: var(--pastel-pink); animation-delay: .8s; }
.dot-a, .dot-b { width: 18px; height: 18px; border-radius: 50%; }
.dot-a { left: 14%; bottom: 21%; background: var(--pastel-blue); }
.dot-b { right: 18%; bottom: 27%; background: var(--pastel-yellow); animation-delay: 1.2s; }

@keyframes pulse { 70% { box-shadow: 0 0 0 14px rgba(247, 182, 194, 0); } 100% { box-shadow: 0 0 0 0 rgba(247, 182, 194, 0); } }
@keyframes float { 0%,100% { transform: translateY(0) rotate(-5deg); } 50% { transform: translateY(-14px) rotate(5deg); } }

@media (max-width: 720px) {
  .hero { border-radius: 28px; }
  .mini-info { grid-template-columns: 1fr; }
  .status-card { border-radius: 24px; }
}
