:root {
  --bg: #0b1020;
  --bg-elevated: #0f172a;
  --surface: #111b31;
  --surface-soft: #16223d;
  --surface-strong: #0d1528;
  --surface-code: #0a1120;

  --border: #24324f;
  --border-strong: #32466c;

  --text: #dce6f5;
  --text-strong: #f8fbff;
  --text-muted: #9badc6;
  --text-soft: #73849d;

  --accent: #58d39b;
  --accent-strong: #84f0bc;
  --accent-soft: rgba(88, 211, 155, 0.12);

  --shadow: 0 16px 48px rgba(0, 0, 0, 0.32);

  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;

  --font-display: "Instrument Sans", sans-serif;
  --font-body: "Instrument Sans", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  --content-width: 860px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(88, 211, 155, 0.08), transparent 28%),
    linear-gradient(180deg, #0a0f1d 0%, #0b1020 100%);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

code,
pre {
  font-family: var(--font-mono);
}

::selection {
  background: rgba(88, 211, 155, 0.2);
  color: var(--text-strong);
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #2a3958;
  border-radius: 999px;
}

.mobile-bar {
  display: none;
  position: sticky;
  top: 0;
  z-index: 50;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(10, 15, 29, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.mobile-bar__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text-strong);
  cursor: pointer;
}

.mobile-bar__button span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-bar__button span + span {
  margin-top: 4px;
}

.mobile-bar__dot {
  width: 14px;
  height: 14px;
  margin: 0;
  border-radius: 50%;
  border: 2px solid currentColor;
  background: transparent;
}

.mobile-bar__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--text-strong);
  font-weight: 700;
}

.mobile-bar__brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--accent-soft);
  border: 1px solid rgba(88, 211, 155, 0.24);
  color: var(--accent-strong);
  font-size: 0.92rem;
  font-weight: 700;
}

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

.panel {
  min-width: 0;
}

.panel--nav,
.panel--outline {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: auto;
  background: rgba(10, 15, 29, 0.82);
  backdrop-filter: blur(16px);
}

.panel--nav {
  padding: 24px 18px 28px;
  border-right: 1px solid var(--border);
}

.panel--content {
  background: transparent;
}

.panel--outline {
  padding: 24px 18px 28px;
  border-left: 1px solid var(--border);
}

.brand-lockup {
  padding: 0 8px 20px;
  border-bottom: 1px solid var(--border);
}

