/* Done by Default - Services page-scoped styles (Industrial Spec Sheet).
   Reuses css/redesign/* tokens + components; only services-specific layout lives here.
   Never edits the shared variables/base/components.css. */

/* Page intro / spec-sheet header (matches packages page-hero) */
.page-hero {
  padding-block: var(--space-2xl) var(--space-xl);
  border-bottom: 1px solid var(--color-border);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-4xl);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-top: var(--space-sm);
  max-width: 20ch;
}
.page-hero__sub {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  margin-top: var(--space-md);
  max-width: 62ch;
}

/* "What's included in every build" - two columns of the shared spec-list */
.includes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 var(--space-2xl);
  margin-top: var(--space-md);
}
@media (min-width: 720px) {
  .includes__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Small spec-sheet note (scope caveats) - Martian Mono, muted, blueprint-blue rule, never orange */
.svc-note {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  margin-top: var(--space-lg);
  padding-left: var(--space-md);
  border-left: 2px solid var(--color-secondary);
  max-width: 70ch;
}
