body {
  font-family: monospace;
  font-size: 16px;
  max-width: 900px;
  margin: 40px auto;
  padding: 0 16px;
  line-height: 1.2;
  color: #000;
  background: #fff;
}

h1 {
  position: absolute;
  left: -9999px;
  top: -9999px;
}

h2, h3 {
  margin-top: 32px;
  font-weight: bold;
}

h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

p {
  margin: 12px 0;
}

hr {
  border: 0;
  border-top: 1px solid #888;
  margin: 40px 0;
}

/* --- Code Blocks & Payload Renderers --- */
pre {
  background: #f6f6f6;
  padding: 12px;
  overflow-x: auto;
  border: 0px solid #111;
}

code {
  background: #f6f6f6;
  padding: 2px 4px;
}

.brand-label {
  font-size: 2em;          /* default h1 size */
  font-weight: bold;       /* default h1 weight */
  margin: 0.67em 0;        /* default h1 margins */
  line-height: 1.2;        /* typical h1 line-height */
}

.product-label {
  font-size: 24px;          
  /* margin: 4px 0 24px 0; */
  color: #555;
}

.subheadline {
  max-width: 700px;
  margin: 16px 0 24px 0;
}


/* --- Interactive Elements & CTAs --- */
.cta {
  display: inline-block;
  margin: 20px 0;
  padding: 10px 14px;
  border: 1px solid #111;
  text-decoration: none;
  color: #111;
  text-align: center;
}

.cta:hover {
  background: #111;
  color: #fff;
}

/* --- Table of Contents (Docs Page) --- */
.toc {
  list-style: none;
  padding-left: 2;
  margin: 1.5rem 0;
  line-height: 1.6;
}

.toc li a {
  text-decoration: none;
  color: inherit;
  opacity: 0.85;
}

.toc li a:hover {
  opacity: 1;
}


/* --- 4-Column Pricing Layout (Landing Page) --- */
.pricing-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 32px 0;
}

@media (max-width: 768px) {
  .pricing-container {
    grid-template-columns: 1fr;
  }
}

.pricing-card {
  border: 1px solid #111;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.pricing-card h3 {
  margin: 0 0 8px 0; /* Zeroes top margin, keeps standard 8px spacing underneath */
  font-size: 18px;
}

.pricing-card-header {
  margin: 0 0 8px 0;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap; /* Rigidly prevents the badge from wrapping to a new line */
}


.pricing-card.recommended {
  border: 2px solid #111;
  background: #fafafa;
}

.recommended-badge {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: bold;
  margin-left: 6px;
  color: #000;
}

.price {
  font-size: 22px;
  font-weight: bold;
  margin: 8px 0;
}

.pricing-card p {
  margin: 8px 0;
  font-size: 14px;
  flex-grow: 1; /* Pushes the button to the bottom so they align */
}

.pricing-card .cta {
  margin: 16px 0 0 0;
  display: block;
}

/* --- Matrix Tables & Documentation Architecture --- */
.doc-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.doc-table th,
.doc-table td {
  text-align: left;
  padding: 10px;
  border: 1px solid #111;
  vertical-align: top;
  font-size: 15px;
}

.doc-table th {
  background: #f6f6f6;
  font-weight: bold;
}

.doc-callout {
  padding: 20px;
  margin: 24px 0;
  background: #fafafa;
}

.doc-callout-title {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 12px;
}
