:root {
  --bg: #0a0a0a;
  --gold: #e8b923;
  --gold-dim: #c9a01f;
  --text: #f5f0e6;
  --text-muted: #a89f8a;
}

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

html,
body {
  height: 100%;
  margin: 0;
}

body {
  font-family: "Source Sans 3", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(232, 185, 35, 0.08), transparent),
    var(--bg);
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 28rem;
  animation: fade-in 0.8s ease-out both;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(0.75rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo-link {
  display: block;
  line-height: 0;
  border-radius: 0.5rem;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.logo-link:hover {
  transform: scale(1.02);
  opacity: 0.95;
}

.logo-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.logo {
  width: min(280px, 72vw);
  height: auto;
  display: block;
}

.status {
  margin: 2rem 0 0.5rem;
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.45;
}

.domain {
  margin: 0;
  font-size: 1rem;
}

.domain a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.domain a:hover {
  color: var(--text);
  border-bottom-color: var(--gold-dim);
}

.domain a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
