@import url("https://fonts.googleapis.com/css2?family=Geist:wght@400;500&family=Newsreader:opsz,wght@6..72,300&display=swap");

:root {
  color-scheme: light;
  --background: oklch(0.993 0.001 106.424);
  --foreground: oklch(0.141 0.005 285.823);
  --muted-foreground: oklch(0.552 0.016 285.938);
  --font-serif: "Newsreader", Georgia, "Times New Roman", serif;
  --font-sans: "Geist", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--background);
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  line-height: 1.5;
}

.hero-shell {
  display: flex;
  min-height: 100dvh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 4rem 1.25rem;
  text-align: center;
}

/* Nock wordmark logo (416x134, ~3.1:1). */
.logo {
  width: clamp(200px, 55vw, 360px);
  height: auto;
  object-fit: contain;
}

.soon {
  margin: 0;
  color: var(--muted-foreground);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.5;
}

.soon .flame {
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}

@media (max-width: 520px) {
  .hero-shell {
    gap: 1.25rem;
    padding: 2.5rem 1rem;
  }
}
