:root {
  --bg: #f6f5fa;
  --surface: #ffffff;
  --text: #2f3040;
  --muted: #6e6f84;
  --line: #ddd8ee;
  --primary: #5b34a3;
  --primary-soft: #efe9ff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.card {
  width: min(680px, 100%);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 44px 36px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(91, 52, 163, 0.08);
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(14px) scale(0.99);
  transition: opacity 520ms ease, transform 560ms ease;
}

.brand-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 18px;
}

.logo {
  width: min(220px, 58%);
  height: auto;
  margin-bottom: 0;
}

.status {
  display: inline-block;
  margin: 0;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

h1 {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.25;
  color: var(--primary);
}

.message,
.message-secondary {
  max-width: 55ch;
  margin-left: auto;
  margin-right: auto;
}

.message {
  margin-top: 0;
  margin-bottom: 8px;
  color: var(--text);
  line-height: 1.7;
}

.message-secondary {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.contact {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.contact a:hover,
.contact a:focus-visible {
  text-decoration: underline;
}

.bg-orb {
  position: absolute;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, #e4d9ff 62%, #d5c4ff 100%);
  opacity: 0.45;
  filter: blur(0.5px);
  z-index: 1;
}

.orb-left {
  width: 280px;
  height: 280px;
  left: -90px;
  top: 12%;
  animation: floatLeft 7.2s ease-in-out infinite;
}

.orb-right {
  width: 330px;
  height: 330px;
  right: -120px;
  bottom: 6%;
  animation: floatRight 8.4s ease-in-out infinite;
}

.card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 700px) {
  .card {
    padding: 34px 22px;
    border-radius: 20px;
  }

  .status {
    margin: 0;
  }
}

@keyframes floatLeft {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }
}

@keyframes floatRight {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(20px);
  }
}

@media (prefers-reduced-motion: reduce) {

  .card,
  .bg-orb {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}