*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --orange-500: #ed8936;
  --orange-600: #dd6b20;
  --blue-600: #2b6cb0;
  --text: #1a202c;
  --text-muted: #4a5568;
  --surface: rgba(255, 255, 255, 0.92);
  --border: rgba(237, 137, 54, 0.25);
  --shadow: 0 20px 50px rgba(26, 32, 44, 0.12);
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text);
  background: #f7fafc;
  -webkit-font-smoothing: antialiased;
}

.page {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
  overflow: hidden;
}

.backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(237, 137, 54, 0.18), transparent 42%),
    radial-gradient(circle at 85% 75%, rgba(49, 130, 206, 0.12), transparent 40%),
    linear-gradient(160deg, #fffaf5 0%, #f7fafc 45%, #edf2f7 100%);
  z-index: 0;
}

.card {
  position: relative;
  z-index: 1;
  width: min(100%, 38rem);
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.logo {
  display: block;
  width: min(100%, 18.75rem);
  height: auto;
  margin: 0 auto 1.75rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-600);
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

.lead {
  margin: 0 auto 1.75rem;
  max-width: 32ch;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.75rem;
  padding: 0.625rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  background: rgba(237, 137, 54, 0.1);
  border: 1px solid rgba(237, 137, 54, 0.22);
  border-radius: 999px;
}

.status-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: var(--orange-500);
  box-shadow: 0 0 0 4px rgba(237, 137, 54, 0.2);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.65;
    transform: scale(0.92);
  }
}

.contact {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.contact a {
  color: var(--blue-600);
  text-decoration: none;
  font-weight: 500;
}

.contact a:hover,
.contact a:focus-visible {
  text-decoration: underline;
  outline: none;
}

.footer {
  position: relative;
  z-index: 1;
  margin-top: 1.75rem;
  font-size: 0.8125rem;
  color: #718096;
}

.footer p {
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .status-dot {
    animation: none;
  }
}
