/**
 * Horizon Theme — Components
 * Buttons, cards, badges, platform links, social icons, tiles.
 */

/* ==========================================================================
   Skip-to-content link (accessibility)
   ========================================================================== */

.hp-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 9999;
  white-space: nowrap;
}
.hp-skip-link:focus {
  position: fixed;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  padding: var(--hp-sp-3) var(--hp-sp-6);
  background: var(--hp-bg-surface);
  color: var(--hp-text);
  font-size: var(--hp-text-base);
  font-weight: 500;
  text-decoration: none;
  border-right: 2px solid var(--hp-gold);
  border-bottom: 2px solid var(--hp-gold);
  outline: none;
  box-shadow: var(--hp-shadow-raised);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.hp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 48px;
  padding: 0 1.5rem;
  border-radius: var(--hp-r-sm);
  font-family: var(--hp-font-body);
  font-size: var(--hp-text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background var(--hp-dur) var(--hp-ease),
              color var(--hp-dur) var(--hp-ease),
              transform var(--hp-dur) var(--hp-ease),
              box-shadow var(--hp-dur) var(--hp-ease);
  white-space: nowrap;
}

.hp-btn:disabled,
.hp-btn[aria-disabled="true"] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

/* Primary — gold fill */
.hp-btn--primary {
  background: var(--hp-gold);
  color: var(--hp-on-accent);
}

.hp-btn--primary:hover {
  background: var(--hp-gold-light);
  color: var(--hp-on-accent);
  transform: translateY(-1px);
  box-shadow: var(--hp-shadow-gold);
}

.hp-btn--primary:active {
  background: var(--hp-gold-dark);
  transform: translateY(0);
}

/* Secondary — outlined */
.hp-btn--secondary {
  background: transparent;
  color: var(--hp-gold);
  border: 1px solid var(--hp-border-strong);
}

.hp-btn--secondary:hover {
  background: var(--hp-gold-muted);
  color: var(--hp-gold-light);
  border-color: var(--hp-gold);
}

/* Ghost — text only */
.hp-btn--ghost {
  background: transparent;
  color: var(--hp-gold);
  padding: 0;
  height: auto;
}

.hp-btn--ghost:hover {
  color: var(--hp-gold-light);
}

/* Size variants */
.hp-btn--sm {
  height: 36px;
  padding: 0 1rem;
  font-size: var(--hp-text-xs);
}

.hp-btn--lg {
  height: 56px;
  padding: 0 2rem;
  font-size: var(--hp-text-base);
}

/* Loading state */
.hp-btn--loading {
  pointer-events: none;
  opacity: 0.7;
}

.hp-btn--loading::after {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: hp-spin 0.7s linear infinite;
  margin-left: 0.5rem;
}

@keyframes hp-spin {
  to { transform: rotate(360deg); }
}

/* ==========================================================================
   Cards
   ========================================================================== */

.hp-card {
  background: var(--hp-bg-surface);
  border: 1px solid var(--hp-border);
  border-radius: var(--hp-r-md);
  box-shadow: var(--hp-shadow-card);
  transition: border-color var(--hp-dur) var(--hp-ease),
              box-shadow var(--hp-dur) var(--hp-ease),
              transform var(--hp-dur) var(--hp-ease);
}

.hp-card:hover {
  border-color: var(--hp-border-strong);
  box-shadow: var(--hp-shadow-raised);
  transform: translateY(-2px);
}

/* ==========================================================================
   Badges / Pills
   ========================================================================== */

.hp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  height: 24px;
  padding: 0 0.625rem;
  border-radius: var(--hp-r-full);
  font-family: var(--hp-font-body);
  font-size: var(--hp-text-xs);
  font-weight: 500;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.hp-badge--gold {
  background: var(--hp-gold-muted);
  color: var(--hp-gold);
  border: 1px solid var(--hp-border);
}

.hp-badge--unlocked {
  background: var(--hp-success-muted);
  color: var(--hp-success);
  border: 1px solid rgba(110, 184, 122, 0.3);
}

.hp-badge--locked {
  background: rgba(201, 169, 110, 0.1);
  color: var(--hp-gold);
  border: 1px solid var(--hp-border);
}

.hp-badge--live {
  background: var(--hp-error-muted);
  color: var(--hp-error);
  border: 1px solid rgba(201, 110, 110, 0.3);
}

.hp-badge--live::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hp-error);
  animation: hp-pulse 1.5s ease-in-out infinite;
}

