/* Gradient CTA button + its outline sibling, reused across every homepage
   section. components/btn-gradient.html */
.btn-gradient {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: var(--radius-sm);
  padding: 0.6875rem 1.25rem;
  background: var(--gradient-brand-button);
  color: var(--color-text-inverse);
  font-size: 0.84375rem;
  font-weight: var(--fw-bold);
  white-space: nowrap;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 6px 10px rgba(14, 159, 224, 0.3);
  transition:
    transform 0.15s ease,
    filter 0.15s ease;
}

.btn-gradient:hover,
.btn-gradient:focus-visible {
  filter: brightness(1.05);
  color: var(--color-text-inverse);
  transform: translateY(-2px);
}

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

.btn-gradient img {
  width: 15px;
  height: 15px;
  transition: transform 0.15s ease;
}

.btn-gradient:hover img {
  transform: translateX(3px);
}

/* Larger size used in the hero and the "Create your brand" CTA */
.btn-gradient--lg {
  padding: 1rem 2rem;
  border-radius: 0.9375rem;
  font-size: 1rem;
  gap: 0.625rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 10px 15px rgba(14, 159, 224, 0.35);
}

.btn-gradient--lg img {
  width: 17px;
  height: 17px;
}

/* Outline button — "Watch Video" in the hero */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  border: 1.25px solid rgba(14, 159, 224, 0.25);
  border-radius: 0.9375rem;
  padding: 1rem 1.75rem;
  background: var(--color-surface);
  color: var(--hp-text-strong-muted);
  font-size: 1rem;
  font-weight: var(--fw-bold);
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(12, 22, 38, 0.05);
  transition:
    background-color 0.15s ease,
    box-shadow 0.15s ease;
}

.btn-outline:hover {
  background: rgba(14, 159, 224, 0.05);
  color: var(--hp-text-strong-muted);
}

.btn-outline__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: var(--radius-pill);
  border: 0.625px solid rgba(14, 159, 224, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-outline__icon img {
  width: 12px;
  height: 12px;
  margin-left: 2px;
}

@media (max-width: 576px) {
  .btn-gradient--lg,
  .btn-outline {
    width: 100%;
  }
}
