/*
 * Mosvera — coming-soon placeholder, page-only styles.
 * Brand tokens (color, fonts, type scale) live in tokens/tokens.css, which is
 * Loom-owned — never hand-edit tokens here; this file is layout + motion only.
 */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100svh;
  display: grid;
  place-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Continuously rotating brand mark — reads as a deliberate "in progress". */
.mark {
  width: clamp(96px, 14vw, 160px);
  height: auto;
  transform-origin: 50% 50%;
  animation: mosvera-spin 3s linear infinite;
}

@keyframes mosvera-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Wordmark — Fraunces, sized off the heading step (a placeholder, not a hero). */
h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-heading);
  color: var(--ink);
}

/* Status line — mono/tracked/muted, so the spin reads as "coming soon",
   not a hung load. */
.status {
  margin: 0;
  font-family: var(--font-mono);
  font-size: var(--text-eyebrow);
  text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  color: var(--ink-muted);
}

/* Accessibility — required: reduced-motion users get the static mark. */
@media (prefers-reduced-motion: reduce) {
  .mark {
    animation: none;
  }
}
