:root {
  color-scheme: only light;
  --ink: #1e1b16;
  --ink-soft: #3f362b;
  --cream: #f8f1e7;
  --latte: #efe1cf;
  --caramel: #e7b06b;
  --copper: #d46a42;
  --panel: rgba(255, 255, 255, 0.7);
  --shadow: rgba(48, 35, 20, 0.18);
}

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, "Georgia", serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 15%, rgba(212, 106, 66, 0.2), transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(231, 176, 107, 0.35), transparent 50%),
    linear-gradient(140deg, var(--cream), var(--latte));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
  position: relative;
  overflow: hidden;
}

body::before,
body::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(0);
  opacity: 0.55;
  z-index: 0;
  animation: float 14s ease-in-out infinite;
}

body::before {
  background: radial-gradient(circle, rgba(212, 106, 66, 0.3), transparent 70%);
  top: -140px;
  right: -120px;
}

body::after {
  background: radial-gradient(circle, rgba(231, 176, 107, 0.35), transparent 70%);
  bottom: -160px;
  left: -120px;
  animation-delay: -6s;
}

.hero {
  width: min(920px, 100%);
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 28px;
  padding: 56px 48px;
  box-shadow: 0 18px 60px var(--shadow);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
  animation: cardRise 0.9s ease-out forwards;
  opacity: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(212, 106, 66, 0.1);
  border: 1px solid rgba(212, 106, 66, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-family: "Gill Sans", "Trebuchet MS", "Avenir Next", "Avenir", sans-serif;
  color: var(--ink-soft);
  animation: fadeUp 0.8s ease-out forwards;
  animation-delay: 0.25s;
  opacity: 0;
}

h1 {
  margin: 24px 0 18px;
  font-size: clamp(2.4rem, 3.4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  animation: fadeUp 0.8s ease-out forwards;
  animation-delay: 0.35s;
  opacity: 0;
}

.lead {
  margin: 0;
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 60ch;
  animation: fadeUp 0.8s ease-out forwards;
  animation-delay: 0.45s;
  opacity: 0;
}

.status {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(30, 27, 22, 0.08);
  font-family: "Gill Sans", "Trebuchet MS", "Avenir Next", "Avenir", sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  animation: fadeUp 0.8s ease-out forwards;
  animation-delay: 0.55s;
  opacity: 0;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--caramel), var(--copper));
  box-shadow: 0 0 0 6px rgba(212, 106, 66, 0.12);
  animation: pulse 2.2s ease-in-out infinite;
}

.note {
  margin-top: 18px;
  font-size: 0.95rem;
  color: rgba(30, 27, 22, 0.7);
  animation: fadeUp 0.8s ease-out forwards;
  animation-delay: 0.65s;
  opacity: 0;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardRise {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 42px 28px;
  }

  h1 {
    font-size: clamp(2.1rem, 8vw, 2.7rem);
  }

  .status {
    width: 100%;
    justify-content: center;
  }
}
