@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/inter-latin-wght.woff2") format("woff2");
}

:root {
  --night: #000;
  --cream: #fbfbf5;
  --white: #fff;
  --ink: #000;
  --mute: #52525b;
  --mute-dark: #9797a2;
  --hair: #e4e4e7;
  --aloe: #c1fbd4;
  --pistachio: #d4f9e0;
  --shade-10: #f4f4f5;
  --shade-70: #3f3f46;
  --max: 72rem;
  --gutter: 1.25rem;
  --radius: 1rem;
  --page: var(--night);
  --fg: var(--white);
  --fg-soft: var(--mute-dark);
  --nav-bg: var(--night);
  --nav-fg: var(--white);
  --link-nav: var(--mute-dark);
  --link-nav-hover: var(--white);
  --hero-bg: var(--night);
  --ghost-fg: var(--white);
  --ghost-border: var(--white);
  --ghost-hover-bg: var(--white);
  --ghost-hover-fg: var(--night);
  --demo-bg: var(--night);
  --demo-fg: var(--white);
  --footer-link: var(--white);
  --doc-link: var(--aloe);
  color-scheme: dark;
}

@media (prefers-color-scheme: light) {
  :root {
    --page: var(--cream);
    --fg: var(--ink);
    --fg-soft: var(--mute);
    --nav-bg: var(--cream);
    --nav-fg: var(--ink);
    --link-nav: var(--mute);
    --link-nav-hover: var(--ink);
    --hero-bg: var(--cream);
    --ghost-fg: var(--ink);
    --ghost-border: var(--ink);
    --ghost-hover-bg: var(--ink);
    --ghost-hover-fg: var(--white);
    --demo-bg: var(--white);
    --demo-fg: var(--ink);
    --footer-link: var(--ink);
    --doc-link: #0f6d3c;
    color-scheme: light;
  }
}

