/* ============ Polar Pup — how to buy ============ */

.htb-seal-row {
  display: grid;
  justify-items: center;
  gap: 2px;
  margin: -12px auto 30px;
}

.htb-caption {
  font: 600 0.9rem var(--font-ui);
  color: var(--muted);
  margin: 0;
}

.htb-seal {
  width: 140px;
  aspect-ratio: 1;
}

.omw-seal {
  width: 120px;
  aspect-ratio: 1;
  margin: 4px auto 8px;
}

.steps {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto 36px;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 26px 28px;
  cursor: pointer;
  transition: transform 0.22s var(--ease-pop), box-shadow 0.22s;
}

.step:hover { transform: translateX(6px); }

.step:hover .step-num { animation: num-wobble 0.5s var(--ease-pop); }

@keyframes num-wobble {
  30% { transform: rotate(-9deg) scale(1.08); }
  65% { transform: rotate(6deg); }
}

.step-stamp {
  position: absolute;
  top: 10px;
  right: 14px;
  font-family: var(--font-ice);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--glow-cyan);
  text-shadow: 0 0 12px rgba(0, 212, 255, 0.7);
  opacity: 0;
  scale: 0.4;
  rotate: 10deg;
  transition: opacity 0.25s var(--ease-pop), scale 0.25s var(--ease-pop);
  pointer-events: none;
  z-index: 2;
}

.step.done .step-stamp { opacity: 1; scale: 1; }

.step.done {
  box-shadow:
    inset 0 0 0 1.5px rgba(0, 212, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 18px 40px rgba(2, 10, 24, 0.45);
}

.step-num {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-ice);
  font-size: 1.5rem;
  color: #04263a;
  background: radial-gradient(circle at 32% 28%, #ffffff, var(--icicle-tip) 55%, var(--ice-blue));
  box-shadow: 0 6px 16px rgba(0, 140, 200, 0.35), inset 0 -3px 6px rgba(70, 150, 190, 0.4);
  position: relative;
  z-index: 1;
}

.step-body { position: relative; z-index: 1; }

.step h3 {
  margin: 4px 0 6px;
  font: 600 1.15rem var(--font-ui);
  color: var(--ice-white);
}

.step p { margin: 0; color: var(--muted); }

.step a {
  color: var(--glow-cyan);
  font-weight: 700;
  text-decoration: none;
}
.step a:hover { text-decoration: underline; }

.ca-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
  padding: 18px 22px;
  max-width: 760px;
  margin: 0 auto 26px;
  border: 1.5px dashed var(--frost-line);
  border-radius: 16px;
  background: rgba(13, 31, 56, 0.5);
}

.ca-label {
  font: 700 0.8rem var(--font-ui);
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}

.ca-strip code {
  font: 700 0.88rem/1.4 Consolas, "Courier New", monospace;
  color: var(--icicle-tip);
  letter-spacing: 0.02em;
  word-break: break-all;
  max-width: 100%;
}

.dex-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 560px) {
  .step { padding: 20px; gap: 14px; }
  .step-num { width: 44px; height: 44px; font-size: 1.2rem; }
}
