/* /pay and the private /activate handoff — both ride on holding.css. */

.plans {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
}

.plan {
  font-family: var(--mono);
  color: var(--fg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--accent-soft);
  border-radius: 10px;
  padding: 0.9rem 1.6rem;
  min-width: 11rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: center;
  transition: border-color 140ms ease, background 140ms ease;
}

.plan:hover:enabled { border-color: var(--accent); background: rgba(64, 209, 127, 0.07); }
.plan:disabled { opacity: 0.45; cursor: default; }

.plan-name {
  color: var(--dim);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-price { font-size: 1.35rem; font-weight: 600; }
.plan-price .per { color: var(--dim); font-size: 0.85rem; font-weight: 400; }

.foot a { color: var(--faint); }

.agree {
  margin-top: 0.9rem;
  color: var(--dim);
  font-size: 0.85rem;
}
.agree a { color: var(--dim); }

.activation-main { gap: 1.2rem; }

.activation-brand {
  margin: 0 0 0.4rem;
  color: var(--fg);
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.activation-brand .glyph { color: var(--accent); margin-right: 0.35rem; }

.activation-state {
  width: min(100%, 31rem);
}

.activation-state > .line { margin-inline: auto; }

.activation-buy {
  width: min(100%, 22rem);
  margin: 1.4rem auto 0;
  text-decoration: none;
}

.activation-buy .plan-price { font-size: 1rem; }

.activation-divider {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 1.5rem 0;
  color: var(--faint);
  font-size: 0.78rem;
}

.activation-divider::before,
.activation-divider::after {
  content: "";
  flex: 1;
  border-top: 1px solid var(--accent-soft);
}

#activation-key-form,
#activation-key-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.activation-label {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--fg);
  font-size: 0.9rem;
}

.activation-key-row {
  display: flex;
  gap: 0.65rem;
}

.activation-key {
  min-width: 0;
  flex: 1;
  font: inherit;
  color: var(--fg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--accent-soft);
  border-radius: 8px;
  padding: 0.75rem 0.85rem;
}

.activation-key:focus { border-color: var(--accent); outline: none; }

.activation-submit {
  font: inherit;
  font-weight: 600;
  color: #07110c;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  cursor: pointer;
}

.activation-submit:hover { filter: brightness(1.08); }

.activation-note {
  margin: 0.8rem auto 0;
  max-width: 46ch;
  color: var(--faint);
  font-size: 0.78rem;
  line-height: 1.55;
}

@media (max-width: 460px) {
  .activation-key-row { flex-direction: column; }
}
