/* Shared House of Purple brand logo styles for static website pages */
.brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.brand-logo-lg {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  box-shadow: 0 0 32px rgba(139, 92, 246, 0.35);
}

.brand-logo-xl {
  width: 96px;
  height: 96px;
  margin: 0 auto 24px;
  box-shadow: 0 0 48px rgba(139, 92, 246, 0.4);
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-row h1,
.brand-row .brand-title {
  margin: 0;
}

.site-brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary, #F9FAFB);
  text-decoration: none;
}

.page-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.page-brand h1 {
  margin: 0;
  font-size: 1.5rem;
}

.page-brand .sub {
  margin: 0;
}

.footer-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.home-logo-link {
  display: inline-flex;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  border-radius: 50%;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.home-logo-link:hover {
  transform: scale(1.04);
}

.home-logo-link:focus-visible {
  outline: 2px solid rgba(139, 92, 246, 0.65);
  outline-offset: 4px;
}

.brand-logo-footer {
  width: 40px;
  height: 40px;
  opacity: 0.92;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.28);
}

/* Feature cards — custom purple icons (not emoji) */
.hop-icon-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.feature-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.22), rgba(30, 27, 46, 0.85));
  border: 1px solid rgba(167, 139, 250, 0.28);
  box-shadow: 0 0 28px rgba(139, 92, 246, 0.14);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}
