.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  padding: 160px 24px 96px 24px;
  background: var(--white);
  text-align: center;
}

.hero h1 {
  font-size: 60px;
  font-weight: 700;
  color: var(--gray-12);
  max-width: 890px;
  letter-spacing: -0.8px;
  line-height: 1.2;
  margin-bottom: 32px;
}

.hero p {
  font-size: 21px;
  text-align: center;
  color: var(--gray-11);
  max-width: 600px;
  line-height: 1.4;
  margin-bottom: 40px;
}

.hero a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  background-color: var(--blue-9);
  border: 2px solid var(--blue-9);
  border-radius: 9.6px;
  text-decoration: none;
  transition: all 0.2s ease;
  gap: 8px;
}

.hero a:hover {
  background-color: var(--blue-10);
  border-color: var(--blue-10);
}

.hero a:active {
  background-color: var(--blue-11);
  border-color: var(--blue-11);
}