:root {
  --bg-a: #f4efe6;
  --bg-b: #dff2eb;
  --ink: #1d2a2f;
  --muted: #4b5d62;
  --accent: #ff6b35;
  --card: rgba(255, 255, 255, 0.72);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 15% 10%, #ffe0c2 0, transparent 40%),
    radial-gradient(circle at 85% 80%, #b9e4d6 0, transparent 35%),
    linear-gradient(135deg, var(--bg-a), var(--bg-b));
  overflow: hidden;
}

.bg-shape {
  position: fixed;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.45;
  animation: float 7s ease-in-out infinite;
  pointer-events: none;
}

.shape-1 {
  width: 280px;
  height: 280px;
  background: #ffd6a5;
  top: -80px;
  left: -70px;
}

.shape-2 {
  width: 220px;
  height: 220px;
  background: #95d5b2;
  right: -60px;
  bottom: -70px;
  animation-delay: 1s;
}

.card {
  width: min(640px, 100%);
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  background: var(--card);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 50px rgba(29, 42, 47, 0.16);
  animation: fadeUp 700ms ease-out both;
}

.eyebrow {
  margin: 0 0 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-size: 0.82rem;
}

h1 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.1;
}

.desc {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.6;
  max-width: 50ch;
}

.status {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: #27443a;
  font-weight: 500;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3aa76d;
  box-shadow: 0 0 0 0 rgba(58, 167, 109, 0.6);
  animation: pulse 1.8s infinite;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(58, 167, 109, 0.6);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(58, 167, 109, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(58, 167, 109, 0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 600px) {
  .card {
    border-radius: 18px;
  }
}