/* JAIMEE JO placeholder landing page */
:root {
  --bg: #0b0b0c;
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
}

body {
  background: var(--bg);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.stage {
  height: 100svh; /* better on mobile */
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 4vw, 48px);
}

.logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: default; /* placeholder */
}

.logo {
  max-width: min(92vw, 1200px);
  max-height: 92svh;
  width: auto;
  height: auto;
  object-fit: contain;
  image-rendering: auto;
  user-select: none;
  -webkit-user-drag: none;
}
