:root {
  color-scheme: dark;
  --bg: #050507;
  --text: #f7f4ef;
  --muted: #a9a7a2;
  --line: rgba(247, 244, 239, 0.18);
  --warm: #f2c078;
  --cool: #64d7d2;
  --rose: #f2789f;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  overflow: hidden;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

#scene {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  display: block;
  background: #050507;
}

.stage {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: clamp(22px, 4vw, 48px);
}

.hero {
  align-self: center;
  width: min(1120px, 100%);
  margin: 0 auto;
  text-align: center;
}

.eyebrow,
.tagline,
.site-footer {
  text-shadow: 0 1px 24px rgba(0, 0, 0, 0.64);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cool);
  font-size: clamp(0.78rem, 1.7vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3.2rem, 14vw, 11rem);
  line-height: 0.88;
  letter-spacing: 0;
  font-weight: 850;
}

.tagline {
  width: min(620px, 100%);
  margin: clamp(18px, 3vw, 30px) auto 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 2.4vw, 1.5rem);
  line-height: 1.5;
}

.site-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: rgba(247, 244, 239, 0.58);
  font-size: 12px;
  line-height: 1.6;
}

.site-footer a {
  color: rgba(247, 244, 239, 0.72);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.site-footer a:hover {
  color: var(--text);
  border-color: rgba(247, 244, 239, 0.46);
}

@media (max-width: 640px) {
  body {
    overflow: hidden;
  }

  .stage {
    padding: 24px 18px;
  }

  .hero {
    transform: translateY(-2vh);
  }

  h1 {
    font-size: clamp(3.1rem, 18vw, 5.2rem);
  }
}
