body.page-home {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  max-width: 600px;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--grey-900);
}

.tagline {
  font-size: clamp(1rem, 3vw, 1.35rem);
  font-weight: 400;
  color: var(--neutral-600);
  margin-top: 0.75rem;
  letter-spacing: 0.01em;
}

.buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  border-radius: 14px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-apple {
  background: var(--grey-900);
  color: #fff;
  box-shadow: 0 4px 20px rgba(23, 23, 23, 0.25);
}

.btn-apple:hover {
  box-shadow: 0 8px 30px rgba(23, 23, 23, 0.35);
}

.btn-google {
  background: var(--green-500);
  color: var(--green-900);
  box-shadow: 0 4px 20px rgba(113, 235, 78, 0.3);
}

.btn-google:hover {
  box-shadow: 0 8px 30px rgba(113, 235, 78, 0.45);
}

.btn img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}

.btn-apple img {
  filter: invert(1);
}

@media (max-width: 480px) {
  .buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    justify-content: center;
  }
}
