@font-face {
  font-family: "Noto Sans SC";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/css/fonts/noto-sans-sc-chinese-simplified-400-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Noto Sans SC";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/css/fonts/noto-sans-sc-chinese-simplified-500-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Noto Sans SC";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/css/fonts/noto-sans-sc-chinese-simplified-600-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Noto Sans SC";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/css/fonts/noto-sans-sc-chinese-simplified-700-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Noto Sans SC";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/css/fonts/noto-sans-sc-chinese-simplified-800-normal.woff2") format("woff2");
}

:root {
  --bg: #0b0f19;
  --bg-elevated: #111827;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --surface: #f8fafc;
  --surface-alt: #f1f5f9;
  --text: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --primary: #3b82f6;
  --primary-dark: #2563eb;
  --primary-glow: rgba(59, 130, 246, 0.35);
  --accent: #06b6d4;
  --accent-purple: #8b5cf6;
  --border: rgba(148, 163, 184, 0.2);
  --border-light: #e2e8f0;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 60px rgba(15, 23, 42, 0.12);
  --font: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-h: 72px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--surface);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--primary-dark);
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
}

.logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  border-radius: 10px;
  letter-spacing: -0.5px;
}

.logo-text {
  font-size: 1.05rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  padding: 8px 14px;
  color: var(--text-muted);
  font-size: 0.925rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s;
}

.nav a:hover {
  color: var(--text);
  background: var(--surface-alt);
}

.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
  color: #fff !important;
  box-shadow: 0 4px 14px var(--primary-glow);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--primary-glow);
  color: #fff !important;
}

/* ── Hero ── */
.hero-banner {
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
  background: var(--bg);
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(59, 130, 246, 0.25), transparent), radial-gradient(ellipse 50% 40% at 90% 60%, rgba(139, 92, 246, 0.15), transparent),
    radial-gradient(ellipse 40% 30% at 10% 80%, rgba(6, 182, 212, 0.12), transparent);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

.hero-content {
  position: relative;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 30%, rgba(255, 255, 255, 0.75));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  max-width: 620px;
  margin: 0 auto 36px;
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
}

.hero-actions {
  display: flex;
  gap: 50px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 80px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item {
  text-align: center;
  min-width: 100px;
}

.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--primary-glow);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.btn-lg {
  padding: 14px 36px;
  font-size: 1rem;
}

/* ── Sections ── */
.section {
  padding: 80px 0;
}
.section-alt {
  background: var(--surface-alt);
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 12px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 6px;
}

.section-head h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ── Features ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.feature-card {
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border-radius: 12px;
  margin-bottom: 18px;
}

.fi-blue {
  background: rgba(59, 130, 246, 0.12);
}
.fi-purple {
  background: rgba(139, 92, 246, 0.12);
}
.fi-cyan {
  background: rgba(6, 182, 212, 0.12);
}
.fi-green {
  background: rgba(34, 197, 94, 0.12);
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.65;
}

