/* FND-EAB-FE-002: owner first-paint critical CSS (was inline <style> in index.html).
   Keeps admin CSP free of style-src 'unsafe-inline' for the boot card. */
html { background-color: #f3f5f9; }
body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #0f172a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.owner-root {
  background:
    radial-gradient(circle at top left, rgba(99, 102, 241, 0.07), transparent 20rem),
    radial-gradient(circle at 82% 0%, rgba(6, 182, 212, 0.06), transparent 24rem),
    #faf9f7;
}
.owner-auth-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}
.owner-auth-card {
  width: min(100%, 520px);
  padding: clamp(1.1rem, 1.5vw, 1.5rem);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 28px;
  background: linear-gradient(180deg, #fcfcfdfa, #f8fafcf2);
  box-shadow: 0 32px 80px #02061733;
}
.owner-auth-card h1 {
  font-family: "Inter", "Segoe UI", sans-serif;
}
.owner-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(248, 250, 252, 0.75);
}
.owner-auth-copy {
  color: #556073;
}
/* Visually-hidden live region (was inline style= on #owner-live-status). */
.owner-live-status-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
