/* Static no-JS preview shown inside #root before React hydrates.
   Extracted from an inline <style> block in index.html so a strict
   `style-src 'self'` CSP does not need to allow inline <style> elements
   for this content. */
html, body {
  margin: 0;
  background: hsl(43 20% 96%);
  color: hsl(222 15% 8%);
  font-family: Georgia, 'Times New Roman', serif;
}
html.js .static-preview { display: none; }
#root:empty {
  min-height: 100vh;
  display: grid;
  place-items: start center;
  padding: 4rem 1.25rem;
  box-sizing: border-box;
  background: hsl(43 20% 96%);
  color: hsl(222 15% 8%);
}

.static-preview {
  width: min(100%, 32rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.static-preview img {
  width: 9rem;
  height: 9rem;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid hsl(30 10% 82%);
}

.static-preview h1 {
  margin: 0;
  font-size: clamp(2rem, 7vw, 3rem);
  line-height: 1.05;
}

.static-preview p {
  margin: 0;
  max-width: 28rem;
  color: hsl(220 10% 40%);
  line-height: 1.6;
}

.static-preview-links {
  width: 100%;
  display: grid;
  gap: 0.5rem;
}

.static-preview-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid hsl(30 10% 82%);
  padding: 0.9rem 0.25rem;
  color: hsl(222 15% 8%);
  text-decoration: none;
}