/* ── Intro ── */
.intro-card {
  width: 100%;
  padding: 40px 48px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.prose h2,
.prose h3 {
  margin-top: 1.5em;
  margin-bottom: 0.6em;
  font-weight: 700;
}

.prose h2:first-child,
.prose h3:first-child {
  margin-top: 0;
}

.prose p {
  margin-bottom: 1em;
  color: var(--text-muted);
}

.prose ul,
.prose ol {
  margin: 0 0 1em 1.4em;
  color: var(--text-muted);
}

.prose li {
  margin-bottom: 0.4em;
}

.doc-table {
  width: 100%;
  margin: 1.25em 0;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.doc-table th,
.doc-table td {
  padding: 0.65rem 0.85rem;
  text-align: left;
  border: 1px solid var(--border);
}

.doc-table th {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.doc-table code {
  font-size: 0.88em;
}

/* ── API Cards ── */
.category-block {
  margin-bottom: 48px;
}

.category-block:last-child {
  margin-bottom: 0;
}

.category-head {
  margin-bottom: 24px;
}

.category-head h2,
.category-head h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
}

.category-head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.api-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.api-card {
  display: block;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  color: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.api-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s;
}

.api-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.api-card:hover::before {
  opacity: 1;
}

.api-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.api-card-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.quota-tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #b45309;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 999px;
}

.quota-tag-free {
  color: #047857;
  background: #ecfdf5;
  border-color: #a7f3d0;
}

.quota-free-text {
  margin: 0;
  color: #047857;
  font-weight: 600;
}

.api-arrow {
  color: var(--text-light);
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.api-card:hover .api-arrow {
  transform: translateX(4px);
  color: var(--primary);
}

.api-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.api-card p {
  color: var(--text-muted);
  font-size: 0.925rem;
  margin-bottom: 16px;
  line-height: 1.65;
}

.api-endpoint {
  display: block;
  padding: 8px 12px;
  background: var(--surface-alt);
  border-radius: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: "Cascadia Code", "Fira Code", Consolas, monospace;
}

/* ── Method Tags ── */
.method-tag {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  border-radius: 6px;
  font-family: Consolas, monospace;
}

.method-GET {
  background: rgba(34, 197, 94, 0.15);
  color: #16a34a;
}
.method-POST {
  background: rgba(59, 130, 246, 0.15);
  color: #2563eb;
}
.method-PUT {
  background: rgba(245, 158, 11, 0.15);
  color: #d97706;
}
.method-DELETE {
  background: rgba(239, 68, 68, 0.15);
  color: #dc2626;
}
.method-lg {
  padding: 6px 14px;
  font-size: 0.82rem;
}

/* ── Page Banner ── */
.page-banner {
  padding: 64px 0 48px;
  background: var(--bg);
  color: #fff;
}

.page-banner-sm {
  padding: 48px 0 40px;
}

.page-banner h1 {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 12px 0 10px;
}

.page-lead {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
  max-width: 560px;
}

.page-banner .section-tag {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
}
.breadcrumb a:hover {
  color: #fff;
}

/* ── Doc Page ── */
.doc-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.doc-header-main h1 {
  margin-top: 12px;
}

.endpoint-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.endpoint-hint,
.quickstart-hint,
.invoke-note {
  flex-basis: 100%;
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.endpoint-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.endpoint-url {
  font-family: Consolas, monospace;
  font-size: 0.9rem;
  color: var(--accent);
}

.copy-btn {
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  cursor: pointer;
  transition: background 0.2s;
}

.copy-btn:hover {
  background: rgba(255, 255, 255, 0.18);
}

.doc-section {
  padding-top: 48px;
  padding-bottom: 80px;
}

.doc-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 32px;
  align-items: start;
}

.doc-card {
  padding: 40px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.doc-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.sidebar-card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.sidebar-card h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.sidebar-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.sidebar-link {
  display: block;
  padding: 6px 0;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ── Code ── */
.code-block {
  background: #0f172a;
  color: #e2e8f0;
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  overflow-x: auto;
  font-size: 0.875rem;
  line-height: 1.6;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.code-block code {
  font-family: "Cascadia Code", "Fira Code", Consolas, monospace;
}

.code-samples {
  margin: 1em 0 1.25em;
}

.code-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 0;
}

.code-tab {
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  background: var(--surface-alt);
  border: 1px solid var(--border-light);
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  transition: color 0.2s, background 0.2s;
}

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

.code-tab.is-active {
  color: var(--primary);
  background: #0f172a;
  border-color: rgba(255, 255, 255, 0.08);
}

.code-panels {
  position: relative;
}

.code-panel {
  display: none;
  margin: 0;
  border-top-left-radius: 0;
}

.code-panel.is-active {
  display: block;
}

.code-sm {
  padding: 14px 16px;
  font-size: 0.82rem;
}

.doc-body pre,
.prose pre {
  background: #0f172a;
  color: #e2e8f0;
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  overflow-x: auto;
  font-size: 0.875rem;
  margin: 1em 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.doc-body pre code,
.prose pre code {
  font-family: "Cascadia Code", "Fira Code", Consolas, monospace;
  background: none;
  padding: 0;
}

.doc-body code,
.prose code {
  padding: 2px 7px;
  background: var(--surface-alt);
  border-radius: 5px;
  font-size: 0.88em;
  font-family: Consolas, monospace;
  color: var(--primary-dark);
}

/* ── Quickstart ── */
.quickstart-card {
  width: 100%;
  padding: 40px 48px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quickstart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 1.35fr);
  gap: 48px;
  align-items: start;
}

.quickstart-main {
  min-width: 0;
}

.quickstart-code {
  min-width: 0;
}

.quickstart-code-label {
  margin-bottom: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.quickstart-code .code-block {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  overflow-x: visible;
}

.quickstart-steps {
  margin: 0 0 20px 1.4em;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.quickstart-steps li {
  margin-bottom: 10px;
}

.quickstart-hint {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* ── CTA ── */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg) 0%, #1e293b 100%);
  color: #fff;
  text-align: center;
}

.cta-inner h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

/* ── Footer ── */
.footer {
  background: var(--bg);
  color: rgba(255, 255, 255, 0.65);
  padding-top: 64px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer .logo-text {
  color: #fff;
}

.footer-desc {
  margin-top: 12px;
  max-width: 320px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
}

.footer-links {
  display: flex;
  gap: 64px;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-col a {
  display: block;
  padding: 4px 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: #fff;
}

.footer-qrcode {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.footer-qrcode img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  padding: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.footer-qrcode span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom {
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-beian {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 24px;
}

.footer-beian a {
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}

.footer-psb-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-psb-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.footer-beian a:hover {
  color: rgba(255, 255, 255, 0.75);
}

.empty-tip,
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px;
  color: var(--text-muted);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-banner {
    padding: 72px 0 56px;
  }
  .hero-stats {
    gap: 48px;
  }
  .section {
    padding: 56px 0;
  }
  .doc-layout {
    grid-template-columns: 1fr;
  }
  .doc-sidebar {
    position: static;
  }
  .footer-inner {
    flex-direction: column;
  }
  .footer-qrcode {
    margin-left: 0;
  }
  .footer-links {
    gap: 32px;
  }
  .nav a:not(.nav-cta) {
    display: none;
  }
  .intro-card,
  .quickstart-card {
    padding: 28px 24px;
  }
  .quickstart-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .doc-card {
    padding: 28px 24px;
  }
}
