

.pl-jump-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--om-sp-5);
}
.pl-jump {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: var(--om-r-pill);
  border: 1px solid var(--om-line-strong);
  background: var(--om-white);
  font-family: var(--om-font-heading);
  font-weight: 600;
  font-size: var(--om-fs-xs);
  color: var(--om-ink);
  transition: border-color var(--om-dur) var(--om-ease),
              color var(--om-dur) var(--om-ease),
              transform var(--om-dur) var(--om-ease);
}
.pl-jump:hover {
  border-color: var(--om-primary);
  color: var(--om-primary-deep);
  transform: translateY(-1px);
}

.pl-cycle-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--om-sp-3);
  margin-bottom: var(--om-sp-6);
  text-align: center;
}
.pl-cycle-hint {
  margin: 0;
  font-size: var(--om-fs-xs);
}

.pl-plan-grid {
  align-items: stretch;
}
.pl-plan-grid .om-price {
  height: 100%;
}
.pl-plan-tag {
  margin: 0;
  font-size: var(--om-fs-xs);
  color: var(--om-ink-soft);
  line-height: var(--om-lh-snug);
}
.pl-hot-badge {
  align-self: flex-start;
}
.pl-perday {
  margin: 0;
  font-size: var(--om-fs-xs);
  color: var(--om-ink-soft);
  min-height: 1.5em;
}

.pl-regions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pl-region {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--om-r-pill);
  background: var(--om-surface);
  border: 1px solid var(--om-line);
  font-family: var(--om-font-heading);
  font-weight: 600;
  font-size: var(--om-fs-xs);
  color: var(--om-ink-soft);
}

.pl-grid-note {
  margin: var(--om-sp-5) 0 0;
  font-size: var(--om-fs-xs);
  text-align: center;
}

.pl-latency-table tbody th {
  font-family: var(--om-font-heading);
  font-weight: 700;
  color: var(--om-dark);
  white-space: nowrap;
}
.pl-latency-table td.is-hot {
  color: var(--om-ok);
  background: rgba(46, 158, 91, 0.08);
}

.pl-compare-table thead th a {
  color: var(--om-primary-deep);
  text-decoration: underline;
  text-decoration-color: var(--om-line-strong);
  text-underline-offset: 4px;
}
.pl-compare-table thead th a:hover {
  color: var(--om-primary);
  text-decoration-color: var(--om-primary);
}
.pl-compare-table tbody th {
  font-family: var(--om-font-heading);
  font-weight: 700;
  color: var(--om-dark);
  white-space: nowrap;
}

.pl-cta-sub {
  color: var(--om-accent-soft);
  max-width: 560px;
  margin: 0 auto var(--om-sp-5);
}
.pl-cta-actions {
  justify-content: center;
}

[data-ribbon] {
  transition: opacity var(--om-dur) var(--om-ease);
}
[data-ribbon][hidden] {
  display: none;
}

@media (max-width: 640px) {
  .pl-jump-row {
    gap: 8px;
  }
  .pl-jump {
    padding: 7px 14px;
  }
  .pl-cycle-bar .om-switch__opt {
    padding: 10px 16px;
  }
}
@media (max-width: 360px) {
  .pl-cycle-bar .om-switch {
    flex-wrap: wrap;
    justify-content: center;
    border-radius: var(--om-r-lg);
  }
}