@keyframes hp-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* ==========================================================================
   Platform Links
   ========================================================================== */

.hp-platform-bar {
  background: var(--hp-bg);
  border-top: 1px solid var(--hp-border);
  border-bottom: 1px solid var(--hp-border);
  padding: var(--hp-sp-6) 0;
}

.hp-platform-bar__inner {
  display: flex;
  align-items: center;
  gap: var(--hp-sp-8);
  overflow-x: auto;
  padding: var(--hp-sp-2) var(--hp-content-pad);
  max-width: var(--hp-content-max);
  margin: 0 auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.hp-platform-bar__inner::-webkit-scrollbar { display: none; }

.hp-platform-bar__label {
  flex-shrink: 0;
  font-size: var(--hp-text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hp-text-muted);
}

.hp-platform-links {
  display: flex;
  gap: var(--hp-sp-3);
  flex-shrink: 0;
}

.hp-platform-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--hp-sp-1);
  padding: var(--hp-sp-3);
  border: 1px solid var(--hp-border);
  border-radius: var(--hp-r-md);
  background: var(--hp-bg-surface);
  text-decoration: none;
  transition: border-color var(--hp-dur) var(--hp-ease),
              box-shadow var(--hp-dur) var(--hp-ease);
  min-width: 80px;
}

.hp-platform-link:hover {
  border-color: var(--hp-border-strong);
  box-shadow: var(--hp-shadow-gold);
}

.hp-platform-link__icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0.8);
  transition: filter var(--hp-dur) var(--hp-ease);
}

.hp-platform-link svg {
  width: 28px;
  height: 28px;
  fill: var(--hp-text-muted);
  transition: fill var(--hp-dur) var(--hp-ease);
}

.hp-platform-link:hover .hp-platform-link__icon,
.hp-platform-link:hover svg {
  filter: brightness(1);
  fill: var(--hp-text);
}

.hp-platform-link__name {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hp-text-muted);
}

/* ==========================================================================
   Social Links
   ========================================================================== */

.hp-social-links {
  display: flex;
  gap: var(--hp-sp-3);
  flex-wrap: wrap;
}

.hp-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--hp-border);
  background: transparent;
  color: var(--hp-text-muted);
  transition: border-color var(--hp-dur) var(--hp-ease),
              color var(--hp-dur) var(--hp-ease);
}

.hp-social-link:hover {
  border-color: var(--hp-border-strong);
  color: var(--hp-gold);
}

.hp-social-link svg {
  width: 16px;
  height: 16px;
}

/* ==========================================================================
   Subscribe Tier Cards
   ========================================================================== */

.hp-tiers {
  display: flex;
  gap: var(--hp-sp-6);
  justify-content: center;
  flex-wrap: wrap;
}

.hp-tier-card {
  background: var(--hp-bg-surface);
  border: 1px solid var(--hp-border);
  border-radius: var(--hp-r-lg);
  padding: var(--hp-sp-8);
  flex: 1;
  min-width: 280px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: var(--hp-sp-6);
  transition: border-color var(--hp-dur) var(--hp-ease),
              box-shadow var(--hp-dur) var(--hp-ease);
}

.hp-tier-card--featured {
  border-color: var(--hp-border-strong);
  box-shadow: var(--hp-shadow-gold);
  transform: scale(1.02);
  position: relative;
}

.hp-tier-card__featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--hp-gold);
  color: var(--hp-on-accent);
  font-size: var(--hp-text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 1rem;
  border-radius: var(--hp-r-full);
  white-space: nowrap;
}

.hp-tier-card__name {
  font-family: var(--hp-font-body);
  font-size: var(--hp-text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hp-gold);
  margin-bottom: 0;
}

.hp-tier-card__price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.hp-tier-card__price {
  font-family: var(--hp-font-display);
  font-size: var(--hp-text-4xl);
  font-weight: 600;
  color: var(--hp-text);
  line-height: 1;
}

