/* ============================================================
   Gigamemory.ai — Design System
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: #334155;
  background: #ffffff;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: #533afd;
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: #4434d4;
}

ul {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  color: #061b31;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 {
  font-size: 56px;
  letter-spacing: -0.03em;
  font-weight: 400;
}

h2 {
  font-size: 42px;
  letter-spacing: -0.025em;
  font-weight: 400;
}

h3 {
  font-size: 22px;
  letter-spacing: -0.02em;
  font-weight: 400;
}

h4 {
  font-size: 16px;
  font-weight: 500;
  color: #061b31;
  letter-spacing: 0;
}

p {
  font-weight: 400;
  line-height: 1.7;
  color: #334155;
}

/* --- Container --- */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   Navigation
   ============================================================ */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #e5edf5;
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 500;
  color: #061b31;
  text-decoration: none;
}

.nav-logo svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.nav-logo:hover {
  color: #061b31;
}

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

.nav-links li a {
  font-size: 15px;
  font-weight: 400;
  color: #334155;
  transition: color 0.15s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #061b31;
}

.nav-links .nav-cta {
  margin-left: 8px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #334155;
  padding: 4px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  font-weight: 500;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s ease;
  line-height: 1;
}

.btn-primary {
  background: #533afd;
  color: #ffffff;
}

.btn-primary:hover {
  background: #4434d4;
  color: #ffffff;
}

.btn-ghost {
  background: transparent;
  border: 1px solid #c7c3fb;
  color: #533afd;
}

.btn-ghost:hover {
  background: rgba(83, 58, 253, 0.05);
  color: #4434d4;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 6px;
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero {
  text-align: center;
  padding: 120px 24px 96px;
  background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-size: 56px;
  font-weight: 400;
  color: #061b31;
  max-width: 720px;
  margin: 0 auto 20px;
  letter-spacing: -0.03em;
}

.hero .subtitle {
  font-size: 20px;
  font-weight: 400;
  color: #334155;
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 6px;
  padding: 6px 16px 6px 12px;
  font-size: 14px;
  font-weight: 500;
  color: #061b31;
  margin-bottom: 32px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #15be53;
  display: inline-block;
}

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

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat .value {
  font-size: 32px;
  font-weight: 400;
  color: #061b31;
  display: block;
  line-height: 1.2;
}

.hero-stat .label {
  font-size: 14px;
  font-weight: 400;
  color: #64748b;
  display: block;
  margin-top: 4px;
}

/* ============================================================
   Section Layout
   ============================================================ */
.section {
  padding: 96px 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: #334155;
  line-height: 1.6;
}

/* ============================================================
   Features Grid
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: #ffffff;
  border: 1px solid #e5edf5;
  border-radius: 6px;
  padding: 36px 28px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 45px -30px,
              rgba(0, 0, 0, 0.1) 0px 18px 36px -18px;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 40px 55px -30px,
              rgba(0, 0, 0, 0.1) 0px 20px 40px -18px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 500;
  color: #061b31;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 16px;
  font-weight: 400;
  color: #334155;
  line-height: 1.6;
}

/* ============================================================
   Name Explanation Section (What is Gigamemory?)
   ============================================================ */
.name-explanation {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.name-meaning {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.name-item {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid #e5edf5;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 20px 40px -30px,
              rgba(0, 0, 0, 0.1) 0px 12px 24px -18px;
}

.name-item h3 {
  font-size: 20px;
  font-weight: 500;
  color: #533afd;
  margin-bottom: 8px;
}

.name-item p {
  font-size: 15px;
  color: #334155;
  line-height: 1.5;
}

/* ============================================================
   Pricing Philosophy
   ============================================================ */
.pricing-philosophy {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 48px;
}

.pricing-philosophy h3 {
  font-size: 22px;
  font-weight: 500;
  color: #061b31;
  margin-bottom: 12px;
}

.pricing-philosophy p {
  font-size: 17px;
  color: #334155;
  line-height: 1.6;
}

.pricing-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eef2ff;
  border: 1px solid #d4d0fb;
  border-radius: 6px;
  padding: 10px 20px;
  margin-top: 16px;
  font-size: 16px;
  font-weight: 500;
  color: #533afd;
}

/* ============================================================
   Comparison Section
   ============================================================ */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 780px;
  margin: 0 auto;
}

.comparison-col {
  background: #ffffff;
  border: 1px solid #e5edf5;
  border-radius: 6px;
  padding: 36px 32px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 45px -30px,
              rgba(0, 0, 0, 0.1) 0px 18px 36px -18px;
}

.comparison-col.gigamemory {
  border-color: #533afd;
}

.comparison-col h3 {
  font-size: 20px;
  font-weight: 500;
  color: #061b31;
  margin-bottom: 6px;
}

.comparison-col .sub {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 24px;
}

.comparison-col ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comparison-col li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  font-weight: 400;
  color: #334155;
  line-height: 1.5;
}

.comparison-col li svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.check-svg {
  width: 18px;
  height: 18px;
  display: block;
}

.cross-svg {
  width: 18px;
  height: 18px;
  display: block;
}

