/* AAMOS Global Stylesheet — Win98 Monospace Design System */
* {
  border-radius: 0 !important;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-light: #D4D0C8;
  --bg-mid: #C0C0C0;
  --bg-dark: #808080;
  --bg-darker: #404040;
  --bg-black: #000000;
  --text-black: #000000;
  --text-dark: #1a1a1a;
  --text-mid: #333333;
  --text-light: #666666;
  --border: #808080;
  --border-dark: #404040;
  --border-light: #DFDFDF;
  --accent-green: #008000;
  --accent-red: #800000;
  --accent-orange: #804000;
  --accent-blue: #000080;
  --win98-highlight: #000080;
  --win98-highlight-text: #FFFFFF;
  --font: 'Courier New', Courier, monospace;
}

html, body {
  font-family: var(--font);
  background-color: var(--bg-light);
  color: var(--text-black);
  font-size: 14px;
  line-height: 1.5;
}

/* Win98 Window Frame */
.win98-frame {
  border: 2px solid;
  border-color: var(--border-light) var(--border-dark) var(--border-dark) var(--border-light);
  background: var(--bg-mid);
  padding: 2px;
}

.win98-titlebar {
  background: var(--win98-highlight);
  color: var(--win98-highlight-text);
  font-family: var(--font);
  font-size: 11px;
  font-weight: bold;
  padding: 3px 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.win98-titlebar .title-buttons {
  display: flex;
  gap: 2px;
}

.win98-btn {
  background: var(--bg-mid);
  border: 2px solid;
  border-color: var(--border-light) var(--border-dark) var(--border-dark) var(--border-light);
  color: var(--text-black);
  font-family: var(--font);
  font-size: 11px;
  padding: 2px 8px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.win98-btn:hover {
  background: var(--bg-light);
}

.win98-btn:active {
  border-color: var(--border-dark) var(--border-light) var(--border-light) var(--border-dark);
}

.win98-btn-primary {
  background: var(--win98-highlight);
  color: var(--win98-highlight-text);
  border-color: #0000CC var(--border-dark) var(--border-dark) #0000CC;
}

.win98-btn-primary:hover {
  background: #0000AA;
  color: #FFFFFF;
}

/* Navigation */
nav {
  background: var(--bg-dark);
  border-bottom: 2px solid var(--bg-black);
  padding: 0;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font);
  font-size: 16px;
  font-weight: bold;
  color: var(--win98-highlight-text);
  padding: 10px 20px;
  text-decoration: none;
  background: var(--win98-highlight);
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-right: 2px solid var(--bg-black);
}

.nav-logo .logo-bracket {
  color: #aaaaff;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: stretch;
}

.nav-links li a {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  text-decoration: none;
  color: var(--bg-light);
  font-family: var(--font);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-right: 1px solid var(--bg-darker);
  transition: background 0.1s;
}

.nav-links li a:hover {
  background: var(--bg-darker);
  color: #FFFFFF;
}

.nav-links li a.active {
  background: var(--bg-black);
  color: #FFFFFF;
}

.nav-cta {
  display: flex;
  align-items: center;
  padding: 8px 16px;
}

.nav-cta a {
  text-decoration: none;
}

/* Main container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  background: var(--bg-mid);
  border-bottom: 2px solid var(--bg-dark);
  padding: 60px 0 50px;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-tag {
  font-family: var(--font);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-light);
  border: 1px solid var(--border);
  display: inline-block;
  padding: 3px 8px;
  margin-bottom: 20px;
  background: var(--bg-light);
}

.hero h1 {
  font-family: var(--font);
  font-size: 52px;
  font-weight: bold;
  color: var(--text-black);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.hero h1 .cursor {
  display: inline-block;
  width: 4px;
  height: 52px;
  background: var(--text-black);
  vertical-align: bottom;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-sub {
  font-family: var(--font);
  font-size: 16px;
  color: var(--text-mid);
  max-width: 600px;
  margin-bottom: 8px;
  line-height: 1.6;
}

.hero-tagline {
  font-family: var(--font);
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 32px;
  border-left: 3px solid var(--bg-dark);
  padding-left: 12px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-stats {
  margin-top: 40px;
  display: flex;
  gap: 40px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat .stat-value {
  font-family: var(--font);
  font-size: 24px;
  font-weight: bold;
  color: var(--text-black);
}

.hero-stat .stat-label {
  font-family: var(--font);
  font-size: 11px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Section base */
section {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

section:last-of-type {
  border-bottom: none;
}

.section-title {
  font-family: var(--font);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.section-heading {
  font-family: var(--font);
  font-size: 28px;
  font-weight: bold;
  color: var(--text-black);
  margin-bottom: 8px;
}

.section-sub {
  font-family: var(--font);
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 32px;
  max-width: 600px;
}

/* Output Demo Cards */
.output-demo {
  background: var(--bg-light);
  border-bottom: 2px solid var(--bg-dark);
  padding: 48px 0;
}

.output-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.output-card {
  border: 2px solid var(--border-dark);
  background: var(--bg-mid);
  overflow: hidden;
}

.output-card .card-header {
  padding: 8px 12px;
  font-family: var(--font);
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.output-card.approved .card-header {
  background: var(--accent-green);
  color: #FFFFFF;
}

.output-card.rejected .card-header {
  background: var(--accent-red);
  color: #FFFFFF;
}

.output-card.insufficient .card-header {
  background: var(--accent-orange);
  color: #FFFFFF;
}

.output-card .card-body {
  padding: 12px;
  font-family: var(--font);
  font-size: 12px;
  color: var(--text-dark);
  background: var(--bg-light);
}

.output-card .card-body .output-line {
  border-bottom: 1px solid var(--border);
  padding: 5px 0;
  display: flex;
  gap: 8px;
}

.output-card .card-body .output-line:last-child {
  border-bottom: none;
}

.output-card .card-body .output-key {
  color: var(--text-light);
  min-width: 110px;
  flex-shrink: 0;
}

.output-card .card-body .output-val {
  color: var(--text-black);
  font-weight: bold;
  word-break: break-all;
}

.output-card .card-body .output-val.green { color: var(--accent-green); }
.output-card .card-body .output-val.red { color: var(--accent-red); }
.output-card .card-body .output-val.orange { color: var(--accent-orange); }

.cert-id {
  font-family: var(--font);
  font-size: 10px;
  color: var(--text-light);
  background: var(--bg-mid);
  padding: 4px 8px;
  border-top: 1px solid var(--border);
  letter-spacing: 0.5px;
}

/* How it works */
.how-it-works {
  background: var(--bg-light);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 2px solid var(--border-dark);
  background: var(--border-dark);
}

.step {
  background: var(--bg-mid);
  padding: 24px 20px;
  border-right: 1px solid var(--border-dark);
  position: relative;
}

.step:last-child {
  border-right: none;
}

.step-num {
  font-family: var(--font);
  font-size: 32px;
  font-weight: bold;
  color: var(--bg-dark);
  line-height: 1;
  margin-bottom: 8px;
}

.step-title {
  font-family: var(--font);
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-black);
  margin-bottom: 8px;
}

.step-desc {
  font-family: var(--font);
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.5;
}

.step-arrow {
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--win98-highlight);
  color: white;
  font-size: 11px;
  padding: 4px 6px;
  z-index: 2;
  font-weight: bold;
}

/* USP Table */
.usp-table-wrap {
  border: 2px solid var(--border-dark);
  overflow: hidden;
}

.usp-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font);
  font-size: 13px;
}

