:root {
  --bg-1: #f4efe6;
  --bg-2: #e9dac4;
  --ink: #1f1a17;
  --muted: #655f59;
  --accent: #c84b31;
  --accent-2: #2f4858;
  --card: rgba(255, 251, 245, 0.78);
  --card-border: rgba(31, 26, 23, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 10%, #ffffff66 0 22%, transparent 23%),
    radial-gradient(circle at 80% 85%, #ffffff50 0 17%, transparent 18%),
    linear-gradient(145deg, var(--bg-1), var(--bg-2));
  overflow: hidden;
  padding: 1.2rem;
}

.bg-shape {
  position: fixed;
  border-radius: 50%;
  filter: blur(1px);
  z-index: 0;
  pointer-events: none;
}

.bg-shape-1 {
  width: min(46vw, 480px);
  aspect-ratio: 1;
  background: #c84b3133;
  top: -10%;
  left: -10%;
  animation: floatA 8s ease-in-out infinite;
}

.bg-shape-2 {
  width: min(40vw, 420px);
  aspect-ratio: 1;
  background: #2f485833;
  bottom: -12%;
  right: -8%;
  animation: floatB 10s ease-in-out infinite;
}

.card {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  background: var(--card);
  backdrop-filter: blur(8px);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: clamp(1.6rem, 3.6vw, 3rem);
  box-shadow:
    0 20px 45px -20px rgba(0, 0, 0, 0.35),
    0 2px 6px rgba(31, 26, 23, 0.08);
  transform: translateY(14px);
  opacity: 0;
  animation: reveal 650ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.kicker {
  margin: 0;
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
  opacity: 0;
  animation: fadeUp 500ms 220ms ease-out forwards;
}

h1 {
  margin: 0.4rem 0 0;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: clamp(3.2rem, 11vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-wrap: balance;
  opacity: 0;
  animation: fadeUp 500ms 320ms ease-out forwards;
}

.subtitle {
  margin: 0.8rem 0 1.2rem;
  max-width: 42ch;
  color: var(--muted);
  font-size: clamp(1rem, 2.8vw, 1.2rem);
  line-height: 1.5;
  opacity: 0;
  animation: fadeUp 500ms 430ms ease-out forwards;
}

.status-row {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
  color: #3b332d;
  opacity: 0;
  animation: fadeUp 500ms 520ms ease-out forwards;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 #c84b31aa;
  animation: pulse 1.8s infinite;
}

.cta {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(130deg, var(--accent), #a63a24);
  border: 1px solid #7f2b1a;
  border-radius: 999px;
  padding: 0.74rem 1.2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    filter 200ms ease;
  opacity: 0;
  animation: fadeUp 500ms 600ms ease-out forwards;
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -12px #7f2b1acc;
  filter: brightness(1.05);
}

@keyframes reveal {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #c84b31aa;
  }

  70% {
    box-shadow: 0 0 0 10px #c84b3100;
  }

  100% {
    box-shadow: 0 0 0 0 #c84b3100;
  }
}

@keyframes floatA {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(18px, 14px);
  }
}

@keyframes floatB {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-20px, -16px);
  }
}

@media (max-width: 640px) {
  .card {
    border-radius: 18px;
    padding: 1.4rem;
  }

  .subtitle {
    margin-bottom: 1rem;
  }
}
