:root {
  --bg: #f7f9fb;
  --surface: #ffffff;
  --ink: #2a3439;
  --ink-muted: #566166;
  --border: #a9b4b9;
  --primary: #545f73;
  --primary-hover: #354053;
  --accent: #2c6a55;
  --accent-light: #e8f5f0;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  --radius-card: 18px;
  --radius-button: 16px;
  --radius-dot: 50%;
}

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

html {
  height: 100%;
}

body {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.maintenance {
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card {
  width: 100%;
  padding: 40px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: var(--surface);
  font-family: 'Manrope', sans-serif;
  font-weight: 900;
  font-size: 16px;
  border-radius: 10px;
}

.brand-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: var(--accent-light);
  border-radius: 999px;
  margin-bottom: 24px;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: var(--radius-dot);
  animation: pulse 2s ease-in-out infinite;
}

.status-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.title {
  font-family: 'Manrope', sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 5vw, 30px);
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 12px;
}

.message {
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

.languages {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.languages button {
  appearance: none;
  background: transparent;
  border: none;
  color: var(--ink-muted);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 8px;
  transition: color 150ms ease, background 150ms ease;
}

.languages button:hover {
  color: var(--ink);
  background: var(--bg);
}

.languages button[aria-pressed="true"] {
  color: var(--surface);
  background: var(--primary);
  font-weight: 600;
}

.languages button[aria-pressed="true"]:hover {
  background: var(--primary-hover);
}

.divider {
  color: var(--border);
  font-size: 12px;
}

.footer {
  margin-top: 24px;
  color: var(--ink-muted);
  font-size: 13px;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.55;
    transform: scale(0.85);
  }
}

@media (prefers-reduced-motion: reduce) {
  .status-dot {
    animation: none;
  }

  .languages button {
    transition: none;
  }
}

@media (max-width: 480px) {
  body {
    padding: 16px;
  }

  .card {
    padding: 32px 24px;
  }

  .title {
    font-size: 26px;
  }
}
