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

:root {
  --bg: #fafbfc;
  --fg: #102030;
  --accent: #00a8b5;
  --accent-hover: #007a85;
  --muted: #6b7280;
  --border: #d8dde3;
  --font-mono: "JetBrains Mono", "Fira Code", "SF Mono", monospace;
}

html {
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-mono);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  line-height: 1.6;
}

.logo {
  display: block;
  width: clamp(16rem, 50vw, 28rem);
  height: auto;
  margin: 0 auto 1.5rem;
  user-select: none;
}

.status {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  color: var(--accent);
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  color: var(--muted);
  max-width: 42ch;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.links a {
  color: var(--fg);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.links a:hover,
.links a:focus-visible {
  color: var(--accent);
  border-color: var(--accent);
  outline: none;
}

footer {
  position: fixed;
  bottom: 1.5rem;
  font-size: 0.75rem;
  color: var(--muted);
}
