.appHeader {
  position: sticky;
  top: 0;
  z-index: 100;
  flex-shrink: 0;
  border-bottom: 1px solid var(--border, rgba(255, 255, 255, 0.1));
  background: rgba(15, 20, 25, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.appHeader__inner {
  max-width: var(--home-max, 1120px);
  margin: 0 auto;
  padding: 0.65rem clamp(1rem, 3vw, 1.75rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.appHeader__brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.appHeader__logo {
  display: block;
  height: clamp(2rem, 4.5vw, 2.65rem);
  width: auto;
  max-width: min(200px, 48vw);
  object-fit: contain;
}

.appHeader__actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.75rem;
}

.btn--headerOutline {
  padding: 0.55rem 1.15rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  color: rgba(232, 238, 244, 0.92);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: none;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}

.btn--headerOutline:hover {
  transform: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: none;
}

@media (max-width: 380px) {
  .appHeader__actions {
    gap: 0.5rem;
  }
}

.btn--headerCta {
  padding: 0.55rem 1.15rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  background: linear-gradient(
    125deg,
    #14b8a6,
    var(--home-orange, #ea8c55)
  );
  color: #fff;
  border: none;
  box-shadow: 0 6px 20px rgba(234, 140, 85, 0.2);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.btn--headerCta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 26px rgba(234, 140, 85, 0.28);
}

@media (max-width: 360px) {
  .btn--headerOutline,
  .btn--headerCta {
    padding: 0.5rem 0.85rem;
    font-size: 0.65rem;
  }
}
