/*
  FAZABIZ Docs (static)
  - Docs UI inspired by modern SaaS docs (search topbar, sidebar nav, page TOC)
  - No external dependencies
*/

body.docs {
  background: #0b0c10;
}

body.docs main {
  display: block;
}

.docs-topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(11, 12, 16, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.docs-topbar-inner {
  max-width: 1480px;
  margin-inline: auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.docs-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
  flex: 0 0 auto;
}

.docs-brand img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.docs-brand span {
  font-weight: 850;
  letter-spacing: -0.02em;
  color: var(--text);
}

.docs-search {
  position: relative;
  flex: 1 1 auto;
  max-width: 720px;
}

.docs-search input {
  width: 100%;
  padding-block: 11px;
  padding-inline-start: 38px;
  padding-inline-end: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 14px;
  outline: none;
}

.docs-search input::placeholder {
  color: rgba(234, 240, 255, 0.55);
}

.docs-search input:focus {
  border-color: rgba(59, 130, 246, 0.6);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.14);
}

.docs-search-icon {
  position: absolute;
  inset-inline-start: 12px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.85;
  color: rgba(234, 240, 255, 0.85);
}

.docs-search-kbd {
  position: absolute;
  inset-inline-end: 10px;
  top: 50%;
  transform: translateY(-50%);
  padding: 3px 8px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(234, 240, 255, 0.8);
  font-size: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.docs-toplinks {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 13px;
}

.docs-toplinks a:hover {
  color: var(--text);
}

.docs-toplinks .docs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 700;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}

.docs-toplinks .docs-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.docs-toplinks .docs-btn:focus-visible {
  outline: var(--focus);
  outline-offset: 2px;
}

.docs-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.docs-menu-toggle:focus-visible {
  outline: var(--focus);
  outline-offset: 2px;
}

.docs-tabs {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.docs-tabs-inner {
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  overflow: auto;
}

.docs-tab {
  padding: 14px 12px;
  color: rgba(234, 240, 255, 0.72);
  border-bottom: 2px solid transparent;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.docs-tab:hover {
  color: var(--text);
}

.docs-tab[aria-current="page"] {
  color: var(--text);
  border-bottom-color: rgba(234, 240, 255, 0.86);
}

.docs-tab:focus-visible {
  outline: var(--focus);
  outline-offset: 3px;
  border-radius: 10px;
}

.docs-shell {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr) 280px;
  min-height: calc(100vh - 110px);
}

.docs-sidebar {
  border-inline-end: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
}

.docs-sidebar-inner {
  position: sticky;
  top: 112px;
  height: calc(100vh - 112px);
  overflow: auto;
  padding: 18px 14px;
}

.docs-side-title {
  margin: 0 0 12px 6px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(234, 240, 255, 0.52);
}

.docs-nav {
  display: grid;
  gap: 10px;
}

.docs-nav-group {
  border-radius: 16px;
}

.docs-nav-group summary {
  list-style: none;
}

.docs-nav-group summary::-webkit-details-marker {
  display: none;
}

.docs-nav-summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 14px;
  color: rgba(234, 240, 255, 0.82);
  user-select: none;
}

.docs-nav-summary:hover {
  background: rgba(255, 255, 255, 0.04);
}

.docs-nav-summary:focus-visible {
  outline: var(--focus);
  outline-offset: 2px;
}

.docs-nav-summary-icon {
  width: 18px;
  height: 18px;
  opacity: 0.9;
}

.docs-nav-summary-label {
  font-weight: 750;
  letter-spacing: -0.01em;
  flex: 1 1 auto;
}

.docs-nav-chevron {
  width: 16px;
  height: 16px;
  opacity: 0.6;
  transition: transform 140ms ease;
}

.docs-nav-group[open] .docs-nav-chevron {
  transform: rotate(180deg);
}

.docs-nav-links {
  display: grid;
  gap: 6px;
  padding: 6px 6px 8px 6px;
  padding-inline-start: 34px;
}

.docs-nav-links a {
  padding: 9px 10px;
  border-radius: 12px;
  color: rgba(234, 240, 255, 0.68);
  border: 1px solid transparent;
  transition: background 120ms ease, border-color 120ms ease, transform 120ms ease, color 120ms ease;
}

.docs-nav-links a:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  transform: translateY(-1px);
}

.docs-nav-links a:focus-visible {
  outline: var(--focus);
  outline-offset: 2px;
}

.docs-nav-links a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.docs-nav-soon {
  padding: 9px 10px;
  border-radius: 12px;
  color: rgba(234, 240, 255, 0.45);
  border: 1px dashed rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.02);
}

.docs-main {
  padding: 28px 26px 56px 26px;
}

.docs-main-inner {
  max-width: 860px;
}

.docs-hero {
  position: relative;
  border-radius: 26px;
  padding: 34px 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(11, 12, 16, 0.25), rgba(11, 12, 16, 0.94)),
    url("./Fazabiz-cover.png");
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.docs-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 420px at 20% 0%, rgba(59, 130, 246, 0.22), transparent 60%),
    radial-gradient(720px 360px at 82% 10%, rgba(16, 185, 129, 0.14), transparent 55%);
  pointer-events: none;
  animation: docsHeroGlow 14s ease-in-out infinite;
}

