:root {
  --background: #f5f2eb;
  --background-highlight: #fbfaf7;
  --text: #16191f;
  --muted: #5d625d;
  --accent: #142d26;
  --accent-hover: #20483c;
  --line: rgba(22, 25, 31, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 32%, var(--background-highlight), transparent 48%),
    var(--background);
  font-family: Arial, "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 5vw, 3rem);
}

.hero__content {
  width: min(100%, 760px);
  margin: auto;
  text-align: center;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 10vw, 6.5rem);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.98;
}

.hero__description {
  max-width: 610px;
  margin: clamp(1.5rem, 4vw, 2rem) auto 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2.2vw, 1.28rem);
  line-height: 1.6;
}

.hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  margin-top: clamp(2rem, 5vw, 2.75rem);
  padding: 0.95rem 1.55rem;
  border-radius: 999px;
  color: #fff;
  background: var(--accent);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    transform 160ms ease;
}

.hero__button:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.hero__button:focus-visible {
  outline: 3px solid rgba(20, 45, 38, 0.28);
  outline-offset: 3px;
}

.hero__examples {
  max-width: max-content;
  margin: clamp(2.4rem, 6vw, 3.4rem) auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

@media (max-width: 480px) {
  .hero__button {
    width: 100%;
  }

  .hero__examples {
    max-width: 100%;
  }
}