.usp-table th {
  background: var(--bg-darker);
  color: #FFFFFF;
  padding: 10px 16px;
  text-align: left;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--border-dark);
}

.usp-table th:first-child {
  width: 30%;
}

.usp-table th:nth-child(2) {
  background: var(--accent-red);
  opacity: 0.9;
}

.usp-table th:nth-child(3) {
  background: var(--accent-green);
}

.usp-table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.usp-table tr:last-child td {
  border-bottom: none;
}

.usp-table tr:nth-child(even) td {
  background: var(--bg-light);
}

.usp-table td.feature-col {
  color: var(--text-light);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.usp-table td.them-col {
  color: var(--accent-red);
}

.usp-table td.us-col {
  color: var(--accent-green);
  font-weight: bold;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 2px solid var(--border-dark);
  background: var(--border-dark);
}

.pricing-card {
  background: var(--bg-mid);
  padding: 0;
  border-right: 1px solid var(--border-dark);
  display: flex;
  flex-direction: column;
}

.pricing-card:last-child {
  border-right: none;
}

.pricing-card.featured {
  background: var(--bg-light);
}

.pricing-header {
  padding: 16px 20px;
  border-bottom: 2px solid var(--border-dark);
}

.pricing-tier {
  font-family: var(--font);
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-light);
  margin-bottom: 6px;
}

