/* ─── TOKENS ── */
:root {
  --black:      #080808;
  --surface:    #0d0d0d;
  --surface-2:  #111111;
  --surface-3:  #161616;
  --border:     rgba(255,255,255,0.06);
  --border-mid: rgba(255,255,255,0.1);
  --mint:       #4ade9a;
  --mint-dim:   #2fb872;
  --mint-faint: rgba(74,222,154,0.05);
  --mint-glow:  rgba(74,222,154,0.12);
  --text:       #e2e2e2;
  --text-mid:   #888;
  --text-dim:   #444;
  --font-serif: 'Instrument Serif', serif;
  --font-sans:  'Geist', sans-serif;
  --font-mono:  'Geist Mono', monospace;
  --radius:     10px;
  --radius-lg:  16px;
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ─── NOISE ── */
.noise {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ─── CONTAINER ── */
.container {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 0 40px;
}

/* ─── NAV ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background 0.4s, border-bottom 0.4s;
}
#nav.scrolled {
  background: rgba(8,8,8,0.9);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-serif);
  font-size: 17px;
  letter-spacing: 0.01em;
  color: var(--text);
}
.logo-icon { color: var(--mint); flex-shrink: 0; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--text-mid);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  color: var(--mint) !important;
  border: 1px solid rgba(74,222,154,0.2);
  padding: 6px 15px;
  border-radius: 6px;
  transition: background 0.2s, border-color 0.2s !important;
}
.nav-cta:hover {
  background: var(--mint-faint) !important;
  border-color: rgba(74,222,154,0.35) !important;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--text-mid);
  transition: all 0.3s var(--ease);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(8,8,8,0.98);
  border-bottom: 1px solid var(--border);
  padding: 4px 0 12px;
}
.mobile-menu a {
  padding: 11px 40px;
  color: var(--text-mid);
  font-size: 13px;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, background 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--mint); background: var(--mint-faint); }
.mobile-menu.open { display: flex; }

/* ─── HERO ── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  padding: 120px 40px 80px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.hero-ambient {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse 70% 50% at 30% 20%, rgba(74,222,154,0.035) 0%, transparent 65%);
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 28px;
  font-family: var(--font-mono);
}
.eyebrow-line {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--mint);
  opacity: 0.7;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(54px, 6.5vw, 96px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--mint);
}
.hero-sub {
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.85;
  max-width: 420px;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.badge {
  font-size: 10px;
  letter-spacing: 0.07em;
  color: var(--text-dim);
  border: 1px solid var(--border);
  padding: 3px 9px;
  border-radius: 4px;
  font-family: var(--font-mono);
}

/* ─── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: all 0.22s var(--ease);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--mint);
  color: #000;
}
.btn-primary:hover {
  background: #6aedaf;
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(74,222,154,0.2);
}
.btn-ghost {
  background: transparent;
  color: var(--text-mid);
  border: 1px solid var(--border-mid);
}
.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.03);
}

/* ─── TERMINAL ── */
.hero-visual { position: relative; z-index: 1; }
.terminal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(74,222,154,0.04),
    0 32px 64px rgba(0,0,0,0.5),
    0 0 80px rgba(74,222,154,0.03);
}
.terminal-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.dot { width: 9px; height: 9px; border-radius: 50%; }
.dot.red    { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green  { background: #28c840; }
.terminal-title {
  font-size: 10px;
  color: var(--text-dim);
  margin: 0 auto;
  letter-spacing: 0.1em;
  font-family: var(--font-mono);
}
.terminal-body {
  padding: 22px 24px;
  min-height: 280px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  line-height: 1.95;
}
.terminal-body p { margin-bottom: 1px; }
.t-prompt { color: var(--mint); margin-right: 8px; opacity: 0.7; }
.t-cmd { color: var(--text); }
.t-out { color: var(--text-dim); }
.t-ok  { color: var(--mint); }
.t-warn{ color: #febc2e; }
.t-cursor {
  display: inline-block;
  width: 7px; height: 13px;
  background: var(--mint);
  vertical-align: middle;
  margin-left: 3px;
  opacity: 0.8;
  animation: blink 1.1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* ─── SECTIONS ── */
section { padding: 120px 0; }
.section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: var(--mint);
  opacity: 0.6;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  color: var(--mint);
}
.section-sub {
  color: var(--text-mid);
  font-size: 14px;
  max-width: 480px;
  margin-bottom: 56px;
  font-weight: 300;
  line-height: 1.8;
}

/* ─── PILLARS ── */
.pillars {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pillar-card {
  background: var(--surface-2);
  padding: 40px 36px;
  transition: background 0.3s;
  position: relative;
}
.pillar-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--mint);
  opacity: 0;
  transform: scaleX(0.3);
  transform-origin: left;
  transition: opacity 0.3s, transform 0.4s var(--ease);
}
.pillar-card:hover::after { opacity: 0.5; transform: scaleX(1); }
.pillar-card:hover { background: var(--surface-3); }
.pillar-icon {
  color: var(--mint);
  margin-bottom: 22px;
  opacity: 0.8;
}
.pillar-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.pillar-card p {
  color: var(--text-mid);
  font-size: 13px;
  line-height: 1.8;
  font-weight: 300;
}

/* ─── FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 56px;
}
.feature-item {
  background: var(--surface);
  padding: 32px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: background 0.25s;
}
.feature-item:hover { background: var(--surface-2); }
.feature-icon {
  color: var(--mint);
  opacity: 0.7;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-text h4 {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.feature-text p {
  font-size: 12.5px;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
}

/* ─── PRESETS ── */
.presets {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.presets-list {
  margin-top: 56px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.preset-row {
  display: grid;
  grid-template-columns: 240px 1fr 100px;
  align-items: center;
  gap: 32px;
  padding: 24px 32px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
  transition: background 0.22s;
}
.preset-row:last-child { border-bottom: none; }
.preset-row:hover { background: var(--surface-3); }
.preset-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.preset-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  width: 22px;
  flex-shrink: 0;
}
.preset-icon {
  color: var(--mint);
  opacity: 0.65;
  flex-shrink: 0;
}
.preset-row h3 {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
}
.preset-row p {
  font-size: 12.5px;
  color: var(--text-mid);
  line-height: 1.65;
  font-weight: 300;
}
.preset-meter {
  display: flex;
  gap: 5px;
  justify-content: flex-end;
}
.preset-meter::before {
  content: '';
  display: flex;
}

/* Build meter via JS */
.meter-pip {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pip-on  { background: var(--mint); }
.pip-off { background: var(--border-mid); }

/* ─── INSTALL ── */
.steps {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 56px;
}
.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 32px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  transition: background 0.22s;
}
.step:last-child { border-bottom: none; }
.step:hover { background: var(--surface-2); }
.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mint);
  opacity: 0.8;
  flex-shrink: 0;
}
.step-body h4 {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 5px;
}
.step-body p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 8px;
  font-weight: 300;
}
.step-link {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mint);
  letter-spacing: 0.03em;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.step-link:hover { opacity: 1; }
code {
  font-family: var(--font-mono);
  background: rgba(74,222,154,0.07);
  border: 1px solid rgba(74,222,154,0.13);
  padding: 1px 7px;
  border-radius: 4px;
  font-size: 12px;
  color: var(--mint);
}
.inline-code {
  display: inline-block;
  margin-top: 6px;
  font-size: 14px;
  letter-spacing: 0.08em;
  padding: 4px 12px;
}
.compat-note {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding: 18px 24px;
  background: var(--mint-faint);
  border: 1px solid rgba(74,222,154,0.1);
  border-radius: var(--radius);
}
.compat-note span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mint);
  opacity: 0.8;
  letter-spacing: 0.04em;
}

