@charset "UTF-8";
.terms-layout {
  display: grid;
  gap: var(--space-12);
}
.terms-hero {
  max-width: 780px;
}
.terms-hero .hero-intro {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
}
.terms-grid {
  display: grid;
  gap: var(--space-8);
}
.terms-nav {
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: rgba(12, 14, 18, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
  align-self: flex-start;
  position: sticky;
  top: var(--space-8);
}
.terms-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.terms-nav a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.terms-nav a:hover {
  color: var(--color-primary);
}
.terms-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}
.terms-section {
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, rgba(217, 164, 65, 0.12), transparent 55%), rgba(15, 17, 21, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-subtle);
}
.terms-section h2 {
  margin-bottom: var(--space-4);
}
.terms-section h3 {
  margin-top: var(--space-4);
  margin-bottom: var(--space-2);
}
.terms-section ul {
  margin-bottom: var(--space-4);
}
.terms-section li {
  color: var(--color-text-muted);
}
.terms-updated {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
@media (min-width: 900px) {
  .terms-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 2.1fr);
    align-items: flex-start;
  }
}
@media (max-width: 899.98px) {
  .terms-nav {
    position: static;
    order: -1;
  }
}