.hp-tier-card__period {
  font-size: var(--hp-text-sm);
  color: var(--hp-text-muted);
}

.hp-tier-card__benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--hp-sp-3);
  flex: 1;
}

.hp-tier-card__benefits li {
  display: flex;
  align-items: flex-start;
  gap: var(--hp-sp-3);
  font-size: var(--hp-text-sm);
  color: var(--hp-text-muted);
}

.hp-tier-card__benefits li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  background-color: var(--hp-gold);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M13.5 3.5 6 11 2.5 7.5l-1 1 4.5 4.5 8.5-8.5z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M13.5 3.5 6 11 2.5 7.5l-1 1 4.5 4.5 8.5-8.5z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.hp-tier-card__cta {
  width: 100%;
  justify-content: center;
}

.hp-tier-card__trust {
  font-size: var(--hp-text-xs);
  color: var(--hp-text-subtle);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
}

/* ==========================================================================
   Email Signup — two-column split layout
   ========================================================================== */

.hp-email-section {
  background: var(--hp-bg-raised);
  border-top: 1px solid var(--hp-border);
  border-bottom: 1px solid var(--hp-border);
  overflow: hidden;
}

/* Two-col grid: copy left, image right */
.hp-email-signup-split {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: var(--hp-sp-16) 0;
  gap: var(--hp-sp-12);
}

.hp-email-signup-split--has-image {
  grid-template-columns: 1fr 1fr;
}

/* Left — copy + form */
.hp-email-signup__left {
  display: flex;
  flex-direction: column;
  gap: var(--hp-sp-4);
}

.hp-email-signup__headline {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: var(--hp-text);
}

.hp-email-signup__body {
  color: var(--hp-text-muted);
  font-size: var(--hp-text-sm);
  line-height: 1.7;
  margin: 0;
}

.hp-email-signup__form {
  margin-top: var(--hp-sp-2);
}

/* Input + button inline, joined edges */
.hp-email-signup__field-row {
  display: flex;
  height: 52px;
}

.hp-email-signup__input {
  flex: 1;
  background: var(--hp-bg);
  border: 1px solid var(--hp-border-strong);
  border-right: none;
  border-radius: var(--hp-r-sm) 0 0 var(--hp-r-sm);
  color: var(--hp-text);
  font-family: var(--hp-font-body);
  font-size: var(--hp-text-sm);
  padding: 0 1rem;
  height: 100%;
  transition: border-color var(--hp-dur) var(--hp-ease);
}

.hp-email-signup__input:focus {
  outline: none;
  border-color: var(--hp-text);
}

.hp-email-signup__btn {
  flex-shrink: 0;
  padding: 0 var(--hp-sp-6);
  height: 100%;
  background: var(--hp-text);
  color: var(--hp-bg);
  border: 1px solid var(--hp-text);
  border-radius: 0 var(--hp-r-sm) var(--hp-r-sm) 0;
  font-family: var(--hp-font-body);
  font-size: var(--hp-text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--hp-dur) var(--hp-ease),
              border-color var(--hp-dur) var(--hp-ease);
}

.hp-email-signup__btn:hover {
  background: var(--hp-gold);
  border-color: var(--hp-gold);
  color: var(--hp-on-accent);
}

.hp-email-signup__privacy {
  font-size: var(--hp-text-xs);
  color: var(--hp-text-subtle);
  margin: 0;
}

/* Right — product image, vertically overflows to break out of the section */
.hp-email-signup__right {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
}

.hp-email-signup__right img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--hp-r-md);
}

/* ==========================================================================
   Toast notification
   ========================================================================== */

.hp-toast {
  position: fixed;
  bottom: var(--hp-sp-6);
  right: var(--hp-sp-6);
  z-index: 9999;
  width: 340px;
  background: var(--hp-bg-raised);
  border: 1px solid var(--hp-border-strong);
  border-radius: var(--hp-r-md);
  box-shadow: var(--hp-shadow-raised);
  padding: var(--hp-sp-4) var(--hp-sp-6);
  display: flex;
  gap: var(--hp-sp-4);
  align-items: flex-start;
  transform: translateX(calc(100% + 2rem));
  opacity: 0;
  transition: transform 0.4s var(--hp-ease), opacity 0.4s var(--hp-ease);
  border-left: 4px solid var(--hp-gold);
}