.docs-hero > * {
  position: relative;
  z-index: 1;
}

@keyframes docsHeroGlow {
  0%,
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    opacity: 0.92;
    transform: translate3d(0, -10px, 0) scale(1.03);
  }
}

@media (prefers-reduced-motion: reduce) {
  .docs-hero::after {
    animation: none;
  }
}

.docs-hero-kicker {
  margin: 0 0 10px 0;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(234, 240, 255, 0.7);
}

.docs-hero .docs-title-row h1 {
  font-size: 48px;
}

@media (max-width: 560px) {
  .docs-hero {
    padding: 26px 20px;
    border-radius: 22px;
  }

  .docs-hero .docs-title-row h1 {
    font-size: 36px;
  }
}

.docs-card-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 980px) {
  .docs-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .docs-card-grid {
    grid-template-columns: 1fr;
  }
}

.docs-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 14px 16px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(234, 240, 255, 0.92);
  text-decoration: none;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
  overflow: hidden;
}

.docs-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(600px 180px at 30% 0%, rgba(59, 130, 246, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 160ms ease;
  pointer-events: none;
}

.docs-card:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.18);
}

.docs-card:hover::after {
  opacity: 1;
}

.docs-card:focus-visible {
  outline: var(--focus);
  outline-offset: 3px;
}

.docs-card-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.docs-card-title::after {
  content: "→";
  color: rgba(234, 240, 255, 0.62);
  transform: translateY(-1px);
}

[dir="rtl"] .docs-card-title::after {
  content: "←";
}

.docs-card small {
  color: rgba(234, 240, 255, 0.6);
  font-size: 13px;
  line-height: 1.35;
}

.docs-reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.docs-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .docs-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.docs-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(234, 240, 255, 0.55);
  font-size: 13px;
  margin-bottom: 14px;
}

.docs-breadcrumb a {
  color: rgba(234, 240, 255, 0.65);
  text-decoration: none;
}

.docs-breadcrumb a:hover {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.docs-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.docs-title-row h1 {
  margin: 0;
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

@media (max-width: 560px) {
  .docs-title-row h1 {
    font-size: 34px;
  }
}

.docs-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.docs-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(234, 240, 255, 0.92);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
  cursor: pointer;
}

.docs-action:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.docs-action:focus-visible {
  outline: var(--focus);
  outline-offset: 2px;
}

.docs-lead {
  margin: 12px 0 0 0;
  color: rgba(234, 240, 255, 0.7);
  font-size: 16px;
  max-width: 80ch;
}

.docs-prose {
  margin-top: 28px;
}

.docs-prose h2 {
  margin: 26px 0 10px 0;
  font-size: 24px;
  letter-spacing: -0.02em;
}

.docs-prose h3 {
  margin: 18px 0 10px 0;
  font-size: 16px;
}

.docs-prose p {
  margin: 0 0 12px 0;
  color: rgba(234, 240, 255, 0.7);
  max-width: 86ch;
}

.docs-prose ul,
.docs-prose ol {
  margin: 0 0 12px 0;
  padding-inline-start: 22px;
  color: rgba(234, 240, 255, 0.7);
}

.docs-prose li {
  margin: 6px 0;
}

.docs-prose strong {
  color: rgba(234, 240, 255, 0.92);
}

.docs-prose a {
  color: rgba(147, 197, 253, 0.95);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.docs-prose a:hover {
  color: rgba(234, 240, 255, 0.95);
}

.docs-prose figure {
  margin: 16px 0;
}

.docs-figure {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.docs-figure img {
  width: 100%;
  height: auto;
}

.docs-figure img[data-doc-lightbox] {
  cursor: zoom-in;
}

.docs-figure figcaption {
  padding: 10px 12px 12px 12px;
  color: rgba(234, 240, 255, 0.6);
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.docs-screenshot-placeholder {
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  padding: 18px;
  color: rgba(234, 240, 255, 0.65);
  background: radial-gradient(520px 280px at 30% 0%, rgba(59, 130, 246, 0.14), transparent 60%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.04) 10px, rgba(255, 255, 255, 0.02) 10px, rgba(255, 255, 255, 0.02) 20px);
}

.docs-screenshot-placeholder-inner {
  max-width: 520px;
  text-align: center;
}

.docs-screenshot-placeholder strong {
  color: rgba(234, 240, 255, 0.92);
}

.docs-screenshot-placeholder code {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(234, 240, 255, 0.82);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
}

.docs-prose pre {
  margin: 12px 0;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
  overflow: auto;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.docs-prose code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.94em;
}

.docs-prose :not(pre) > code {
  padding: 2px 6px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(234, 240, 255, 0.92);
}

.docs-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}

.docs-lightbox.is-open {
  display: grid;
  place-items: center;
}

.docs-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 4, 6, 0.72);
  backdrop-filter: blur(12px);
  animation: docsFadeIn 160ms ease;
}

