/**
 * Easy as ABC — three-step strip (competitor-inspired glossy rings + solid discs).
 * Used on USA, Canada, UK, Global landings.
 */

.psa-abc {
  --psa-title: #3d2918;
  --psa-tagline: #5c534a;
  padding: clamp(0.5rem, 1.5vw, 1rem) clamp(0.5rem, 2.5vw, 1rem);
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.psa-abc__intro {
  text-align: center;
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
}

.psa-abc__title {
  font-weight: 600;
  font-size: clamp(1.25rem, 3.2vw, 1.85rem);
  color: var(--psa-title);
  letter-spacing: 0.02em;
  margin: 0 0 0.35rem;
  font-family: "Futura LT", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.25;
}

.psa-abc__tagline {
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  color: var(--psa-tagline);
  line-height: 1.45;
  margin: 0 auto 0.25rem;
  max-width: 38rem;
  font-weight: 400;
  font-family: "Futura LT", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
}

.psa-abc--dark {
  --psa-title: rgba(255, 255, 255, 0.96);
  --psa-tagline: rgba(255, 255, 255, 0.88);
}

/* Orbit: glossy multi-stop ring + solid inner (reference: 123PayStubs-style steps) */
.psa-abc__orbit {
  position: relative;
  width: clamp(158px, 34vw, 208px);
  aspect-ratio: 1;
  margin-left: auto;
  margin-right: auto;
  filter: drop-shadow(0 10px 18px rgba(15, 27, 61, 0.12));
}

.psa-abc__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow:
    inset 0 3px 10px rgba(255, 255, 255, 0.38),
    inset 0 -7px 16px rgba(0, 0, 0, 0.2);
}

.psa-abc__ring--a {
  background: conic-gradient(
    from 225deg,
    #fb923c,
    #ea580c 18%,
    #c026d3 38%,
    #9333ea 52%,
    #84cc16 72%,
    #eab308 88%,
    #fb923c
  );
}

.psa-abc__ring--b {
  background: conic-gradient(
    from 145deg,
    #f59e0b,
    #ea580c 22%,
    #a855f7 48%,
    #6366f1 62%,
    #22c55e 82%,
    #f59e0b
  );
}

.psa-abc__ring--c {
  background: conic-gradient(
    from 310deg,
    #22c55e,
    #84cc16 24%,
    #eab308 44%,
    #ec4899 62%,
    #a855f7 80%,
    #22c55e
  );
}

.psa-abc__solid {
  /* sits inside the ring's padding zone, revealing the conic ring as a coloured border */
  position: absolute;
  inset: clamp(11px, 2.8vw, 14px);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.45rem 0.35rem 0.55rem;
  box-sizing: border-box;
  box-shadow: inset 0 3px 14px rgba(0, 0, 0, 0.15);
}

.psa-abc__solid--a {
  background: linear-gradient(168deg, #c21835 0%, #7f1d1d 55%, #450a0a 100%);
}

.psa-abc__solid--b {
  background: linear-gradient(168deg, #6366f1 0%, #4338ca 50%, #312e81 100%);
}

.psa-abc__solid--c {
  background: linear-gradient(168deg, #22c55e 0%, #15803d 55%, #14532d 100%);
}

.psa-abc__icon {
  width: clamp(42px, 11vw, 54px);
  height: clamp(42px, 11vw, 54px);
  color: #fff;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
}

.psa-abc__in-label {
  font-weight: 700;
  font-size: clamp(0.68rem, 1.85vw, 0.88rem);
  color: #fff;
  text-align: center;
  line-height: 1.22;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  padding: 0 0.3rem;
  max-width: 11rem;
}

.psa-abc__track {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.25rem;
}

.psa-abc__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.psa-abc__between {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  padding: 0.4rem 0;
  font-size: clamp(1.25rem, 4vw, 1.55rem);
  line-height: 1;
}

.psa-abc__between--purple {
  color: #a855f7;
}

.psa-abc__between--gold {
  color: #ea580c;
}

.psa-abc__between-mobile {
  display: inline-flex;
}

.psa-abc__between-desktop {
  display: none;
}

@media (min-width: 768px) {
  .psa-abc__track {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: clamp(0.15rem, 1vw, 0.55rem);
  }

  .psa-abc__between {
    padding: 0 0.12rem;
    align-self: center;
  }

  .psa-abc__between-mobile {
    display: none;
  }

  .psa-abc__between-desktop {
    display: inline-flex;
  }

  .psa-abc__step {
    flex: 0 1 auto;
    max-width: min(260px, 32%);
  }
}

@media (min-width: 992px) {
  .psa-abc__orbit {
    width: clamp(172px, 17vw, 208px);
  }
}

/* Optional wrapper on USA home — no extra vertical growth */
.psa-abc-band-compact .container {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