/* ============================================================
   Pricing Section
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid #e5edf5;
  border-radius: 6px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 45px -30px,
              rgba(0, 0, 0, 0.1) 0px 18px 36px -18px;
}

.pricing-card.featured {
  border-color: #533afd;
}

.pricing-card .pricing-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #533afd;
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 14px;
  border-radius: 4px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.pricing-card h3 {
  font-size: 18px;
  font-weight: 500;
  color: #061b31;
  margin-bottom: 6px;
}

.pricing-card .price {
  font-size: 36px;
  font-weight: 400;
  color: #061b31;
  margin-bottom: 2px;
  letter-spacing: -0.02em;
}

.pricing-card .price-period {
  font-size: 14px;
  font-weight: 400;
  color: #64748b;
  margin-bottom: 24px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  color: #334155;
  line-height: 1.4;
}

.pricing-features li svg {
  flex-shrink: 0;
  margin-top: 3px;
  width: 14px;
  height: 14px;
}

.pricing-card .btn {
  width: 100%;
  margin-top: auto;
}

/* ============================================================
   Footer
   ============================================================ */
footer {
  background: #ffffff;
  border-top: 1px solid #e5edf5;
  padding: 56px 0 28px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .nav-logo {
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 15px;
  font-weight: 400;
  color: #64748b;
  line-height: 1.6;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 500;
  color: #061b31;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  font-size: 14px;
  font-weight: 400;
  color: #334155;
  transition: color 0.15s ease;
}

.footer-col ul li a:hover {
  color: #533afd;
}

.footer-bottom {
  border-top: 1px solid #e5edf5;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom span {
  font-size: 14px;
  font-weight: 400;
  color: #64748b;
}

/* ============================================================
   Responsive: Tablet (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
  }

  .footer-grid .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ============================================================
   Responsive: Mobile (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
  }

  .hero {
    padding: 80px 16px 64px;
  }

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

  .hero .subtitle {
    font-size: 17px;
  }

  .hero-stats {
    gap: 32px;
  }

  .hero-stat .value {
    font-size: 24px;
  }

  .section {
    padding: 64px 0;
  }

  .section-header {
    margin-bottom: 48px;
  }

  /* Mobile navigation */
  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 20px 24px;
    gap: 4px;
    border-bottom: 1px solid #e5edf5;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }

  .nav-links.mobile-open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    display: block;
    padding: 12px 0;
    font-size: 16px;
  }

  .nav-links .nav-cta {
    margin-left: 0;
    margin-top: 8px;
  }

  .nav-links .nav-cta .btn {
    width: 100%;
    text-align: center;
  }

  /* Grids to single column */
  .features-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .name-meaning {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer-grid .footer-brand {
    grid-column: 1 / -1;
  }

  .comparison-col {
    padding: 28px 24px;
  }

  .pricing-card {
    padding: 28px 20px;
  }
}
/* ============================================================
   Docs Layout (Quick Start, API Reference)
   ============================================================ */

.docs-layout {
  display: flex;
  gap: 48px;
  padding: 48px 0 80px;
  align-items: flex-start;
}

.docs-sidebar {
  position: sticky;
  top: 88px;
  width: 220px;
  flex-shrink: 0;
}

.docs-sidebar h4 {
  font-size: 12px;
  font-weight: 600;
  color: #061b31;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.docs-sidebar ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 24px;
}

.docs-sidebar ul li a {
  display: block;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 400;
  color: #64748b;
  border-radius: 4px;
  transition: all 0.12s ease;
}

.docs-sidebar ul li a:hover {
  color: #061b31;
  background: #f1f5f9;
}

.docs-sidebar ul li a.active {
  color: #533afd;
  background: #eef2ff;
  font-weight: 500;
}

.docs-content {
  flex: 1;
  min-width: 0;
  max-width: 720px;
}

.docs-content h1 {
  font-size: 40px;
  margin-bottom: 8px;
}

.docs-content h2 {
  font-size: 28px;
  margin: 48px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e5edf5;
}

.docs-content h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 24px 0 8px;
  color: #061b31;
}

.docs-content h4 {
  font-size: 14px;
  font-weight: 500;
  margin: 20px 0 8px;
  color: #273951;
  letter-spacing: 0;
  text-transform: none;
}

.docs-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #475569;
}

.docs-content p > code,
.docs-content li > code {
  font-family: 'Source Code Pro', 'SF Mono', 'Fira Code', monospace;
  font-size: 13px;
  font-weight: 500;
  background: #f1f5f9;
  padding: 2px 6px;
  border-radius: 3px;
  color: #ea2261;
}

/* --- Code Blocks (Dark Theme) --- */

.docs-content pre {
  margin: 0 0 24px;
  border-radius: 8px;
  overflow: hidden;
}

.docs-content pre code {
  display: block;
  padding: 20px 24px;
  background: #1e293b;
  color: #e2e8f0;
  font-family: 'Source Code Pro', 'SF Mono', 'Fira Code', monospace;
  font-size: 13.5px;
  line-height: 1.6;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  tab-size: 2;
}

