:root {
  color: #0a2540;
  background: #f5f7fa;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  margin: 0;
  color: #0a2540;
  background: #f5f7fa;
}

button, input, select { font: inherit; }

.topbar {
  position: sticky;
  z-index: 50;
  top: 0;
  height: 4rem;
  border-bottom: 1px solid rgba(10, 37, 64, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 2px rgba(10, 37, 64, 0.04);
  backdrop-filter: blur(12px);
}

.topbar-inner {
  display: flex;
  width: min(80rem, calc(100% - 3rem));
  height: 100%;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #0a2540;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 0.45rem;
  color: #fff;
  background: #1e5bb8;
  font-size: 1rem;
  letter-spacing: -0.04em;
}

.integration-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #8b96a3;
  font-size: 0.8rem;
}

.integration-label strong {
  padding-left: 0.75rem;
  border-left: 1px solid rgba(10, 37, 64, 0.16);
  color: #1f3a57;
  font-weight: 600;
}

main {
  width: min(80rem, calc(100% - 3rem));
  margin: 0 auto;
  padding: 3rem 0 2rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 5rem);
  border-radius: 1rem;
  color: #fff;
  background:
    radial-gradient(circle at 88% 20%, rgba(95, 160, 232, 0.28), transparent 24rem),
    linear-gradient(125deg, #0a2540 0%, #0f2f50 62%, #13447a 100%);
  box-shadow: 0 8px 24px rgba(10, 37, 64, 0.14);
}

.hero::after {
  position: absolute;
  right: -7rem;
  bottom: -11rem;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 4rem rgba(255, 255, 255, 0.025),
    0 0 0 8rem rgba(255, 255, 255, 0.018);
  content: "";
}

