:root {
  --bg: #0c0c0e;
  --fg: #e8e6e3;
  --muted: #8a8680;
  --accent: #c4a574;
}

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

html {
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  color: var(--fg);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

#bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.wrap {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 28rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

h1 {
  margin: 0 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 6vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-shadow: 0 0 40px rgba(12, 12, 14, 0.85), 0 2px 24px rgba(12, 12, 14, 0.6);
}

.lede {
  margin: 0;
  font-size: 1.05rem;
  color: var(--muted);
}

.lede.hint {
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.92;
}

.lede.hint strong {
  color: var(--accent);
  font-weight: 600;
}