.docs-lightbox-figure {
  position: relative;
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  margin: 0;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(11, 12, 16, 0.95);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  animation: docsZoomIn 170ms ease;
}

.docs-lightbox-img {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.03);
}

.docs-lightbox-caption {
  padding: 12px 14px 14px 14px;
  color: rgba(234, 240, 255, 0.7);
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.docs-lightbox-close {
  position: absolute;
  inset-inline-end: 12px;
  inset-block-start: 12px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(234, 240, 255, 0.92);
  cursor: pointer;
}

.docs-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.docs-lightbox-close:focus-visible {
  outline: var(--focus);
  outline-offset: 2px;
}

body.docs-lightbox-open {
  overflow: hidden;
}

@keyframes docsFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes docsZoomIn {
  from {
    opacity: 0;
    transform: translateY(4px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .docs-lightbox-backdrop,
  .docs-lightbox-figure {
    animation: none;
  }
}

.docs-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  margin: 26px 0;
}

.docs-toc {
  border-inline-start: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

.docs-toc-inner {
  position: sticky;
  top: 112px;
  height: calc(100vh - 112px);
  overflow: auto;
  padding: 18px 18px 22px 18px;
}

.docs-toc-title {
  margin: 0 0 12px 0;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(234, 240, 255, 0.52);
}

.docs-toc-links {
  display: grid;
  gap: 6px;
}

.docs-toc-links a {
  color: rgba(234, 240, 255, 0.62);
  font-size: 13px;
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 12px;
  border: 1px solid transparent;
}

.docs-toc-links a:hover {
  color: rgba(234, 240, 255, 0.92);
  background: rgba(255, 255, 255, 0.04);
}

.docs-toc-links a.is-active {
  color: rgba(234, 240, 255, 0.96);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
}

.docs-toc-links a[data-level="3"] {
  margin-inline-start: 10px;
  font-size: 12px;
  opacity: 0.9;
}

.docs-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  z-index: 90;
}

.docs-toast {
  position: fixed;
  inset-inline: 18px;
  bottom: 18px;
  z-index: 200;
  display: none;
  max-width: 520px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(17, 20, 26, 0.92);
  color: rgba(234, 240, 255, 0.92);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

.docs-toast.is-visible {
  display: block;
}

.docs-search-results {
  position: absolute;
  top: calc(100% + 10px);
  inset-inline: 0;
  z-index: 120;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(17, 20, 26, 0.96);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  display: none;
}

.docs-search-results.is-open {
  display: block;
}

.docs-search-results-header {
  padding: 10px 12px;
  font-size: 12px;
  color: rgba(234, 240, 255, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.docs-search-results a {
  display: block;
  padding: 12px 12px;
  color: rgba(234, 240, 255, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.docs-search-results a:last-child {
  border-bottom: none;
}

.docs-search-results a:hover,
.docs-search-results a:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.docs-search-results small {
  display: block;
  margin-top: 4px;
  color: rgba(234, 240, 255, 0.55);
}

@media (max-width: 1100px) {
  .docs-shell {
    grid-template-columns: 300px minmax(0, 1fr);
  }

  .docs-toc {
    display: none;
  }
}

@media (max-width: 900px) {
  .docs-menu-toggle {
    display: inline-flex;
  }

  .docs-toplinks {
    display: none;
  }

  .docs-shell {
    grid-template-columns: 1fr;
  }

  .docs-sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    inset-inline-start: 0;
    width: min(320px, 92vw);
    z-index: 110;
    transform: translateX(-105%);
    transition: transform 180ms ease;
  }

  html[dir="rtl"] .docs-sidebar {
    transform: translateX(105%);
  }

  body.docs-sidebar-open .docs-sidebar {
    transform: translateX(0);
  }

  body.docs-sidebar-open .docs-overlay {
    display: block;
  }

  .docs-sidebar-inner {
    top: 0;
    height: 100vh;
    padding-top: 72px;
  }
}

.callout {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.callout.info {
  border-color: rgba(59, 130, 246, 0.35);
  background: rgba(59, 130, 246, 0.12);
}

.callout.warn {
  border-color: rgba(251, 191, 36, 0.45);
  background: rgba(251, 191, 36, 0.12);
}

.callout.success {
  border-color: rgba(34, 197, 94, 0.35);
  background: rgba(34, 197, 94, 0.12);
}

.callout-icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.callout-body p {
  margin: 0;
  color: var(--text);
  opacity: 0.92;
}

.callout-body small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  color: var(--text);
}

.table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.table th,
.table td {
  text-align: start;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: top;
}

@media (prefers-color-scheme: light) {
  .table th,
  .table td {
    border-bottom: 1px solid rgba(11, 18, 32, 0.08);
  }
}

.table th {
  color: var(--text);
  font-weight: 700;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.04);
}

.table td {
  color: var(--muted);
  font-size: 14px;
}

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

.tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 12px;
}

.tagline strong {
  color: rgba(234, 240, 255, 0.92);
}