.hp-toast.hp-toast--visible {
  transform: translateX(0);
  opacity: 1;
}

.hp-toast__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--hp-gold-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hp-gold);
}

.hp-toast__content { flex: 1; }

.hp-toast__title {
  font-weight: 600;
  font-size: var(--hp-text-sm);
  color: var(--hp-text);
  margin-bottom: var(--hp-sp-1);
}

.hp-toast__body {
  font-size: var(--hp-text-sm);
  color: var(--hp-text-muted);
}

.hp-toast__dismiss {
  background: none;
  border: none;
  color: var(--hp-text-muted);
  cursor: pointer;
  padding: 0;
  line-height: 1;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.hp-toast__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--hp-gold);
  border-radius: 0 0 0 var(--hp-r-md);
  animation: hp-toast-progress 6s linear forwards;
}

@keyframes hp-toast-progress {
  from { width: 100%; }
  to   { width: 0; }
}


/* ==========================================================================
   Icon SVG helper class
   ========================================================================== */

.hp-icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 768px) {
  .hp-email-signup-split,
  .hp-email-signup-split--has-image {
    grid-template-columns: 1fr;
    padding: var(--hp-sp-10) 0;
  }

  .hp-email-signup__right {
    display: none;
  }

  .hp-email-signup__field-row {
    flex-direction: column;
    height: auto;
    gap: var(--hp-sp-3);
  }

  .hp-email-signup__input {
    border-right: 1px solid var(--hp-border-strong);
    border-radius: var(--hp-r-sm);
    height: 48px;
  }

  .hp-email-signup__btn {
    border-radius: var(--hp-r-sm);
    height: 48px;
    width: 100%;
  }

  .hp-tiers {
    flex-direction: column;
    align-items: center;
  }

  .hp-tier-card--featured {
    transform: none;
  }

  .hp-toast {
    width: calc(100vw - 2rem);
    right: 1rem;
    bottom: 1rem;
  }
}

/* ==========================================================================
   Hero (shared component)
   Used by the front page and several page templates (about, subscribe,
   collabs, live, best-sellers). Lives here so it loads on every page — it was
   previously in hp-home.css, which only enqueues on the front page, leaving
   the hero unstyled (and content pushed below the fold) everywhere else.
   ========================================================================== */

.hp-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hp-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hp-hero__bg img,
.hp-hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hp-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Canonical "About fade" — a vertical gradient that melts the hero image into
     the page background at the bottom. Shared by every full-image hero (home,
     about, subscribe, collabs, live, best-sellers, shows) for a consistent,
     luxury look. Per-page inline overlay overrides were removed so they all
     inherit this. */
  background: var(--hp-hero-overlay);
}

.hp-hero__inner {
  position: relative;
  z-index: 2;
  padding: 0 var(--hp-content-pad) var(--hp-sp-24);
  max-width: var(--hp-content-max);
  width: 100%;
  margin: 0 auto;
}

.hp-hero__eyebrow {
  display: inline-block;
  font-size: var(--hp-text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hp-gold);
  margin-bottom: var(--hp-sp-4);
}

.hp-hero__title {
  font-family: var(--hp-font-display);
  font-size: var(--hp-text-hero);
  font-weight: 400;
  color: var(--hp-text);
  margin-bottom: var(--hp-sp-4);
  line-height: 1.0;
  max-width: 14ch;
}

.hp-hero__tagline {
  font-family: var(--hp-font-display);
  font-style: italic;
  font-size: var(--hp-text-2xl);
  color: var(--hp-text-muted);
  margin-bottom: var(--hp-sp-8);
}

.hp-hero__cta {
  display: flex;
  gap: var(--hp-sp-4);
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hp-hero__inner {
    padding-bottom: var(--hp-sp-16);
  }

  .hp-hero__title {
    max-width: 100%;
  }

  .hp-hero__cta {
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;
  }

  .hp-hero__cta .hp-btn {
    flex: 1;
    min-width: 0;
    justify-content: center;
  }
}

