body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--text-base);
}

.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: var(--space-24) var(--space-8);
  text-align: center;
}

.container .card-static,
.container .card {
  text-align: left;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1060px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: var(--space-12) var(--space-4);
  }
}

@media (max-width: 480px) {
  .container {
    padding: var(--space-8) var(--space-3);
  }
}

.section-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
  font-weight: 500;
}

.heading-1 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  line-height: 1.15;
  margin-bottom: var(--space-6);
  font-weight: 400;
}

.heading-2 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  line-height: 1.2;
  margin-bottom: var(--space-4);
  font-weight: 400;
}

.heading-3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  line-height: 1.3;
  margin-bottom: var(--space-3);
  font-weight: 400;
}

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

.text-mono {
  font-family: var(--font-mono);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.gap-2 {
  gap: var(--space-2);
}

.gap-4 {
  gap: var(--space-4);
}

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

.gap-8 {
  gap: var(--space-8);
}
