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

:root {
  --bg: #0a0a0a;
  --fg: #e0e0e0;
  --accent: #c8a86e;
  --muted: #666;
  --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;
}

.teapot {
  font-size: clamp(6rem, 15vw, 12rem);
  line-height: 1;
  margin-bottom: 1rem;
  filter: grayscale(20%);
}

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

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

.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(--muted);
  border-radius: 4px;
  transition: border-color 0.2s, color 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);
}
