.terms {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.terms__header {
  margin-bottom: var(--space-4);
}

.terms__meta {
  margin-bottom: var(--space-4);
}

.terms__meta-grid {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 960px) {
  .terms__meta-grid {
    grid-template-columns: minmax(0, 3fr) minmax(260px, 1fr);
    align-items: flex-start;
  }
}

.terms__nav {
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  background: radial-gradient(circle at top, rgba(129, 140, 248, 0.18), transparent 55%),
    rgba(15, 23, 42, 0.97);
  border: 1px solid rgba(148, 163, 184, 0.45);
}

.terms__nav-title {
  font-size: var(--text-sm);
  margin-bottom: var(--space-3);
}

.terms__nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  font-size: var(--text-sm);
}

.terms__nav-list a {
  color: var(--color-text-muted);
}

.terms__nav-list a:hover {
  color: var(--gray-50);
}

.terms__section {
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), transparent 55%),
    radial-gradient(circle at bottom right, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 1));
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-sm);
}

.terms__section + .terms__section {
  margin-top: var(--space-4);
}

.terms__section h2 {
  margin-bottom: var(--space-3);
}

.terms__list {
  list-style: disc;
  padding-left: var(--space-6);
  margin-bottom: var(--space-4);
}

.terms__list li {
  margin-bottom: var(--space-2);
  color: var(--color-text-muted);
}

.terms__cta {
  margin-top: var(--space-6);
}

.terms__cta .card {
  text-align: left;
}

@media (max-width: 640px) {
  .terms__section {
    padding: var(--space-4);
  }
}
