﻿.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  font: 900 0.72rem/1 var(--font-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-xs);
}

.header-cta {
  min-height: 38px;
  padding: 0 16px;
  font-size: 0.62rem;
  white-space: nowrap;
}

.header-cta,
.button.primary {
  color: #ffffff;
  background: linear-gradient(180deg, #178cff, #065ec8);
  box-shadow: var(--shadow-blue);
}

.button.ghost {
  color: var(--color-text);
  border: 1px solid rgba(66, 164, 255, 0.65);
  background: rgba(3, 7, 12, 0.52);
}

.button .btn-icon {
  width: 18px;
  height: 18px;
  margin-right: 9px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.header-cta,
.button {
  border: 0;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.header-cta:active,
.button:active {
  transform: translateY(0);
}

.button:disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}
