:root {
  --color-red: #ed463b;
  --color-dark: #2d2d2a;
  --color-mid: #4c4c47;
  --color-sage: #aeb4a9;
  --color-cream: #f4f2ec;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Century Gothic", "CenturyGothic", "AppleGothic", "Futura", "Avenir Next", system-ui, sans-serif;
  color: var(--color-dark);
  background: var(--color-sage);
}

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

.logo {
  width: 220px;
  max-width: 70vw;
  height: auto;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin: 0 0 0.5rem;
  letter-spacing: 0.01em;
}

.tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-mid);
  margin: 0 0 2rem;
}

.status-pill {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-dark);
  border-radius: 999px;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.25);
}