.eyebrow {
  margin: 0;
  color: #1e5bb8;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.hero .eyebrow { color: #9cc8f6; }

h1 {
  max-width: 58rem;
  margin: 1.1rem 0 1.35rem;
  font-size: clamp(2.7rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

h2 {
  margin: 0.35rem 0 0;
  color: #0a2540;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.summary {
  position: relative;
  z-index: 1;
  max-width: 43rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.65;
}

.hero-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2rem;
}

.hero-meta span, .environment-badge {
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.75rem;
  font-weight: 600;
}

.panel {
  margin-top: 1.5rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid rgba(10, 37, 64, 0.08);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 4px 12px rgba(10, 37, 64, 0.06);
}

.panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(10, 37, 64, 0.08);
}

.environment-badge {
  border-color: rgba(30, 91, 184, 0.18);
  color: #1e5bb8;
  background: #eef5ff;
  white-space: nowrap;
}

.control-grid {
  display: grid;
  grid-template-columns: minmax(10rem, 0.7fr) minmax(15rem, 2fr);
  gap: 0.85rem 1.25rem;
  align-items: center;
}

label {
  color: #1f3a57;
  font-size: 0.78rem;
  font-weight: 600;
}

input, select, button {
  min-height: 3rem;
  border: 1px solid rgba(10, 37, 64, 0.16);
  border-radius: 0.5rem;
}

input, select {
  min-width: 0;
  padding: 0 0.9rem;
  color: #0a2540;
  background: #fff;
}

input:hover, select:hover { border-color: rgba(10, 37, 64, 0.32); }

input:focus, select:focus, button:focus-visible {
  border-color: #1e5bb8;
  outline: 3px solid rgba(30, 91, 184, 0.15);
  outline-offset: 1px;
}

button {
  padding: 0 1.2rem;
  border-color: #1e5bb8;
  color: #fff;
  background: #1e5bb8;
  font-weight: 600;
  cursor: pointer;
  transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

button:hover:not(:disabled) {
  border-color: #164b9c;
  background: #164b9c;
  transform: translateY(-1px);
}

button:disabled { cursor: wait; opacity: 0.48; }

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.actions button:not(:first-child), .detail-button, .detail-header button {
  border-color: rgba(10, 37, 64, 0.16);
  color: #0a2540;
  background: #fff;
}

.actions button:not(:first-child):hover:not(:disabled),
.detail-button:hover:not(:disabled),
.detail-header button:hover:not(:disabled) {
  border-color: #1e5bb8;
  color: #1e5bb8;
  background: #f5f8fc;
}

.debug-panel {
  margin-top: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(10, 37, 64, 0.1);
  border-radius: 0.75rem;
  background: #fafafa;
}

.debug-panel summary {
  position: relative;
  display: flex;
  min-height: 4rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 3.5rem 0.9rem 1rem;
  color: #1f3a57;
  cursor: pointer;
  list-style: none;
}

.debug-panel summary::-webkit-details-marker { display: none; }

.debug-panel summary::after {
  position: absolute;
  right: 1rem;
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  place-items: center;
  border: 1px solid rgba(10, 37, 64, 0.12);
  border-radius: 50%;
  color: #1e5bb8;
  content: "+";
  font-size: 1.2rem;
  line-height: 1;
}

.debug-panel[open] summary::after { content: "−"; }
.debug-panel:not([open]) .debug-content { display: none; }
.debug-panel summary span { font-size: 0.86rem; font-weight: 600; }
.debug-panel summary small { color: #8b96a3; font-size: 0.75rem; }

.debug-content {
  padding: 0 1rem 1rem;
  border-top: 1px solid rgba(10, 37, 64, 0.08);
}

.debug-content .status { margin-top: 1rem; }

.status {
  margin-top: 1.5rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(10, 37, 64, 0.08);
  border-left: 0.25rem solid #8b96a3;
  border-radius: 0.35rem;
  color: #5c6773;
  background: #fafafa;
  font-size: 0.86rem;
}

.status.running { border-left-color: #d69e2e; color: #805b12; background: #fffaf0; }
.status.passed { border-left-color: #1e8e68; color: #176b51; background: #f0faf6; }
.status.failed { border-left-color: #c84949; color: #963737; background: #fff5f5; }

ol { margin: 1rem 0 0; padding: 0; list-style: none; }

li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(10, 37, 64, 0.08);
  color: #5c6773;
  font-size: 0.88rem;
}

li strong { color: #1e8e68; font-weight: 600; }

dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 1.5rem 0 0;
  overflow: hidden;
  border: 1px solid rgba(10, 37, 64, 0.08);
  border-radius: 0.75rem;
  background: rgba(10, 37, 64, 0.08);
}

dl div { padding: 1rem; background: #fafafa; }
dt { color: #8b96a3; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; }
dd { margin: 0.4rem 0 0; color: #1f3a57; line-height: 1.45; }

.quote-panel {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(10, 37, 64, 0.08);
}

.quote-intro { margin: 0.55rem 0 1.5rem; color: #5c6773; }

.vehicle-picker {
  padding: 1.25rem;
  border: 1px solid rgba(30, 91, 184, 0.16);
  border-radius: 0.75rem;
  background: #f5f8fc;
}

.vehicle-picker label, .quote-fields label { display: block; margin-bottom: 0.5rem; }
.vehicle-picker input { width: 100%; font-size: 1rem; }

.quote-fields {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 0.75rem;
  margin: 0.75rem 0 1rem;
}

.quote-fields input, .quote-fields select, .quote-submit { width: 100%; }
.quote-submit { min-height: 3.25rem; }

.quote-progress { margin-top: 1.5rem; }

.quote-vehicle-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(10, 37, 64, 0.08);
  border-radius: 0.75rem 0.75rem 0 0;
  background: #fafafa;
}

.quote-vehicle-summary span, .global-status span {
  color: #8b96a3;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.quote-vehicle-summary strong { font-size: 1rem; }

.global-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(10, 37, 64, 0.08);
  border-top: 0;
  background: #0a2540;
}

.global-status span { color: rgba(255, 255, 255, 0.58); }
.global-status strong { display: block; margin-top: 0.25rem; color: #fff; }

.global-status-actions, .insurer-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.global-status-actions button {
  min-height: 2.35rem;
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  background: transparent;
}

.global-status-actions button:hover:not(:disabled) {
  border-color: #fff;
  color: #0a2540;
  background: #fff;
}

.status-pulse {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: #69ddb5;
  box-shadow: 0 0 0 0.4rem rgba(105, 221, 181, 0.14);
}

.insurer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-top: 0.85rem;
}

.insurer-card {
  overflow: hidden;
  border: 1px solid rgba(10, 37, 64, 0.1);
  border-radius: 0.85rem;
  background: #fff;
  box-shadow: 0 1px 2px rgba(10, 37, 64, 0.04);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.insurer-card:hover {
  border-color: rgba(30, 91, 184, 0.3);
  box-shadow: 0 4px 12px rgba(10, 37, 64, 0.06);
}

.insurer-summary {
  display: flex;
  min-height: 7.5rem;
  align-items: center;
  gap: 1.25rem;
  padding-right: 1.25rem;
}

.insurer-logo {
  display: grid;
  width: 7rem;
  min-height: 7.5rem;
  align-self: stretch;
  flex: 0 0 7rem;
  place-items: center;
  color: #fff;
  font-family: Arial, sans-serif;
  font-weight: 800;
}

.logo-axa { background: #164194; }
.logo-gnp { background: #ef6c00; }
.logo-chubb { color: #111; background: linear-gradient(90deg, #f5d000, #f28c28, #e64b57, #7c58a5, #3a8ec1); }
.logo-qualitas { background: linear-gradient(135deg, #b10b72, #00a6b2); }
.logo-default { color: #0a2540; background: #e7edf4; }

.insurer-copy { flex: 1; padding: 1rem 0; }
.insurer-copy small { display: block; color: #8b96a3; font-size: 0.7rem; }
.insurer-copy strong { display: block; margin-top: 0.15rem; }
.insurer-copy span { display: block; margin-top: 0.35rem; color: #1f3a57; font-size: 0.82rem; font-weight: 600; }

.insurer-copy .insurer-progress {
  margin-top: 0.75rem;
  color: #1e8e68;
  font-weight: 600;
}

.premium-grid {
  display: grid;
  flex: 0 1 34rem;
  grid-template-columns: repeat(4, minmax(6.4rem, 1fr));
  gap: 0.5rem;
}

.premium-grid div {
  min-width: 0;
  padding: 0.7rem;
  border: 1px solid rgba(10, 37, 64, 0.08);
  border-radius: 0.5rem;
  background: #fafafa;
}

.premium-grid small {
  display: block;
  color: #8b96a3;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
}

.premium-grid strong {
  display: block;
  margin-top: 0.3rem;
  color: #0a2540;
  font-size: 0.82rem;
  white-space: nowrap;
}

.detail-button {
  min-height: 2.6rem;
  white-space: nowrap;
}

.insurer-actions { flex-direction: column; align-items: stretch; margin-left: auto; }

.quote-detail, .inline-detail-state {
  border-top: 1px solid rgba(10, 37, 64, 0.1);
  background: #fafafa;
}

.inline-detail-state { padding: 1rem 1.25rem; color: #5c6773; font-size: 0.85rem; }

.detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
  border-bottom: 1px solid rgba(10, 37, 64, 0.08);
}

.detail-header span { color: #1e5bb8; font-size: 0.78rem; font-weight: 700; }
.detail-header h3 { margin: 0.2rem 0 0; font-size: 1.35rem; letter-spacing: -0.02em; }
.detail-header button { min-height: 2.5rem; }

.json-response[class*="language-"] {
  max-height: 32rem;
  margin: 0;
  padding: 1.25rem;
  overflow: auto;
  border-radius: 0;
  font-size: 0.78rem;
  line-height: 1.65;
}

.global-json-response[class*="language-"] {
  border: 1px solid rgba(10, 37, 64, 0.08);
  border-top: 0;
}

.status-json-response[class*="language-"] {
  border-top: 1px solid rgba(10, 37, 64, 0.1);
}

.integration-docs {
  margin-top: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(10, 37, 64, 0.08);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 4px 12px rgba(10, 37, 64, 0.06);
}

.docs-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-bottom: 1px solid rgba(10, 37, 64, 0.08);
}

.docs-heading > div:first-child { max-width: 44rem; }
.docs-heading p:not(.eyebrow) { margin: 0.75rem 0 0; color: #5c6773; line-height: 1.6; }

.flow-key {
  display: grid;
  flex: 0 0 auto;
  gap: 0.5rem;
}

.flow-key span {
  position: relative;
  padding-left: 1rem;
  color: #5c6773;
  font-size: 0.75rem;
  font-weight: 600;
}

.flow-key span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #1e5bb8;
  content: "";
  transform: translateY(-50%);
}

.code-tabs {
  display: flex;
  gap: 0.35rem;
  padding: 1rem 1.25rem 0;
  overflow-x: auto;
  border-bottom: 1px solid rgba(10, 37, 64, 0.08);
  background: #fafafa;
}

.code-tab {
  min-height: 2.65rem;
  padding: 0 1rem;
  border-color: transparent;
  border-radius: 0.5rem 0.5rem 0 0;
  color: #5c6773;
  background: transparent;
  font-size: 0.82rem;
  white-space: nowrap;
}

.code-tab:hover:not(:disabled) {
  border-color: transparent;
  color: #1e5bb8;
  background: #eef5ff;
  transform: none;
}

.code-tab.active {
  border-color: rgba(10, 37, 64, 0.08);
  border-bottom-color: #fff;
  color: #1e5bb8;
  background: #fff;
}

.integration-steps {
  display: grid;
  gap: 0.75rem;
  padding: 1.25rem;
  background: #fff;
}

.integration-step {
  overflow: hidden;
  border: 1px solid rgba(10, 37, 64, 0.1);
  border-radius: 0.75rem;
  background: #fff;
}

.integration-step summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  min-height: 5rem;
  align-items: center;
  padding: 0.9rem 1rem;
  cursor: pointer;
  list-style: none;
}

.integration-step summary::-webkit-details-marker { display: none; }
.integration-step:not([open]) .step-code { display: none; }
.integration-step[open] { border-color: rgba(30, 91, 184, 0.3); }

.step-number {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #1e5bb8;
  font-size: 0.8rem;
  font-weight: 700;
}

.integration-step summary strong { display: block; color: #0a2540; font-size: 0.92rem; }
.integration-step summary small { display: block; margin-top: 0.25rem; color: #8b96a3; line-height: 1.4; }

.step-action {
  color: #1e5bb8;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.integration-step[open] .step-action { font-size: 0; }
.integration-step[open] .step-action::after { content: "Ocultar código"; font-size: 0.75rem; }

.step-code { border-top: 1px solid rgba(10, 37, 64, 0.08); }

.code-glossary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  border: 0;
  border-top: 1px solid rgba(10, 37, 64, 0.08);
  border-radius: 0;
  background: rgba(10, 37, 64, 0.08);
}

.code-glossary div { padding: 1rem; background: #fff; }
.code-glossary dt { color: #1e5bb8; }
.code-glossary dd { color: #5c6773; font-size: 0.8rem; }

.code-panel { background: #fff; }
.code-panel[hidden] { display: none; }

.code-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(10, 37, 64, 0.08);
  border-bottom: 1px solid rgba(10, 37, 64, 0.08);
}

.code-caption strong { font-size: 0.9rem; }
.code-caption span { color: #8b96a3; font-size: 0.75rem; }

.code-panel pre {
  margin: 0;
  padding: 1.5rem;
  overflow-x: auto;
  background: #f6f8fa;
}

.code-panel code[class*="language-"] {
  padding: 0;
  color: #1f3a57;
  background: transparent;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.82rem;
  line-height: 1.7;
}

.openapi-reference {
  margin: 0 1.25rem 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(10, 37, 64, 0.1);
  border-radius: 0.75rem;
  background: #fff;
}

.openapi-reference > summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  min-height: 5rem;
  align-items: center;
  padding: 0.9rem 1rem;
  cursor: pointer;
  list-style: none;
}

.openapi-reference > summary::-webkit-details-marker { display: none; }
.openapi-reference:not([open]) .openapi-content { display: none; }
.openapi-reference[open] { border-color: rgba(30, 91, 184, 0.3); }
.openapi-reference summary strong { display: block; font-size: 0.92rem; }
.openapi-reference summary small { display: block; margin-top: 0.25rem; color: #8b96a3; }
.openapi-reference .step-number { width: 2.4rem; border-radius: 0.45rem; }

.openapi-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-top: 1px solid rgba(10, 37, 64, 0.08);
  border-bottom: 1px solid rgba(10, 37, 64, 0.08);
  background: #f5f8fc;
}

.openapi-toolbar p { margin: 0; color: #5c6773; font-size: 0.8rem; }
.openapi-toolbar a { color: #1e5bb8; font-size: 0.78rem; font-weight: 600; white-space: nowrap; }

#swagger-ui { padding: 0.5rem 1rem 1rem; }
#swagger-ui .topbar, #swagger-ui .information-container .link { display: none; }
#swagger-ui .wrapper { max-width: none; padding: 0; }
#swagger-ui .info { margin: 1.5rem 0; }
#swagger-ui .info .title, #swagger-ui .opblock-tag, #swagger-ui .opblock-summary-description { font-family: inherit; color: #0a2540; }
#swagger-ui .scheme-container { margin: 0 0 1rem; padding: 1rem; box-shadow: none; background: #fafafa; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 0 0;
  color: #8b96a3;
  font-size: 0.78rem;
}

footer strong { color: #1f3a57; white-space: nowrap; }

@media (max-width: 1024px) {
  .insurer-summary { flex-wrap: wrap; }
  .premium-grid { order: 3; flex: 1 0 calc(100% - 8.25rem); margin: 0 0 1rem 8.25rem; }
  .insurer-actions { margin-left: 0; }
}

@media (max-width: 640px) {
  .topbar-inner, main { width: min(100% - 2rem, 80rem); }
  .integration-label span { display: none; }
  main { padding-top: 1rem; }
  .hero { padding: 2rem 1.5rem; }
  h1 { font-size: 2.55rem; }
  .panel { padding: 1.25rem; }
  .panel-heading { align-items: flex-start; flex-direction: column; }
  .debug-panel summary { align-items: flex-start; flex-direction: column; gap: 0.2rem; }
  .control-grid, .quote-fields, dl { grid-template-columns: 1fr; }
  .actions { flex-direction: column; }
  .actions button { width: 100%; }
  .quote-vehicle-summary { align-items: flex-start; flex-direction: column; }
  .global-status { align-items: flex-start; }
  .insurer-summary { align-items: stretch; flex-direction: column; padding: 0 0 1rem; }
  .insurer-logo { width: 100%; min-height: 4.5rem; flex-basis: 4.5rem; }
  .insurer-copy { padding: 0 1rem; }
  .premium-grid { order: 0; width: calc(100% - 2rem); flex: none; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 0 1rem; }
  .insurer-actions { width: calc(100% - 2rem); flex-direction: row; margin: 0 1rem; }
  .insurer-actions .detail-button { flex: 1; }
  .detail-header { align-items: flex-start; flex-direction: column; }
  .docs-heading { align-items: flex-start; flex-direction: column; }
  .code-tabs { padding-inline: 0.75rem; }
  .integration-steps { padding: 0.75rem; }
  .integration-step summary { grid-template-columns: auto minmax(0, 1fr); }
  .step-action { display: none; }
  .code-glossary { grid-template-columns: 1fr; }
  .code-caption { align-items: flex-start; flex-direction: column; gap: 0.25rem; padding-inline: 1rem; }
  .code-panel pre { padding: 1rem; }
  .openapi-reference { margin: 0 0.75rem 0.75rem; }
  .openapi-reference > summary { grid-template-columns: auto minmax(0, 1fr); }
  .openapi-toolbar { align-items: flex-start; flex-direction: column; }
  #swagger-ui { padding-inline: 0.25rem; }
  footer { flex-direction: column; gap: 0.5rem; }
}