html:has(#th-light:checked),
html[data-theme="light"] {
  --page: var(--cream);
  --fg: var(--ink);
  --fg-soft: var(--mute);
  --nav-bg: var(--cream);
  --nav-fg: var(--ink);
  --link-nav: var(--mute);
  --link-nav-hover: var(--ink);
  --hero-bg: var(--cream);
  --ghost-fg: var(--ink);
  --ghost-border: var(--ink);
  --ghost-hover-bg: var(--ink);
  --ghost-hover-fg: var(--white);
  --demo-bg: var(--white);
  --demo-fg: var(--ink);
  --footer-link: var(--ink);
  --doc-link: #0f6d3c;
  color-scheme: light;
}

html:has(#th-dark:checked),
html[data-theme="dark"] {
  --page: var(--night);
  --fg: var(--white);
  --fg-soft: var(--mute-dark);
  --nav-bg: var(--night);
  --nav-fg: var(--white);
  --link-nav: var(--mute-dark);
  --link-nav-hover: var(--white);
  --hero-bg: var(--night);
  --ghost-fg: var(--white);
  --ghost-border: var(--white);
  --ghost-hover-bg: var(--white);
  --ghost-hover-fg: var(--night);
  --demo-bg: var(--night);
  --demo-fg: var(--white);
  --footer-link: var(--white);
  --doc-link: var(--aloe);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  color: var(--fg);
  background: var(--page);
  font-family: Inter, Helvetica, Arial, sans-serif;
  font-weight: 420;
  font-feature-settings: "ss03" 1;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

a:hover {
  text-decoration-thickness: 2px;
}

a:focus-visible,
.brand:focus-visible,
.cta:focus-visible,
#v-guest:focus-visible ~ .sheet .switch label[for="v-guest"],
#v-ok:focus-visible ~ .sheet .switch label[for="v-ok"] {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 20;
  background: var(--white);
  color: var(--ink);
  padding: 0.4rem 0.7rem;
}

.skip:focus {
  top: 0.6rem;
}

.wrap {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

@media (min-width: 900px) {
  :root {
    --gutter: 3.125rem;
  }
}

@media (min-width: 1200px) {
  :root {
    --gutter: 5.625rem;
  }
}

.top {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--nav-bg);
  color: var(--nav-fg);
}

.top-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  min-height: 4.5rem;
  padding-block: 0.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 550;
  letter-spacing: -0.02em;
  line-height: 1;
}

.brand img {
  display: block;
  width: 1.85rem;
  height: 1.85rem;
  translate: 0 0.04em;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.35rem;
  margin-inline-end: auto;
  margin-inline-start: 1.5rem;
}

nav a {
  color: var(--link-nav);
  text-decoration: none;
  font-weight: 450;
  font-size: 0.9375rem;
}

nav a:hover {
  color: var(--link-nav-hover);
  text-decoration: none;
}

.theme {
  display: flex;
  flex-shrink: 0;
  margin-inline-end: 0.65rem;
  border: 1.5px solid var(--ghost-border);
  border-radius: 9999px;
}

.theme input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.theme label {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  cursor: pointer;
  color: var(--fg-soft);
}

.theme svg {
  display: block;
}

.theme input:checked + label,
.theme input:focus-visible + label {
  color: var(--nav-fg);
  background: color-mix(in srgb, var(--fg) 12%, transparent);
}

@media (prefers-color-scheme: dark) {
  .theme:not(:has(:checked)) label[for="th-dark"] {
    color: var(--nav-fg);
    background: color-mix(in srgb, var(--fg) 12%, transparent);
  }
}

@media (prefers-color-scheme: light) {
  .theme:not(:has(:checked)) label[for="th-light"] {
    color: var(--nav-fg);
    background: color-mix(in srgb, var(--fg) 12%, transparent);
  }
}

.hero {
  position: relative;
  z-index: 1;
  color: var(--fg);
  background: var(--hero-bg);
  padding: 5rem 0 6rem;
  overflow: hidden;
}

.sky {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  opacity: 0.9;
  mask-image: linear-gradient(180deg, transparent 0, #000 22%, #000 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(16rem, 0.95fr);
  gap: 1rem 1.25rem;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.kicker {
  margin: 0 0 0.7rem;
  color: var(--fg-soft);
  font-size: 0.9375rem;
  font-weight: 450;
}

.hero h1 {
  margin: 0 0 1.25rem;
  max-width: 11em;
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 330;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.mascot {
  display: block;
  width: 100%;
  height: auto;
  animation: mascot-bob 5.5s ease-in-out infinite;
}

.mascot-swap {
  display: block;
}

.mascot-swap .on-light {
  display: none;
}

@media (prefers-color-scheme: light) {
  html:not(:has(#th-dark:checked)):not([data-theme="dark"]) .mascot-swap .on-dark {
    display: none;
  }

  html:not(:has(#th-dark:checked)):not([data-theme="dark"]) .mascot-swap .on-light {
    display: block;
  }

  html:not(:has(#th-dark:checked)):not([data-theme="dark"]) .sky,
  html:not(:has(#th-dark:checked)):not([data-theme="dark"]) .demo-cloud {
    opacity: 0.45;
    mix-blend-mode: multiply;
  }
}

html:has(#th-light:checked) .mascot-swap .on-dark,
html[data-theme="light"] .mascot-swap .on-dark {
  display: none;
}

html:has(#th-light:checked) .mascot-swap .on-light,
html[data-theme="light"] .mascot-swap .on-light {
  display: block;
}

html:has(#th-light:checked) .sky,
html:has(#th-light:checked) .demo-cloud,
html[data-theme="light"] .sky,
html[data-theme="light"] .demo-cloud {
  opacity: 0.45;
  mix-blend-mode: multiply;
}

html:has(#th-dark:checked) .mascot-swap .on-dark,
html[data-theme="dark"] .mascot-swap .on-dark {
  display: block;
}

html:has(#th-dark:checked) .mascot-swap .on-light,
html[data-theme="dark"] .mascot-swap .on-light {
  display: none;
}

html:has(#th-dark:checked) .sky,
html:has(#th-dark:checked) .demo-cloud,
html[data-theme="dark"] .sky,
html[data-theme="dark"] .demo-cloud {
  opacity: 0.9;
  mix-blend-mode: normal;
}

.mascot-wide {
  display: block;
  margin: 0.4rem auto 1rem;
  max-width: 36rem;
}

.mascot-mini {
  max-width: 16rem;
  margin-inline: auto;
}

@keyframes mascot-bob {
  50% {
    transform: translateY(-12px);
  }
}

.lede,
.status,
.wrap > section > p,
.scene-band .wrap > p,
.photo-inner > div > p,
.who,
.steps,
.counter-copy p,
#price p {
  max-width: 36rem;
}

.lede {
  margin: 0 0 1.75rem;
  color: var(--fg-soft);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  border-radius: 9999px;
  font-weight: 550;
  font-size: 1rem;
  line-height: 1.5;
  text-decoration: none;
  border: 1.5px solid transparent;
}

.cta:hover {
  text-decoration: none;
}

.cta-ghost {
  color: var(--ghost-fg);
  background: transparent;
  border-color: var(--ghost-border);
}

.cta-ghost:hover {
  background: var(--ghost-hover-bg);
  color: var(--ghost-hover-fg);
}

.cta-mint {
  color: var(--ink);
  background: var(--aloe);
  border-color: var(--aloe);
}

.cta-mint:hover {
  background: var(--pistachio);
  border-color: var(--pistachio);
}

.cta-solid {
  color: var(--white);
  background: var(--night);
  border-color: var(--night);
}

.cta-solid:hover {
  background: var(--shade-70);
  border-color: var(--shade-70);
}

.cta-sm {
  padding: 0.45rem 1rem;
  font-size: 0.9375rem;
}

.status {
  margin: 1.25rem 0 0;
  color: var(--fg-soft);
  font-size: 0.9375rem;
}

main {
  position: relative;
  z-index: 1;
  background: transparent;
  color: var(--fg);
}

main > .wrap,
main > .scene-band,
main > .demo-strip {
  position: relative;
  z-index: 1;
}

section {
  padding: 4rem 0 0.5rem;
  scroll-margin-top: 5.5rem;
}

.preview-wrap {
  padding-top: 3rem;
}

h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 330;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

#v-guest,
#v-ok {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.panel {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
}

.sheet {
  overflow: hidden;
}

.sheet-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem 1rem;
  padding: 0.95rem 1.15rem;
  border-bottom: 1px solid var(--hair);
}

.sheet-shop {
  margin: 0;
  font-weight: 550;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.switch {
  display: flex;
  overflow: hidden;
  border: 1.5px solid var(--ink);
  border-radius: 9999px;
}

.switch label {
  padding: 0.32rem 0.9rem;
  cursor: pointer;
  color: var(--mute);
  font-weight: 550;
  font-size: 0.875rem;
}

#v-guest:checked ~ .sheet .switch label[for="v-guest"],
#v-ok:checked ~ .sheet .switch label[for="v-ok"] {
  color: var(--white);
  background: var(--ink);
}

.rack {
  margin: 0;
  padding: 0.2rem 0;
  list-style: none;
}

.rack li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  column-gap: 1rem;
  align-items: baseline;
  padding: 0.9rem 1.15rem;
  border-bottom: 1px solid var(--hair);
}

.rack li:last-child {
  border-bottom: 0;
}

.pname {
  font-weight: 550;
  font-size: 1.05rem;
  letter-spacing: -0.015em;
}

.pmeta {
  grid-column: 1;
  color: var(--mute);
  font-size: 0.875rem;
}

.pprice {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  font-variant-numeric: tabular-nums;
  font-weight: 550;
}

.fog {
  color: var(--mute);
  filter: blur(3px);
}

#v-ok:checked ~ .sheet .fog.price-ok {
  filter: none;
}

.dollars {
  font-size: 1.125rem;
}

.price-ok {
  display: none;
}

#v-ok:checked ~ .sheet .price-ok {
  display: inline;
}

#v-ok:checked ~ .sheet .price-guest {
  display: none;
}

.sheet-foot {
  margin: 0;
  padding: 0.85rem 1.15rem 1.05rem;
  border-top: 1px solid var(--hair);
  color: var(--mute);
  font-size: 0.875rem;
}

.sheet-foot.price-ok {
  display: none;
}

#v-ok:checked ~ .sheet .sheet-foot.price-ok {
  display: block;
}

.queue {
  margin-top: 1.25rem;
  overflow: hidden;
}

.queue-bar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  padding: 0.85rem 1.15rem;
  background: var(--shade-10);
  border-bottom: 1px solid var(--hair);
}

.queue-title {
  margin: 0;
  font-weight: 550;
}

.queue-count {
  margin: 0;
  color: var(--mute);
  font-size: 0.875rem;
}

.queue-scroll {
  overflow-x: auto;
}

.pad {
  padding: 0.5rem 1.15rem 0.9rem;
}

.queue-table {
  margin: 0;
  border-collapse: collapse;
  width: 100%;
  min-width: 44rem;
}

.queue-table th,
.queue-table td {
  padding: 0.85rem 1.15rem;
  border-bottom: 1px solid var(--hair);
  text-align: left;
  vertical-align: top;
}

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

.queue-table th {
  font-weight: 450;
  color: var(--mute);
  font-size: 0.8125rem;
}

.name {
  display: block;
  font-weight: 550;
}

.sub {
  display: block;
  color: var(--mute);
  font-size: 0.8125rem;
  font-weight: 420;
}

.pill {
  display: inline-block;
  padding: 0.15rem 0.55rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 550;
}

.ok {
  background: var(--aloe);
  color: var(--ink);
}

.wait {
  background: var(--pistachio);
  color: var(--ink);
}

.do {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.8rem;
  font-weight: 550;
  font-size: 0.875rem;
  color: var(--white);
  background: var(--ink);
  border: 1.5px solid var(--ink);
  border-radius: 9999px;
}

.do-ghost {
  color: var(--ink);
  background: transparent;
}

.note {
  margin: 0.7rem 0 0;
  color: var(--fg-soft);
  font-size: 0.875rem;
}

.panel .note {
  color: var(--mute);
}

.scene-band {
  padding: 2.5rem 0 0.5rem;
}

.scene-band h2 {
  margin-bottom: 0.45rem;
}

.scene-band .wrap > p,
.counter-copy > p,
.photo-inner > div > p {
  margin: 0 0 0.85rem;
}

.photo-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.95fr);
  gap: 1rem 1.25rem;
  align-items: start;
}

.photo-inner .mascot,
.photo-inner .mascot-swap {
  max-width: 28rem;
  margin-inline: auto;
}

.counter-copy .mail,
.photo-inner .apply {
  margin-top: 1rem;
}

.mail {
  margin: 0;
  padding: 1.15rem 1.2rem 1.2rem;
}

.mail-from,
.mail-body {
  margin: 0 0 0.45rem;
  color: var(--mute);
}

.mail-subject {
  margin: 0 0 0.55rem;
  font-weight: 550;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.mail-actions {
  margin: 0.85rem 0 0;
  display: flex;
  gap: 0.6rem;
}

table {
  width: 100%;
  margin-top: 0.4rem;
  border-collapse: collapse;
}

caption {
  caption-side: bottom;
  padding-top: 0.65rem;
  color: var(--mute);
  text-align: left;
  font-size: 0.8125rem;
}

th,
td {
  padding: 0.65rem 0.75rem 0.65rem 0;
  border-bottom: 1px solid var(--hair);
  text-align: left;
  vertical-align: top;
}

th {
  font-weight: 550;
}

.apply {
  margin: 1.25rem 0 0;
  max-width: 24rem;
  padding: 1.15rem 1.2rem 1.2rem;
}

.apply-shop {
  margin: 0 0 0.15rem;
  font-weight: 550;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.apply-title {
  margin: 0 0 0.9rem;
  font-weight: 450;
}

.apply-field {
  margin: 0.7rem 0 0.25rem;
  color: var(--mute);
  font-size: 0.875rem;
}

.apply-file,
.apply-send {
  margin: 0;
  padding: 0.55rem 0.85rem;
  border: 1.5px solid var(--hair);
  border-radius: 0.5rem;
}

.apply-send {
  margin-top: 0.95rem;
  font-weight: 550;
  text-align: center;
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  border-radius: 9999px;
}

.steps {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  margin: 0 0 0.9rem;
  padding-left: 2.1rem;
  counter-increment: step;
  max-width: 36rem;
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--fg-soft);
  font-variant-numeric: tabular-nums;
  font-weight: 330;
  font-size: 0.95rem;
}

.who {
  margin: 0.85rem 0 0;
  padding-left: 1.15rem;
}

.who li + li {
  margin-top: 0.4rem;
}

.demo-strip {
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
  padding: 4.5rem 0 5rem;
  color: var(--demo-fg);
  background: var(--demo-bg);
}

.demo-cloud {
  position: absolute;
  width: min(32rem, 70vw);
  pointer-events: none;
  opacity: 0.85;
}

.demo-cloud-l {
  left: -12%;
  bottom: -28%;
}

.demo-cloud-r {
  right: -14%;
  top: -34%;
  transform: scaleX(-1);
}

.demo-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(10rem, 16rem) minmax(0, 1fr);
  gap: 1.5rem 2rem;
  align-items: center;
}

.demo-inner h2,
.demo-inner p {
  max-width: 36rem;
}

.demo-inner .cta {
  margin-top: 0.35rem;
}

footer {
  position: relative;
  z-index: 1;
  background: transparent;
  color: var(--fg-soft);
  padding: 2rem 0 2.75rem;
  font-size: 0.9375rem;
}

footer p {
  margin: 0;
}

footer a {
  color: var(--footer-link);
}

.missing {
  position: relative;
  z-index: 1;
  background: transparent;
  color: var(--fg);
  min-height: calc(100vh - 4.5rem);
  padding: 5rem 0 6rem;
}

.missing h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 330;
  letter-spacing: -0.025em;
}

/* Between the desktop bar and the phone layout the six-item header would wrap
   onto a second row. The bar is sticky, so a wrapped bar eats the viewport and
   throws anchor scrolling off by its own height. The in-page anchors go first:
   scrolling already reaches those sections, a page cannot be reached any other
   way. */
@media (max-width: 960px) {
  nav a[href^='#'] {
    display: none;
  }
}

@media (max-width: 800px) {
  nav {
    display: none;
  }

  .top-inner .cta-sm {
    margin-left: auto;
  }

  html {
    scroll-padding-top: 4.75rem;
  }

  section {
    scroll-margin-top: 4.75rem;
  }

  .hero-grid,
  .photo-inner,
  .demo-inner {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
  }

  .hero {
    padding: 2.5rem 0 2.75rem;
  }

  .sky {
    mask-image: linear-gradient(180deg, transparent 0 42%, #000 78%);
  }

  .mascot-wide {
    max-width: none;
  }

  .demo-strip {
    margin-top: 2rem;
    padding: 3rem 0 3.5rem;
  }

  section {
    padding-top: 2.75rem;
  }

  .queue-table {
    min-width: 0;
  }

  .queue-table thead {
    display: none;
  }

  .queue-table tr {
    display: block;
    padding: 0.95rem 1.15rem;
    border-bottom: 1px solid var(--hair);
  }

  .queue-table tr:last-child {
    border-bottom: 0;
  }

  .queue-table td {
    display: block;
    padding: 0.12rem 0;
    border: 0;
  }

  .queue-table td:last-child {
    margin-top: 0.5rem;
  }

  .pmeta {
    display: none;
  }
}

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

.legal {
  padding: 3rem 0 4rem;
}

.legal .wrap {
  max-width: 42rem;
}

.legal h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 330;
  letter-spacing: -0.025em;
}

.legal h2 {
  margin: 2rem 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 550;
  letter-spacing: -0.01em;
}

.legal p,
.legal li {
  color: var(--fg-soft);
  max-width: none;
}

.legal p strong,
.legal li strong {
  color: var(--fg);
}

.legal a {
  color: var(--footer-link);
}

.legal ul {
  padding-left: 1.15rem;
}

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

/* Documentation pages: prose wide enough for a table, narrow enough to read. */
.docs {
  padding: 3rem 0 4rem;
}

.docs .wrap {
  max-width: 52rem;
}

.docs h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 330;
  letter-spacing: -0.025em;
}

.docs h2 {
  margin: 2.75rem 0 0.6rem;
  font-size: 1.45rem;
  font-weight: 550;
  letter-spacing: -0.01em;
}

.docs h3 {
  margin: 1.75rem 0 0.4rem;
  font-size: 1.0625rem;
  font-weight: 560;
}

.faq section {
  padding: 0;
}

.docs p,
.docs li {
  color: var(--fg-soft);
  max-width: none;
}

.docs p strong,
.docs li strong,
.docs dt {
  color: var(--fg);
}

.docs a {
  color: var(--doc-link);
}

.docs code {
  padding: 0.1rem 0.35rem;
  border-radius: 0.35rem;
  background: var(--shade-70);
  color: var(--white);
  font-size: 0.875em;
}

.docs ol,
.docs ul {
  padding-left: 1.2rem;
}

.docs li {
  margin: 0.35rem 0;
}

.docs .panel {
  margin: 1.25rem 0;
}

.docs .panel p,
.docs .panel li,
.docs .panel td,
.docs .panel th {
  color: var(--ink);
}

.docs .panel a {
  color: var(--ink);
}

.docs table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.docs th,
.docs td {
  padding: 0.55rem 0.6rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--hair);
}

.docs th {
  font-weight: 560;
  white-space: nowrap;
}

.docs tr:last-child td {
  border-bottom: 0;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 1.25rem;
  color: var(--fg-soft);
  font-size: .875rem;
}

.toc {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  columns: 2;
  column-gap: 2rem;
}

.toc li {
  margin: 0 0 0.3rem;
  break-inside: avoid;
}

.docs .updated {
  color: var(--fg-soft);
  font-size: 0.9375rem;
}

@media (max-width: 40rem) {
  .toc {
    columns: 1;
  }
}

.docs dl {
  margin: 1rem 0 0;
}

.docs dt {
  margin: 0.9rem 0 0.15rem;
  font-weight: 560;
}

.docs dd {
  margin: 0 0 0 1.2rem;
  color: var(--fg-soft);
}

/* The link column reads as one word; the table scrolls if it does not fit. */
.docs td:last-child a {
  white-space: nowrap;
}
