:root {
  color-scheme: dark;
}

body {
  margin: 0;
  padding: 48px 24px 96px;
  background: #211f1c;
  color: #ede6db;
  font-family:
    'Segoe UI',
    system-ui,
    -apple-system,
    sans-serif;
  line-height: 1.6;
}

.fmlr-doc {
  max-width: 70ch;
  margin: 0 auto;
}

.fmlr-doc__home {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  font-weight: 600;
  color: #ede6db;
  text-decoration: none;
}

.fmlr-doc__home img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}

.fmlr-doc h1 {
  margin: 0 0 8px;
  font-size: 36px;
  letter-spacing: -1px;
}

.fmlr-doc__updated {
  margin: 0 0 40px;
  color: #a89e93;
  font-size: 14px;
}

.fmlr-doc h2 {
  margin: 40px 0 12px;
  font-size: 22px;
  color: #ede6db;
}

.fmlr-doc p {
  margin: 0 0 16px;
  color: #c4b8ac;
}

.fmlr-doc a {
  color: #da7756;
  text-underline-offset: 3px;
}

.fmlr-doc strong {
  color: #ede6db;
}

.fmlr-doc ul {
  margin: 0 0 16px;
  padding-left: 22px;
  color: #c4b8ac;
}

.fmlr-doc li {
  margin-bottom: 8px;
}

/* Primary action on a doc page. Only /account ships one so far: the link out to
   the Polar customer portal, which is the whole reason that page exists.

   Scoped under .fmlr-doc on purpose. `.fmlr-doc a` above is (0,1,1) and would
   otherwise beat a lone (0,1,0) class, painting the label in the accent colour
   ON the accent background: invisible text on the one button that matters.
   Keep every rule here at or above that weight. */
.fmlr-doc .fmlr-doc__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 44px;
  margin-bottom: 12px;
  padding: 12px 28px;
  border-radius: 8px;

  font-size: 17px;
  font-weight: 600;
  color: #1a1816;
  text-decoration: none;

  background: #da7756;
}

@media (hover: hover) {
  .fmlr-doc .fmlr-doc__cta:hover {
    color: #1a1816;
    background: #e08a6a;
  }
}

.fmlr-doc .fmlr-doc__cta:focus-visible {
  color: #1a1816;
  background: #e08a6a;
  outline: 2px solid #ede6db;
  outline-offset: 2px;
}

.fmlr-doc__cta-note {
  margin: 0 0 40px;
  color: #a89e93;
  font-size: 14px;
}
