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

body {
  margin: 0;
  min-height: 100vh;
  font-family:
    system-ui,
    -apple-system,
    'Segoe UI',
    Roboto,
    'Helvetica Neue',
    Arial,
    sans-serif;
  background: #f9f9f9;
  color: #1a1c1c;
  -webkit-font-smoothing: antialiased;
}

.page {
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  background: linear-gradient(165deg, #f0f4ff 0%, #f9f9f9 45%, #f2e8d5 100%);
}

.card {
  max-width: 28rem;
  width: 100%;
  text-align: center;
  padding: 2.5rem 2rem;
  background: #ffffff;
  border-radius: 1.25rem;
  box-shadow: 0 4px 24px rgba(0, 39, 104, 0.08);
  border: 1px solid #e2e2e2;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.logo {
  object-fit: contain;
  border-radius: 0.5rem;
}

.wordmark {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.wordmark-primary {
  color: #002768;
}

.wordmark-secondary {
  color: #0058bc;
}

.tagline {
  margin: 0 0 1.5rem;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: #44474e;
}

.status {
  margin: 0 0 0.5rem;
  font-size: 1.375rem;
  font-weight: 600;
  color: #002768;
}

.subtitle {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #74777f;
}