/* ==========================================================================
   Merch grid + product card (shared component)
   Used by the home "Store" preview (front-page.php) and the Best Sellers page
   (page-best-sellers.php). Previously lived in hp-home.css (home-only enqueue),
   so the Best Sellers merch cards rendered unstyled.
   ========================================================================== */

.hp-merch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--hp-sp-4);
}

.hp-product-card {
  background: var(--hp-bg-surface);
  border: 1px solid var(--hp-border);
  border-radius: var(--hp-r-md);
  overflow: hidden;
  transition: border-color var(--hp-dur) var(--hp-ease),
              box-shadow var(--hp-dur) var(--hp-ease),
              transform var(--hp-dur) var(--hp-ease);
  position: relative;
}

.hp-product-card:hover {
  border-color: var(--hp-border-strong);
  box-shadow: var(--hp-shadow-raised);
  transform: translateY(-2px);
}

.hp-product-card__image-wrap {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
}

.hp-product-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--hp-ease);
}

.hp-product-card:hover .hp-product-card__image-wrap img {
  transform: scale(1.04);
}

.hp-product-card__hover-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--hp-sp-3);
  background: var(--hp-card-veil);
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--hp-dur) var(--hp-ease),
              transform var(--hp-dur) var(--hp-ease);
}

.hp-product-card:hover .hp-product-card__hover-btn {
  opacity: 1;
  transform: translateY(0);
}

.hp-product-card__info {
  padding: var(--hp-sp-4);
}

.hp-product-card__name {
  font-weight: 600;
  font-size: var(--hp-text-sm);
  color: var(--hp-text);
  margin-bottom: var(--hp-sp-2);
}

.hp-product-card__name a {
  color: inherit;
  text-decoration: none;
  transition: color var(--hp-dur) var(--hp-ease);
}

.hp-product-card__name a:hover {
  color: var(--hp-gold);
}

.hp-product-card__price {
  font-size: var(--hp-text-sm);
  font-weight: 600;
  color: var(--hp-gold);
}

.hp-product-card__price a {
  color: inherit;
  text-decoration: none;
}

.hp-product-card__badge {
  position: absolute;
  top: var(--hp-sp-3);
  left: var(--hp-sp-3);
}

@media (max-width: 1024px) {
  .hp-merch-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .hp-merch-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--hp-sp-3);
  }
}

/* ==========================================================================
   Utilities
   ========================================================================== */

/* ── Portrait wrap utilities ── */
.hp-portrait-wrap {
  position: relative;
}
.hp-portrait-glow {
  position: absolute;
  inset: var(--hp-portrait-glow-bleed, -12px);
  background: var(--hp-gold-muted);
  filter: blur(40px);
  border-radius: var(--hp-r-lg);
  pointer-events: none;
}
.hp-portrait-img {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--hp-r-md);
  border: 1px solid var(--hp-border-strong);
}

/* ── Icon badge ── */
.hp-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: var(--hp-r-md);
  background: var(--hp-gold-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hp-gold);
  flex-shrink: 0;
}
.hp-icon-badge--lg {
  width: 48px;
  height: 48px;
}

/* ── Centred section heading ── */
.hp-section-head--center {
  text-align: center;
  margin-bottom: var(--hp-sp-10);
}

/* ── Benefit list ── */
.hp-benefit-list {
  list-style: none;
  margin: 0 0 var(--hp-sp-8);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--hp-sp-3);
}
.hp-benefit-list__item {
  display: flex;
  align-items: center;
  gap: var(--hp-sp-3);
  color: var(--hp-text);
}
.hp-benefit-list__check {
  color: var(--hp-gold);
  flex-shrink: 0;
}

/* ── Empty state icon ring ── */
.hp-empty-state__icon-ring {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--hp-bg-surface);
  border: 1px solid var(--hp-border);
  margin: 0 auto var(--hp-sp-4);
}

/* ── Section divider (adds top border to tight sections) ── */
.hp-section--divider {
  border-top: 1px solid var(--hp-border);
}

/* ── Hero bg fallback gradient ── */
.hp-hero__bg--fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--hp-bg-raised), var(--hp-bg-surface));
}