.brand-lockup__badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(88, 211, 155, 0.2);
  color: var(--accent-strong);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-lockup__title {
  margin: 14px 0 6px;
  color: var(--text-strong);
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.brand-lockup__subtitle {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.panel-search {
  padding: 18px 8px 0;
}

.panel-search__label,
.doc-nav__label,
.outline__label,
.topbar__eyebrow {
  display: block;
  margin: 0 0 8px;
  color: var(--text-soft);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.panel-search__input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(17, 27, 49, 0.85);
  color: var(--text);
  outline: none;
}

.panel-search__input::placeholder {
  color: #62718d;
}

.panel-search__input:focus {
  border-color: var(--border-strong);
  box-shadow: 0 0 0 4px rgba(88, 211, 155, 0.08);
}

.panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 8px 4px;
}

.panel-action {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(17, 27, 49, 0.72);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.panel-action:hover,
.panel-action:focus-visible {
  color: var(--text-strong);
  border-color: var(--border-strong);
}

.doc-nav {
  display: grid;
  gap: 20px;
  padding: 20px 8px 0;
}

.doc-nav__group {
  display: grid;
  gap: 10px;
}

.doc-nav__list {
  display: grid;
  gap: 8px;
}

.doc-link {
  display: grid;
  gap: 8px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: transparent;
}

.doc-link:hover,
.doc-link:focus-visible {
  background: rgba(17, 27, 49, 0.72);
  border-color: var(--border);
}

.doc-link.is-active {
  background: rgba(17, 27, 49, 0.96);
  border-color: var(--border-strong);
}

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

.doc-link__tag {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-soft);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.doc-link__title {
  color: var(--text-strong);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
}

.doc-link__summary {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 25;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 40px 18px;
  background: rgba(10, 15, 29, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.topbar__title {
  margin: 0;
  color: var(--text-strong);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.topbar__summary {
  margin: 10px 0 0;
  max-width: 60ch;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.topbar__meta {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.meta-pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(17, 27, 49, 0.78);
  color: var(--text-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.meta-pill strong {
  margin-left: 6px;
  color: var(--text-strong);
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: none;
}

.topbar__actions,
.home-intro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ghost-button,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 0.86rem;
  font-weight: 700;
}

.ghost-button {
  background: rgba(17, 27, 49, 0.8);
  color: var(--text);
}

.ghost-button:hover,
.ghost-button:focus-visible {
  border-color: var(--border-strong);
  color: var(--text-strong);
}

.primary-button {
  background: var(--accent);
  border-color: var(--accent);
  color: #071019;
}

.primary-button:hover,
.primary-button:focus-visible {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
}

.content-area {
  padding: 28px 40px 56px;
}

.home-shell,
.doc-shell {
  display: grid;
  gap: 28px;
}

.home-intro,
.reading-card,
.reference-card,
.doc-group,
.doc-shell__article,
.doc-empty,
.doc-loading,
.doc-error,
.empty-state,
.doc-pagination__link {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(17, 27, 49, 0.96), rgba(13, 21, 40, 0.96));
  box-shadow: var(--shadow);
}

.home-intro {
  padding: 30px 32px;
}

.home-intro__eyebrow {
  margin: 0 0 10px;
  color: var(--accent-strong);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-intro__title {
  margin: 0;
  max-width: 15ch;
  color: var(--text-strong);
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 0.97;
  letter-spacing: -0.05em;
}

.home-intro__summary {
  margin: 16px 0 0;
  max-width: 66ch;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.home-intro__snippet {
  margin: 22px 0 0;
  padding: 18px 20px;
  overflow: auto;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface-code);
  color: #cfddf4;
  font-size: 0.87rem;
  line-height: 1.8;
}

.home-section {
  display: grid;
  gap: 16px;
}

.section-heading {
  display: grid;
  gap: 6px;
}

.section-heading h2 {
  margin: 0;
  color: var(--text-strong);
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.section-heading p {
  margin: 0;
  max-width: 68ch;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.reading-list,
.reference-grid,
.doc-groups,
.doc-pagination {
  display: grid;
  gap: 16px;
}

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

.reading-card {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
}

.reading-card__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  border: 1px solid rgba(88, 211, 155, 0.18);
  color: var(--accent-strong);
  font-size: 0.95rem;
  font-weight: 700;
}

.reading-card__body h3,
.reference-card h3,
.doc-group__header h3,
.outline__title,
.empty-state h3,
.doc-error h3 {
  margin: 0;
  color: var(--text-strong);
  font-size: 1.05rem;
  line-height: 1.3;
}

.reading-card__meta,
.reference-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-bottom: 8px;
  color: var(--text-soft);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.reading-card__body p,
.reference-card p,
.doc-list-item p,
.outline__text,
.empty-state p,
.doc-error p {
  margin: 8px 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.reading-card__link,
.reference-card__link,
.doc-card__link {
  color: var(--accent-strong);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.reference-card {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.doc-groups {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.doc-groups > .empty-state {
  grid-column: 1 / -1;
}

.doc-group {
  padding: 22px;
}

.doc-group__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.doc-group__header span {
  color: var(--text-soft);
  font-size: 0.82rem;
}

.doc-group__items {
  display: grid;
  gap: 10px;
}

.doc-list-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.doc-group__items > :first-child {
  border-top: 0;
  padding-top: 0;
}

.doc-list-item:hover strong,
.doc-list-item:focus-visible strong {
  color: var(--accent-strong);
}

.doc-list-item__title-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: baseline;
}

.doc-list-item__title-row strong {
  color: var(--text-strong);
  font-size: 0.98rem;
}

.doc-list-item__title-row code {
  color: var(--text-soft);
  font-size: 0.76rem;
}

.doc-list-item__arrow {
  color: var(--text-soft);
  font-size: 1.1rem;
}

.doc-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: var(--content-width);
}

.doc-meta__item {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(17, 27, 49, 0.72);
}

.doc-meta__item span {
  color: var(--text-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.doc-meta__item strong,
.doc-meta__item code {
  color: var(--text-strong);
  font-size: 0.92rem;
  line-height: 1.45;
}

.doc-shell__article {
  width: 100%;
  max-width: var(--content-width);
  padding: 34px 40px;
}

.doc-markdown {
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.82;
}

.doc-markdown > :first-child {
  margin-top: 0;
}

.doc-markdown > :last-child {
  margin-bottom: 0;
}

.doc-markdown h1,
.doc-markdown h2,
.doc-markdown h3,
.doc-markdown h4 {
  position: relative;
  margin: 2.4rem 0 1rem;
  color: var(--text-strong);
  scroll-margin-top: 120px;
}

.doc-markdown h1 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.doc-markdown h2 {
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-display);
  font-size: 1.72rem;
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.doc-markdown h3 {
  font-size: 1.22rem;
  line-height: 1.35;
}

.doc-markdown h4 {
  font-size: 1.02rem;
}

.heading-anchor {
  position: absolute;
  left: -1.2rem;
  top: 0.08em;
  color: #5d6d88;
  opacity: 0;
}

.doc-markdown h2:hover .heading-anchor,
.doc-markdown h3:hover .heading-anchor,
.doc-markdown h4:hover .heading-anchor {
  opacity: 1;
}

.doc-markdown p,
.doc-markdown ul,
.doc-markdown ol,
.doc-markdown blockquote,
.doc-markdown table,
.doc-markdown pre,
.doc-markdown hr {
  margin: 0 0 1.2rem;
}

.doc-markdown ul,
.doc-markdown ol {
  padding-left: 1.45rem;
}

.doc-markdown li + li {
  margin-top: 0.35rem;
}

.doc-markdown strong {
  color: var(--text-strong);
}

.doc-markdown a {
  color: #8ceac1;
  text-decoration: underline;
  text-decoration-color: rgba(140, 234, 193, 0.38);
  text-underline-offset: 0.18em;
}

.doc-markdown a:hover,
.doc-markdown a:focus-visible {
  color: #b4f8d8;
}

.doc-markdown hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.doc-markdown blockquote {
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
  background: rgba(88, 211, 155, 0.08);
}

.doc-markdown table {
  width: 100%;
  display: block;
  overflow-x: auto;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(10, 17, 32, 0.95);
}

.doc-markdown thead {
  background: rgba(255, 255, 255, 0.03);
}

.doc-markdown th,
.doc-markdown td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  vertical-align: top;
}

.doc-markdown th {
  color: var(--text-soft);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.doc-markdown pre {
  padding: 18px 20px;
  overflow: auto;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface-code);
}

.doc-markdown pre code {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  color: #d7e4f8;
  font-size: 0.88rem;
  line-height: 1.75;
}

.doc-markdown :not(pre) > code {
  padding: 0.18rem 0.44rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-strong);
  font-size: 0.88em;
}

.doc-loading,
.doc-error,
.empty-state,
.doc-empty {
  max-width: var(--content-width);
  padding: 18px 20px;
}

.doc-loading {
  position: relative;
  overflow: hidden;
}

.doc-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  animation: shimmer 1.2s infinite;
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

.doc-pagination {
  max-width: var(--content-width);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.doc-pagination__link {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
}

.doc-pagination__link:hover,
.doc-pagination__link:focus-visible {
  border-color: var(--border-strong);
}

.doc-pagination__label {
  color: var(--text-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.doc-pagination__title {
  color: var(--text-strong);
  font-size: 0.98rem;
  font-weight: 700;
}

.outline {
  display: grid;
  gap: 18px;
}

.outline__block {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.outline__block:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.outline__title {
  font-family: var(--font-display);
}

.outline__list,
.outline__quick-list {
  display: grid;
  gap: 8px;
}

.outline__link,
.outline__quick-list a {
  display: block;
  padding: 9px 10px;
  border-radius: 10px;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.45;
  border: 1px solid transparent;
}

.outline__quick-list a {
  background: rgba(17, 27, 49, 0.72);
  border-color: var(--border);
}

.outline__link:hover,
.outline__link:focus-visible,
.outline__quick-list a:hover,
.outline__quick-list a:focus-visible {
  color: var(--text-strong);
  background: rgba(17, 27, 49, 0.82);
  border-color: var(--border-strong);
}

.outline__link.is-active {
  color: var(--accent-strong);
  background: var(--accent-soft);
  border-color: rgba(88, 211, 155, 0.18);
}

.outline__link--depth-3 {
  margin-left: 10px;
}

.noscript-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  max-width: 28rem;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(17, 27, 49, 0.96);
  box-shadow: var(--shadow);
  color: var(--text-muted);
}

@media (max-width: 1320px) {
  .site-shell {
    grid-template-columns: 290px minmax(0, 1fr);
  }

  .panel--outline {
    position: fixed;
    top: 76px;
    right: 16px;
    bottom: 16px;
    width: min(320px, calc(100vw - 32px));
    height: auto;
    z-index: 40;
    transform: translateX(calc(100% + 24px));
    transition: transform 180ms ease;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  body.outline-open .panel--outline {
    transform: translateX(0);
  }
}

@media (max-width: 1080px) {
  .mobile-bar {
    display: flex;
  }

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

  .panel--nav {
    position: fixed;
    top: 65px;
    left: 0;
    bottom: 0;
    width: min(330px, calc(100vw - 20px));
    height: auto;
    z-index: 45;
    transform: translateX(calc(-100% - 20px));
    transition: transform 180ms ease;
    box-shadow: var(--shadow);
  }

  body.nav-open .panel--nav {
    transform: translateX(0);
  }

  .topbar {
    top: 65px;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 20px 16px;
  }

  .topbar__meta {
    justify-items: start;
    width: 100%;
  }

  .meta-pill-row,
  .topbar__actions {
    justify-content: flex-start;
  }

  .content-area {
    padding: 20px 20px 40px;
  }

  .doc-groups,
  .reference-grid,
  .doc-meta {
    grid-template-columns: 1fr 1fr;
  }

  .heading-anchor {
    display: none;
  }
}

@media (max-width: 760px) {
  .topbar__title {
    font-size: 1.65rem;
  }

  .home-intro,
  .reference-card,
  .doc-group,
  .doc-shell__article,
  .reading-card {
    padding: 18px;
  }

  .home-intro__title {
    max-width: none;
    font-size: 2.2rem;
  }

  .reading-card {
    grid-template-columns: 1fr;
  }

  .reading-card__link {
    justify-self: start;
  }

  .doc-groups,
  .reference-grid,
  .doc-meta,
  .doc-pagination {
    grid-template-columns: 1fr;
  }

  .doc-shell__article {
    padding: 24px 20px;
  }

  .doc-markdown {
    font-size: 0.98rem;
    line-height: 1.78;
  }

  .doc-markdown h1 {
    font-size: 2rem;
  }

  .doc-markdown h2 {
    font-size: 1.45rem;
  }

  .topbar__actions,
  .home-intro__actions,
  .meta-pill-row {
    width: 100%;
  }

  .topbar__actions a,
  .home-intro__actions a {
    flex: 1 1 auto;
  }
}
