/* QUANTUM LABS — Pages */

/* Page Container */
.page-container {
  min-height: 100vh;
  padding-top: 56px; /* navbar height */
}

/* Page Enter */
.page-enter {
  animation: pageIn 0.3s var(--ease-out);
}

/* Page Exit */
.page-exit {
  opacity: 0;
  transition: opacity 0.15s;
}

@keyframes pageIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Shared Section */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

/* Section Tag */
.section-tag {
  display: inline-block;
  margin-bottom: var(--sp-4);
  padding: var(--sp-1) var(--sp-3);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--ember);
  background: var(--ember-10);
  border: 1px solid var(--ember-20);
  border-radius: var(--radius-sm);
  letter-spacing: 0.1em;
}

/* Section Title */
.section-title {
  margin-bottom: var(--sp-3);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--bone);
}

/* Section Desc */
.section-desc {
  max-width: 560px;
  font-size: var(--text-md);
  line-height: 1.6;
  color: var(--ash);
}

/* Shared Grid */
.ui-grid {
  display: grid;
  gap: var(--sp-6);
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  margin-top: var(--sp-8);
}