/* ─── CTA ── */
.cta-section { padding: 80px 0; }
.cta-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 80px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 0%, rgba(74,222,154,0.06), transparent 65%);
  pointer-events: none;
}
.cta-box h2 {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.cta-box p {
  color: var(--text-mid);
  font-size: 14px;
  margin-bottom: 40px;
  font-weight: 300;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 36px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--text-mid);
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--mint); }
.footer-copy {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}

/* ─── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.scroll-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  transition-delay: var(--delay, 0ms);
}
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── DOCS PAGE STYLES ── */
.docs-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  min-height: 100vh;
  padding-top: 60px;
}
.docs-sidebar {
  position: sticky;
  top: 60px;
  height: calc(100vh - 60px);
  overflow-y: auto;
  border-right: 1px solid var(--border);
  padding: 40px 0;
  background: var(--surface);
}
.docs-sidebar::-webkit-scrollbar { width: 4px; }
.docs-sidebar::-webkit-scrollbar-track { background: transparent; }
.docs-sidebar::-webkit-scrollbar-thumb { background: var(--border-mid); border-radius: 2px; }
.sidebar-section {
  margin-bottom: 32px;
  padding: 0 24px;
}
.sidebar-heading {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 10px;
}
.sidebar-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sidebar-links a {
  display: block;
  font-size: 13px;
  color: var(--text-mid);
  padding: 5px 10px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  font-weight: 300;
}
.sidebar-links a:hover { color: var(--text); background: var(--surface-3); }
.sidebar-links a.active { color: var(--mint); background: var(--mint-faint); }
.docs-content {
  padding: 56px 64px 80px;
  max-width: 760px;
}
.docs-content h1 {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1;
}
.docs-content h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.02em;
  margin-top: 60px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.docs-content h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  margin-top: 32px;
  margin-bottom: 10px;
}
.docs-content p {
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 16px;
  font-weight: 300;
}
.docs-content ul, .docs-content ol {
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 16px;
  padding-left: 20px;
  font-weight: 300;
}
.docs-content li { margin-bottom: 4px; }
.docs-content a {
  color: var(--mint);
  text-decoration: underline;
  text-decoration-color: rgba(74,222,154,0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}
.docs-content a:hover { text-decoration-color: var(--mint); }
.docs-content code {
  font-size: 12.5px;
}
.docs-content pre {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 20px 0;
  overflow-x: auto;
}
.docs-content pre code {
  background: none;
  border: none;
  padding: 0;
  font-size: 13px;
  color: var(--text);
}
.doc-section {
  scroll-margin-top: 80px;
}
.callout {
  background: var(--mint-faint);
  border: 1px solid rgba(74,222,154,0.12);
  border-left: 2px solid var(--mint);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 300;
}
.callout strong { color: var(--mint); font-weight: 500; }
.docs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin: 20px 0;
}
.docs-table th {
  text-align: left;
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  font-weight: 400;
}
.docs-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
  font-weight: 300;
}
.docs-table td:first-child { color: var(--text); font-weight: 400; }
.docs-table tr:last-child td { border-bottom: none; }
.docs-table tr:hover td { background: var(--surface-3); }
.docs-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.docs-eyebrow::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--mint);
  opacity: 0.6;
}

/* ─── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 96px;
    min-height: auto;
    padding-bottom: 64px;
  }
  .hero-visual { max-width: 520px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .preset-row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .preset-meter { grid-column: span 2; justify-content: flex-start; }
  .docs-layout { grid-template-columns: 1fr; }
  .docs-sidebar {
    position: static;
    height: auto;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
  }
  .docs-content { padding: 40px 32px; max-width: 100%; }
}
@media (max-width: 700px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .container { padding: 0 24px; }
  .hero { padding-left: 24px; padding-right: 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .preset-row { grid-template-columns: 1fr; }
  .preset-meter { justify-content: flex-start; }
  .cta-box { padding: 48px 24px; }
  .step { gap: 16px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  section { padding: 80px 0; }
  .nav-inner, .docs-content { padding-left: 24px; padding-right: 24px; }
  .docs-sidebar { padding: 20px 0; }
}
