/* Supported accounts homepage section */
.hp-accounts {
  background: var(--ink);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.hp-accounts-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.hp-accounts-hdr {
  text-align: center;
  margin-bottom: 3rem;
}

.hp-accounts-h2 {
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 0.85rem;
}

.hp-accounts-sub {
  font-size: 0.96rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.32);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.72;
}

.hp-accounts-block {
  margin-bottom: 2.25rem;
}

.hp-accounts-block:last-of-type {
  margin-bottom: 0;
}

.hp-accounts-infra-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hp-infra-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 0.24rem 0.72rem;
}

.hp-paused-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #d97706;
  border: 1px solid rgba(217, 119, 6, 0.3);
  border-radius: 100px;
  padding: 0.24rem 0.72rem;
}

.hp-paused-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d97706;
  flex-shrink: 0;
  animation: hp-pulse-amber 2.2s ease-in-out infinite;
}

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

  50% {
    opacity: 0.28;
  }
}

.hp-broker-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hp-broker-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 0.38rem 0.95rem;
  background: rgba(255, 255, 255, 0.04);
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}

.hp-broker-pill:hover {
  color: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
}

.hp-broker-pill--prop {
  /* Prop firm variation keeps the same visual treatment. */
}

.hp-prop-badge {
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.45);
  border-radius: 100px;
  padding: 0.1rem 0.42rem;
}

.hp-broker-pill--dim {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}

.hp-accounts-more {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.22);
  font-style: italic;
  margin-top: 0.75rem;
}

.hp-accounts-block--paused {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 2rem;
}

.hp-accounts-paused-note {
  font-size: 0.76rem;
  color: rgba(217, 119, 6, 0.55);
  font-style: italic;
  margin-top: 0.6rem;
}

.hp-accounts-cta {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 2rem;
  margin-top: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.hp-accounts-link {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: rgba(255, 255, 255, 0.52);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 0.18rem;
  transition: color 0.25s, border-color 0.25s;
}

.hp-accounts-link:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
}

.hp-accounts-link svg {
  flex-shrink: 0;
}

.hp-accounts-disc {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.16);
  font-style: italic;
}

@media (max-width: 600px) {
  .hp-accounts-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
