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

/* Page intro / spec-sheet header */
.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: 60ch;
}

/* A pricing group = a spec-sheet block: head + catalog table + action row */
.priceblock {
  border-top: 1px solid var(--color-border);
}
.priceblock .section-head {
  margin-bottom: var(--space-lg);
}
.priceblock__cta {
  margin-top: var(--space-lg);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

/* Small spec-sheet note (grandfather clause, decisions) - Martian Mono, muted, never orange */
.pkg-note {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  margin-top: var(--space-md);
  padding-left: var(--space-md);
  border-left: 2px solid var(--color-secondary);
}

/* Included specs: 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;
  }
}

/* Extra column-count safety: catalog price column stays readable, never wraps mid-figure */
.catalog__price b {
  font-weight: 700;
}

/* Self-serve buy-now button on recurring rows (subscriptions only).
   White on #c23e1a = 5.25:1 (AA pass). Orange used as a FILL here, not small text. */
.catalog__buy {
  display: block;
  width: fit-content;
  margin-top: var(--space-sm);
  padding: 0.4rem 0.9rem;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--color-accent);
  transition: background var(--duration-fast) var(--ease-out);
}
.catalog__buy:hover { background: #a5330f; border-color: #a5330f; }
.catalog__buy:focus-visible { outline: 2px solid var(--color-secondary); outline-offset: 2px; }
