:root {
  --bg: #0a0d0b;
  --text: #d7e2db;
  --muted: #7f9387;
  --accent: #6f8f7b;
}

* {
  box-sizing: border-box;
}

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

body {
  background:
    radial-gradient(circle at top, rgba(111, 143, 123, 0.08), transparent 35%),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  text-align: center;
}

.hero {
  max-width: 900px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

h1 {
  margin: 0;
  font-weight: 500;
  line-height: 1.15;
  font-size: clamp(2rem, 5vw, 4.5rem);
  letter-spacing: -0.03em;
}