/* Maintenance page styling (kept separate so the original site can be restored quickly) */

:root {
  color-scheme: dark;
  --bg: #000;
  --fg: #fff;
  --muted: rgba(255, 255, 255, 0.78);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  letter-spacing: 0.2px;
}

.maint {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 36px 18px;
  text-align: center;
}

.maint__logo {
  width: min(220px, 60vw);
  height: auto;
  display: block;
}

.maint__soon {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 2.3vw, 20px);
  letter-spacing: 0.3px;
}

.maint__email {
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  font-size: clamp(14px, 2vw, 16px);
}

.maint__email:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 6px;
  border-bottom-color: transparent;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
