@font-face {
  font-family: Huninn;
  src: url('/fonts/huninn.ttf') format('truetype');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  color-scheme: light;
  --paper: #eef0e3;
  --ink: #233d30;
  --muted: #637160;
  --line: #c9d0bc;
}

* { box-sizing: border-box; }
html { min-height: 100%; background: var(--paper); }
body {
  margin: 0;
  color: var(--ink);
  font-family: Huninn, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
main {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 72px 24px;
}
.identity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  text-align: center;
}
h1, p { margin: 0; font-weight: 400; }
h1 { font-size: clamp(64px, 8vw, 92px); line-height: 1.25; }
.mission { color: var(--muted); font-size: clamp(22px, 3vw, 28px); line-height: 1.25; }
.loading-status { position: relative; width: 220px; }
.loading-bar {
  width: 220px;
  height: 4px;
  border-radius: 2px;
  background: var(--line);
  overflow: hidden;
}
.loading-bar span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--ink);
  transform-origin: left;
  animation: assay 3s ease-in-out both;
}
.coming-soon {
  position: absolute;
  inset-inline: 0;
  bottom: 10px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
  animation: reveal 400ms ease-out 3s both;
}
@keyframes assay { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes reveal { from { opacity: 0; visibility: hidden; } to { opacity: 1; visibility: visible; } }
@media (prefers-reduced-motion: reduce) {
  .loading-bar span, .coming-soon { animation: none; }
}
@media (max-height: 400px) { main { padding-block: 48px 72px; } .identity { gap: 36px; } }