/* Syntax-ish coloring inside code blocks */
.docs-content pre code .comment  { color: #94a3b8; }
.docs-content pre code .string   { color: #a5d6ff; }
.docs-content pre code .keyword  { color: #c084fc; }
.docs-content pre code .variable { color: #fca5a5; }
.docs-content pre code .function { color: #67e8f9; }
.docs-content pre code .number   { color: #fbbf24; }
.docs-content pre code .method   { color: #6ee7b7; }

/* --- Tabbed Code Interface --- */

.tabs {
  display: flex;
  gap: 0;
  margin: 0;
  background: #1e293b;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}

.tab-btn {
  flex: 0 0 auto;
  padding: 10px 18px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: #94a3b8;
  font-family: 'Source Code Pro', 'SF Mono', 'Fira Code', monospace;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.12s ease;
  letter-spacing: 0.02em;
}

.tab-btn:hover {
  color: #e2e8f0;
  background: rgba(255,255,255,0.04);
}

.tab-btn.active {
  color: #ffffff;
  border-bottom-color: #533afd;
  background: rgba(255,255,255,0.06);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-content pre {
  border-radius: 0 0 8px 8px;
  margin: 0;
}

.tab-content pre code {
  border-radius: 0 0 8px 8px;
}

/* Tab group with spacing */
.tab-group {
  margin-bottom: 28px;
}

/* --- Endpoint Cards (API Reference) --- */

.endpoint {
  margin: 32px 0;
  padding: 28px;
  border: 1px solid #e5edf5;
  border-radius: 8px;
  box-shadow: rgba(50,50,93,0.25) 0px 30px 45px -30px, rgba(0,0,0,0.1) 0px 18px 36px -18px;
}

.endpoint-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.endpoint-method {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  font-family: 'Source Code Pro', monospace;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.02em;
}

.method-get { background: #15be53; }
.method-post { background: #533afd; }
.method-delete { background: #ea2261; }

.endpoint-url {
  font-family: 'Source Code Pro', monospace;
  font-size: 14px;
  font-weight: 400;
  color: #061b31;
}

.endpoint-desc {
  font-size: 14px;
  color: #64748d;
  line-height: 1.6;
  margin-bottom: 16px;
}

.endpoint .params-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 13px;
  border: 1px solid #e5edf5;
  border-radius: 6px;
  overflow: hidden;
}

.endpoint .params-table th {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid #e5edf5;
  font-weight: 500;
  color: #273951;
  background: #f8fafc;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.endpoint .params-table td {
  padding: 10px 14px;
  border-bottom: 1px solid #e5edf5;
  color: #475569;
  font-weight: 400;
  font-size: 13px;
}

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

.endpoint .params-table .param-name {
  font-family: 'Source Code Pro', monospace;
  font-size: 12px;
  color: #061b31;
  font-weight: 500;
}

.param-req { color: #ea2261; font-size: 11px; font-weight: 500; }
.param-opt { color: #64748b; font-size: 11px; }

/* --- Info Callout --- */
.callout {
  padding: 16px 20px;
  border-radius: 6px;
  margin: 24px 0;
  font-size: 14px;
  line-height: 1.6;
  border-left: 3px solid;
}

.callout-info {
  background: #eef2ff;
  border-color: #533afd;
  color: #273951;
}

.callout-info strong {
  color: #533afd;
}

.callout-warn {
  background: #fffbeb;
  border-color: #f59e0b;
  color: #92400e;
}

.callout-warn strong {
  color: #d97706;
}

/* --- Inline code snippets --- */
.snippet {
  display: inline-block;
  padding: 1px 7px;
  background: #1e293b;
  color: #e2e8f0;
  font-family: 'Source Code Pro', monospace;
  font-size: 12.5px;
  border-radius: 3px;
}

/* --- Entity Caps Table --- */
.caps-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 14px;
  border: 1px solid #e5edf5;
  border-radius: 6px;
  overflow: hidden;
}

.caps-table th {
  text-align: left;
  padding: 10px 14px;
  background: #f8fafc;
  border-bottom: 1px solid #e5edf5;
  font-weight: 500;
  color: #273951;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.caps-table td {
  padding: 10px 14px;
  border-bottom: 1px solid #e5edf5;
  color: #475569;
}

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

/* --- Responsive --- */
@media (max-width: 768px) {
  .docs-layout {
    flex-direction: column;
    gap: 0;
    padding: 24px 0 48px;
  }

  .docs-sidebar {
    position: static;
    width: 100%;
    margin-bottom: 24px;
  }

  .docs-sidebar ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
  }

  .docs-sidebar ul li a {
    padding: 6px 10px;
    font-size: 13px;
  }

  .docs-content h1 {
    font-size: 30px;
  }

  .docs-content h2 {
    font-size: 22px;
  }

  .docs-content pre code {
    padding: 14px 16px;
    font-size: 12px;
  }

  .tabs {
    overflow-x: auto;
  }

  .tab-btn {
    padding: 8px 14px;
    font-size: 11px;
    flex: 1;
    text-align: center;
  }

  .endpoint {
    padding: 20px;
  }

  .endpoint .params-table {
    font-size: 12px;
  }

  .endpoint .params-table th,
  .endpoint .params-table td {
    padding: 6px 8px;
  }
}
