:root {
  --primary: #ff007a;
  --secondary: #ffb7d9;
  --accent: #71e2d6;
  --highlight: #fecd35;
  --text: #484848;
  --text-soft: #7a7a7a;
  --surface: #ffffff;
  --page: #fff5fa;

  --font-display: "Fredoka", "Google Sans", system-ui, sans-serif;
  --font-body: "Google Sans", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--page);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Soft brand-colored blobs drifting behind the card */
.backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: drift 18s ease-in-out infinite alternate;
}

.blob--pink {
  width: 42vmax;
  height: 42vmax;
  top: -12vmax;
  left: -10vmax;
  background: var(--secondary);
}

.blob--mint {
  width: 34vmax;
  height: 34vmax;
  right: -10vmax;
  top: 18vmax;
  background: var(--accent);
  animation-duration: 22s;
  animation-delay: -6s;
}

.blob--yellow {
  width: 28vmax;
  height: 28vmax;
  bottom: -10vmax;
  left: 30vmax;
  background: var(--highlight);
  opacity: 0.4;
  animation-duration: 26s;
  animation-delay: -12s;
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(4vmax, 3vmax, 0) scale(1.12);
  }
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 40px 20px;
}

.card {
  width: min(100%, 620px);
  padding: 56px 44px 48px;
  text-align: center;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 0, 122, 0.08);
  border-radius: 32px;
  box-shadow: 0 24px 60px -24px rgba(255, 0, 122, 0.35);
  animation: rise 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Logo ---------- */

.logo {
  display: block;
  width: 132px;
  height: 132px;
  margin: 0 auto 28px;
  border-radius: 32px;
  box-shadow: 0 16px 32px -12px rgba(255, 0, 122, 0.6);
}

/* ---------- Type ---------- */

.eyebrow {
  margin: 0 0 14px;
  display: inline-block;
  padding: 7px 16px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(255, 183, 217, 0.45);
  border-radius: 999px;
}

.title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 9vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.05;
  color: var(--primary);
  text-transform: uppercase;
}

.title__dot {
  color: var(--accent);
}

.tagline {
  margin: 10px 0 22px;
  font-family: var(--font-display);
  font-size: clamp(1rem, 3.4vw, 1.25rem);
  font-weight: 500;
  color: var(--text);
}

.copy {
  max-width: 46ch;
  margin: 0 auto 32px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-soft);
}

/* ---------- Progress + dots ---------- */

.progress {
  width: min(100%, 300px);
  height: 8px;
  margin: 0 auto;
  background: rgba(255, 183, 217, 0.55);
  border-radius: 999px;
  overflow: hidden;
}

.progress__bar {
  display: block;
  width: 40%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--highlight));
  animation: slide 2.4s ease-in-out infinite;
}

@keyframes slide {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(250%);
  }
}

.dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 26px 0 0;
}

.dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary);
  animation: bounce 1.4s ease-in-out infinite;
}

.dots span:nth-child(2) {
  background: var(--accent);
  animation-delay: 0.18s;
}

.dots span:nth-child(3) {
  background: var(--highlight);
  animation-delay: 0.36s;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.45;
  }
  50% {
    transform: translateY(-7px);
    opacity: 1;
  }
}

.contact {
  margin: 30px 0 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.contact a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 0, 122, 0.25);
  transition: border-color 0.2s ease;
}

.contact a:hover,
.contact a:focus-visible {
  border-color: var(--primary);
}

.footer {
  font-size: 0.8rem;
  color: var(--text-soft);
  text-align: center;
}

.footer p {
  margin: 0;
}

@media (max-width: 480px) {
  .card {
    padding: 40px 24px 36px;
    border-radius: 26px;
  }

  .logo {
    width: 112px;
    height: 112px;
    border-radius: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
