/* auth.css — anonymous-page layout: hero canvas, vignette, centred card */

#hero-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  display: block;
}

.hero-vignette {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    transparent 0%,
    rgba(13, 27, 42, 0.55) 60%,
    rgba(13, 27, 42, 0.85) 100%
  );
}

.auth-stage {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.auth-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  gap: 14px;
}

.auth-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.auth-wordmark {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tan);
}

.auth-shell {
  width: 100%;
  max-width: 384px;
}

.auth-footer {
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 20px;
}

.auth-meta {
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 20px;
}

.auth-meta a { color: var(--teal); font-weight: 500; }

.auth-link-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 18px auto 0;
  font-size: 12px;
  color: var(--text-muted);
}
.auth-link-back:hover { color: var(--text-dim); opacity: 1; }
.auth-link-back .icon { width: 12px; height: 12px; }
