/* ══ BASE ══ */
/* Reset, typography, and global defaults */

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

body {
  font-family: "Inter", sans-serif;
  color: var(--grey-900);
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* ══ MOBILE NOTICE ══ */
/* Desktop-only notice for small screens — temporary until server-side rework */
@media (max-width: 768px) {
  body::before {
    content: "This tool is optimized for desktop browsers.";
    display: block;
    background: var(--grey-900);
    color: white;
    text-align: center;
    padding: 10px 16px;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.01em;
  }
}
