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

body {
  background: #ffffff;
  color: #1a1a1a;
  font-family: system-ui, sans-serif;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#app.has-code {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1rem;
  width: 100%;
  max-width: 520px;
  gap: 0;
}

/* ── Site logo (top-left) ────────────────────────────────────────── */

#siteLogo {
  position: fixed;
  top: 1.1rem;
  left: 1.25rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: #888;
  text-decoration: none;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.8s ease, color .2s;
}
#siteLogo:hover { color: #1a1a1a; }

/* ── Top tagline (fades OUT) ─────────────────────────────────────── */

#tagline1 {
  margin-bottom: 1.4em;   /* one line of space above the canvas */
  opacity: 1;
  transition: opacity 0.6s ease;
}

/* ── Canvas ──────────────────────────────────────────────────────── */

#canvas {
  display: block;
  width: min(92vw, 92vh, 480px);
  height: min(92vw, 92vh, 480px);
  border-radius: 4px;
  cursor: default;
}

#canvas.is-interactive { cursor: pointer; }

/* ── Bottom tagline (fades IN) ───────────────────────────────────── */

#tagline2 {
  margin-top: 1.4em;      /* one line of space below the canvas */
  opacity: 0;
  transition: opacity 0.8s ease;
}

/* ── Shared tagline style ────────────────────────────────────────── */

.tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.05rem, 5vw, 1.35rem);
  color: #1a1a1a;
  text-align: center;
  max-width: 24ch;
  line-height: 1.45;
}

/* ── Footer: title + nav (fade IN after tagline2) ───────────────── */

#siteFooter {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  transition: opacity 0.8s ease;
}

#siteTitle {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: #aaa;
  text-transform: lowercase;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
}

.footer-nav a {
  font-size: .82rem;
  color: #aaa;
  text-decoration: none;
  letter-spacing: .04em;
}

.footer-nav a:hover { color: #1a1a1a; }

/* ── Empty state ─────────────────────────────────────────────────── */

.empty-state {
  text-align: center;
  color: #aaa;
  font-size: 1rem;
  padding: 3rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7rem;
}

.es-nav { display: flex; gap: 1.5rem; }

.es-nav a {
  font-size: .82rem;
  color: #aaa;
  text-decoration: none;
  letter-spacing: .04em;
}

.es-nav a:hover { font-weight: 700; }
