.plan-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin: 0 0 18px;
  padding: 18px 20px;
  border: 1px solid rgba(56, 189, 248, .35);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(56, 189, 248, .12), rgba(52, 211, 153, .08));
}

.plan-summary .eyebrow {
  margin: 0 0 4px;
}

.plan-summary h2 {
  margin: 0;
}

.plan-speeds {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.plan-speeds span {
  display: grid;
  min-width: 130px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(5, 9, 20, .5);
  color: var(--muted);
}

.plan-speeds strong {
  font-size: 1.35rem;
  color: var(--text);
}

.action-status {
  min-height: 24px;
  margin-top: 12px;
  color: var(--muted);
}

.action-status.success {
  color: var(--ok);
}

.action-status.error {
  color: var(--danger);
}

.disclaimer {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-left: 3px solid var(--accent2);
  border-radius: 10px;
  background: rgba(56, 189, 248, .07);
  color: var(--muted);
  font-size: .9rem;
}

.disclaimer strong {
  color: var(--text);
}

button:disabled {
  cursor: wait;
  opacity: .65;
}

@media (max-width: 850px) {
  .plan-summary {
    align-items: flex-start;
    flex-direction: column;
  }
}