.pricing-card.featured .pricing-tier {
  color: var(--win98-highlight);
}

.pricing-price {
  font-family: var(--font);
  font-size: 36px;
  font-weight: bold;
  color: var(--text-black);
  line-height: 1;
}

.pricing-price span {
  font-size: 14px;
  font-weight: normal;
  color: var(--text-light);
}

.pricing-body {
  padding: 16px 20px;
  flex: 1;
}

.pricing-feature {
  font-family: var(--font);
  font-size: 12px;
  color: var(--text-dark);
  padding: 5px 0;
  border-bottom: 1px dotted var(--border);
  display: flex;
  gap: 8px;
}

.pricing-feature:last-child {
  border-bottom: none;
}

.pricing-feature .feat-icon {
  flex-shrink: 0;
  color: var(--accent-green);
  font-weight: bold;
}

.pricing-feature .feat-icon.x {
  color: var(--bg-dark);
}

.pricing-footer {
  padding: 16px 20px;
  border-top: 2px solid var(--border-dark);
}

/* Use cases */
.use-cases {
  background: var(--bg-light);
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.use-case-card {
  border: 1px solid var(--border);
  background: var(--bg-mid);
  padding: 16px;
}

.use-case-icon {
  font-family: var(--font);
  font-size: 20px;
  margin-bottom: 8px;
}

.use-case-title {
  font-family: var(--font);
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-black);
  margin-bottom: 6px;
}

.use-case-desc {
  font-family: var(--font);
  font-size: 11px;
  color: var(--text-mid);
  line-height: 1.5;
}

/* CTA Section */
.cta-section {
  background: var(--win98-highlight);
  color: #FFFFFF;
  padding: 48px 0;
  border-top: 2px solid #000088;
  border-bottom: 2px solid #000088;
}

.cta-section .section-heading {
  color: #FFFFFF;
}

.cta-section .section-sub {
  color: #aaaaff;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.win98-btn-light {
  background: var(--bg-mid);
  color: var(--text-black);
  border: 2px solid;
  border-color: var(--border-light) var(--border-dark) var(--border-dark) var(--border-light);
  font-family: var(--font);
  font-size: 12px;
  padding: 8px 20px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.win98-btn-light:hover {
  background: var(--bg-light);
}

/* Footer */
footer {
  background: var(--bg-darker);
  color: var(--bg-mid);
  padding: 32px 0;
  border-top: 2px solid var(--bg-black);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer-brand {
  font-family: var(--font);
}

.footer-logo {
  font-size: 18px;
  font-weight: bold;
  color: #FFFFFF;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 12px;
  color: var(--bg-mid);
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-by {
  font-size: 11px;
  color: var(--bg-dark);
}

.footer-col h4 {
  font-family: var(--font);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--bg-dark);
  margin-bottom: 12px;
  border-bottom: 1px solid var(--bg-dark);
  padding-bottom: 4px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 6px;
}

.footer-col ul li a {
  font-family: var(--font);
  font-size: 12px;
  color: var(--bg-mid);
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.footer-bottom {
  max-width: 1100px;
  margin: 24px auto 0;
  padding: 16px 20px 0;
  border-top: 1px solid var(--bg-darker);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font);
  font-size: 11px;
  color: var(--bg-dark);
}

/* Docs specific */
.docs-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  min-height: calc(100vh - 120px);
}

.docs-sidebar {
  background: var(--bg-mid);
  border-right: 2px solid var(--border-dark);
  padding: 16px 0;
  position: sticky;
  top: 0;
  height: fit-content;
}

.docs-sidebar h3 {
  font-family: var(--font);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-light);
  padding: 8px 16px 4px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}

