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

:root {
  --gold:   #c9a84c;
  --blue:   #00A4EF;
  --ink:    #0a0f17;
  --muted:  #5a6a80;
  --text:   #d4dde8;
}

html, body {
  height: 100%;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--ink);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

/* Subtle radial light from center */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 38%, rgba(0,120,212,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  text-align: center;
}

/* LOGO */
.logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  margin-bottom: 2.25rem;
}

.logo-svg {
  width: 148px;
  height: 148px;
  filter: drop-shadow(0 0 28px rgba(180,140,40,0.22))
          drop-shadow(0 8px 32px rgba(0,0,0,0.6));
}

/* WORDMARK */
.wordmark {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}
.wordmark-main { color: #e8edf3; }
.wordmark-dot  { color: var(--gold); }
.wordmark-tld  { color: var(--gold); font-weight: 300; font-size: 2rem; opacity: 0.85; }

/* TAGLINE */
.tagline {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
}

/* DIVIDER */
.divider {
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-bottom: 2rem;
}

/* STATUS */
.status {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 320px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* CTA */
.cta {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  padding: 0.6rem 1.5rem;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 4px;
  letter-spacing: 0.04em;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  margin-bottom: 4rem;
}
.cta:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
  color: #ffe08a;
}

/* FOOTER */
footer {
  font-size: 0.72rem;
  color: #2e3d50;
  letter-spacing: 0.05em;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.sep { opacity: 0.4; }

@media (max-width: 480px) {
  .wordmark  { font-size: 2rem; }
  .logo-svg  { width: 120px; height: 120px; }
}
