:root {
  --bg-deep: #1a0a08;
  --bg-mid:  #5a1a0e;
  --bg-warm: #d2541a;
  --bg-sky:  #ffb347;
  --sun:     #ffe9a8;
  --text:    #ffeacc;
}

* { box-sizing: border-box; }

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

body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: linear-gradient(
    180deg,
    var(--bg-sky)  0%,
    var(--bg-warm) 35%,
    var(--bg-mid)  70%,
    var(--bg-deep) 100%
  );
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  gap: 2rem;
  text-align: center;
}

.wordmark {
  width: min(80vw, 720px);
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

.tagline {
  margin: 0;
  max-width: 52ch;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.6;
  color: var(--text);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