.docs-sidebar a {
  display: block;
  padding: 6px 16px;
  font-family: var(--font);
  font-size: 12px;
  color: var(--text-dark);
  text-decoration: none;
  border-left: 3px solid transparent;
}

.docs-sidebar a:hover {
  background: var(--bg-light);
  border-left-color: var(--win98-highlight);
}

.docs-sidebar a.active {
  background: var(--bg-light);
  border-left-color: var(--win98-highlight);
  font-weight: bold;
}

.docs-content {
  padding: 32px 40px;
  background: var(--bg-light);
}

.docs-content h1 {
  font-family: var(--font);
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 8px;
  color: var(--text-black);
}

.docs-content h2 {
  font-family: var(--font);
  font-size: 18px;
  font-weight: bold;
  margin: 32px 0 12px;
  color: var(--text-black);
  border-bottom: 2px solid var(--border-dark);
  padding-bottom: 6px;
}

.docs-content h3 {
  font-family: var(--font);
  font-size: 14px;
  font-weight: bold;
  margin: 20px 0 8px;
  color: var(--text-black);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.docs-content p {
  font-family: var(--font);
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 12px;
}

.docs-content ul, .docs-content ol {
  padding-left: 20px;
  margin-bottom: 12px;
}

.docs-content ul li, .docs-content ol li {
  font-family: var(--font);
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 4px;
}

.code-block {
  background: var(--bg-black);
  color: #00FF00;
  font-family: var(--font);
  font-size: 12px;
  padding: 16px;
  margin: 12px 0;
  border: 1px solid var(--border-dark);
  overflow-x: auto;
  white-space: pre;
  line-height: 1.5;
}

.code-block .comment { color: #606060; }
.code-block .key { color: #00AAFF; }
.code-block .val { color: #FFFF00; }
.code-block .str { color: #FF8800; }
.code-block .num { color: #FF44FF; }

.endpoint-badge {
  display: inline-block;
  font-family: var(--font);
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 3px 8px;
  margin-right: 8px;
  color: #FFFFFF;
}

.endpoint-badge.post { background: var(--accent-green); }
.endpoint-badge.get { background: var(--win98-highlight); }
.endpoint-badge.put { background: var(--accent-orange); }
.endpoint-badge.delete { background: var(--accent-red); }

.endpoint-path {
  font-family: var(--font);
  font-size: 14px;
  font-weight: bold;
  color: var(--text-black);
}

.endpoint-row {
  border: 1px solid var(--border);
  background: var(--bg-mid);
  padding: 12px 16px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.endpoint-desc {
  font-family: var(--font);
  font-size: 12px;
  color: var(--text-light);
  margin-left: auto;
}

.evidence-level {
  border: 1px solid var(--border);
  background: var(--bg-mid);
  margin-bottom: 8px;
  padding: 12px 16px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ev-badge {
  font-family: var(--font);
  font-size: 18px;
  font-weight: bold;
  color: var(--win98-highlight);
  min-width: 32px;
  flex-shrink: 0;
}

.ev-content h4 {
  font-family: var(--font);
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 4px;
}

.ev-content p {
  font-family: var(--font);
  font-size: 12px;
  color: var(--text-mid);
  margin: 0;
}

/* Standards table */
.std-search-box {
  width: 100%;
  font-family: var(--font);
  font-size: 13px;
  padding: 8px 12px;
  border: 2px solid var(--border-dark);
  background: var(--bg-light);
  color: var(--text-black);
  margin-bottom: 16px;
  box-sizing: border-box;
}

.std-search-box:focus {
  outline: none;
  border-color: var(--win98-highlight);
}

.std-table-wrap {
  border: 2px solid var(--border-dark);
  overflow: hidden;
}

.std-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font);
  font-size: 12px;
}

.std-table th {
  background: var(--bg-darker);
  color: #FFFFFF;
  padding: 10px 14px;
  text-align: left;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--border-dark);
  white-space: nowrap;
}

.std-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.std-table tr:last-child td {
  border-bottom: none;
}

.std-table tr:nth-child(even) td {
  background: var(--bg-mid);
}

.std-table td.std-id {
  font-weight: bold;
  color: var(--win98-highlight);
  white-space: nowrap;
}

.std-table td.std-status {
  white-space: nowrap;
}

.status-badge {
  display: inline-block;
  font-family: var(--font);
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 2px 6px;
  color: #FFFFFF;
  letter-spacing: 0.5px;
}

.status-badge.active { background: var(--accent-green); }
.status-badge.beta { background: var(--accent-orange); }
.status-badge.planned { background: var(--bg-dark); }

/* About page */
.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
}

.mission-box {
  border: 2px solid var(--border-dark);
  background: var(--bg-mid);
  padding: 24px;
  margin-bottom: 24px;
}

.mission-box blockquote {
  font-family: var(--font);
  font-size: 20px;
  font-weight: bold;
  color: var(--text-black);
  line-height: 1.4;
  border-left: 4px solid var(--win98-highlight);
  padding-left: 16px;
  margin: 0;
}

.value-list {
  list-style: none;
  margin-top: 16px;
}

.value-list li {
  font-family: var(--font);
  font-size: 13px;
  color: var(--text-dark);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 10px;
}

.value-list li .v-key {
  font-weight: bold;
  min-width: 160px;
  color: var(--text-black);
}

.contact-box {
  border: 2px solid var(--border-dark);
  background: var(--bg-mid);
  padding: 20px;
}

.contact-box h3 {
  font-family: var(--font);
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
}

.contact-item {
  font-family: var(--font);
  font-size: 12px;
  color: var(--text-dark);
  padding: 6px 0;
  border-bottom: 1px dotted var(--border);
  display: flex;
  gap: 8px;
}

.contact-item:last-child { border-bottom: none; }
.contact-item .c-label { color: var(--text-light); min-width: 80px; }

/* Page header */
.page-header {
  background: var(--bg-mid);
  border-bottom: 2px solid var(--border-dark);
  padding: 32px 0;
}

.page-header h1 {
  font-family: var(--font);
  font-size: 32px;
  font-weight: bold;
  color: var(--text-black);
  margin-bottom: 6px;
}

.page-header p {
  font-family: var(--font);
  font-size: 13px;
  color: var(--text-light);
}

.breadcrumb {
  font-family: var(--font);
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.breadcrumb a {
  color: var(--text-light);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Inline code */
code {
  font-family: var(--font);
  background: var(--bg-mid);
  border: 1px solid var(--border);
  padding: 1px 4px;
  font-size: 12px;
  color: var(--win98-highlight);
}

/* Responsive */
@media (max-width: 768px) {
  .output-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; background: none; gap: 8px; border: none; }
  .pricing-card { border: 2px solid var(--border-dark); }
  .use-cases-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 32px; }
  .docs-layout { grid-template-columns: 1fr; }
  .docs-sidebar { position: static; border-right: none; border-bottom: 2px solid var(--border-dark); }
  .about-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
