:root {
  --background: #07100c;
  --text: #f7f0df;
  --accent: #9bd85c;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text);
  font-family:
    "Avenir Next",
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background:
    radial-gradient(circle at 22% 18%, rgba(155, 216, 92, 0.2), transparent 24rem),
    radial-gradient(circle at 78% 72%, rgba(106, 75, 47, 0.28), transparent 26rem),
    var(--background);
}

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

.brand {
  width: clamp(152px, 24vw, 220px);
  height: auto;
  margin-bottom: clamp(36px, 6vw, 64px);
  filter: brightness(0) invert(1) sepia(12%) saturate(441%) hue-rotate(17deg);
}

h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(3.8rem, 11vw, 8.8rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

h1::after {
  display: block;
  width: 86px;
  height: 8px;
  margin: clamp(28px, 5vw, 44px) auto 0;
  content: "";
  border-radius: 999px;
  background: var(--accent);
}
