/* Sanjus — under construction (STRATO static hosting) */

:root {
  --bg: #f6f8fb;
  --text: #1a2332;
  --muted: #5c6b7f;
  --accent: #1e3a5f;
  --card: #ffffff;
  --shadow: 0 12px 40px rgba(26, 35, 50, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem 3rem;
}

.card {
  width: 100%;
  max-width: 36rem;
  background: var(--card);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  padding: 2.5rem 2rem;
  text-align: center;
}

.logo {
  display: block;
  width: min(280px, 85vw);
  height: auto;
  margin: 0 auto 1.75rem;
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
}

h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 4vw, 1.6rem);
  font-weight: 650;
  letter-spacing: -0.02em;
}

.lead {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(30, 58, 95, 0.08);
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22a06b;
  box-shadow: 0 0 0 3px rgba(34, 160, 107, 0.25);
}

.footer {
  margin-top: 2.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.footer a {
  color: var(--accent);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}
