/* License (activate / resend) — add-on for site.css */
nav.nav-main a.is-active {
  color: var(--text);
  font-weight: 700;
}
.license-page {
  max-width: 32rem;
  margin: 0 auto;
  padding: 1.5rem 1rem 3rem;
}
.license-page h1 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 0 0 0.5rem;
}
.license-page .lead {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 0 0 1.5rem;
}
.license-form label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin: 0.75rem 0 0.35rem;
  color: var(--text);
}
.license-form input {
  width: 100%;
  max-width: 100%;
  padding: 0.6rem 0.75rem;
  font: inherit;
  font-family: var(--mono);
  font-size: 0.9rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
}
.license-form .btn {
  margin-top: 1rem;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
}
.license-form .btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.license-result {
  margin-top: 1.25rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  background: var(--surface-2);
  font-family: var(--mono);
  font-size: 0.8rem;
  white-space: pre-wrap;
  word-break: break-all;
  border: 1px solid var(--border);
}
.license-result--ok {
  border-color: rgba(21, 128, 61, 0.35);
  background: rgba(21, 128, 61, 0.06);
}
.license-result--err {
  border-color: rgba(180, 83, 9, 0.4);
  background: rgba(180, 83, 9, 0.08);
  color: var(--warn);
}
.license-callout {
  margin: 1.25rem 0;
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  background: var(--violet-dim);
  border: 1px solid rgba(91, 76, 219, 0.2);
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.license-callout code {
  font-family: var(--mono);
  font-size: 0.85em;
}
.site-footer a {
  margin-right: 0.75rem;
}
