* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #f8efe1;
  color: #2b2119;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.landing {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
}

.hero {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: calc(100vh - 64px);
  padding: 48px 22px;
  text-align: center;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 198, 76, 0.42), transparent 28%),
    radial-gradient(circle at 78% 20%, rgba(75, 152, 255, 0.28), transparent 25%),
    linear-gradient(180deg, #fff8ed 0%, #f6dfbf 100%);
}

.brand {
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(92, 58, 25, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  font-weight: 800;
}

h1 {
  margin: 0;
  font-size: clamp(38px, 8vw, 88px);
  line-height: 1;
}

p {
  max-width: 680px;
  margin: 22px 0 0;
  color: #6c4d33;
  font-size: 20px;
  line-height: 1.7;
}

footer {
  display: grid;
  place-items: center;
  min-height: 64px;
  background: #fffaf2;
  border-top: 1px solid rgba(80, 54, 32, 0.12);
}

footer a {
  color: #6a7280;
  font-size: 14px;
  text-decoration: none;
}

footer a:hover {
  color: #1f6feb;
}
