/* Amoli — the site.
   No web fonts, no scripts, no third-party requests of any kind: a page for a
   private app should not phone anyone either (a Google-hosted font would hand
   every visitor's IP to Google). System serif stack, and the brand's own
   colours — oat linen, charcoal, brass (the Oat palette the app ships as its
   default, and the palette of the wordmark card). */

:root {
  --ground: #e6e5de;
  --panel: #fcfcfa;
  --ink: #2c2b27;
  --ink-soft: #57554e;
  --brass: #a8793a;
  --brass-text: #7e5a20;
  --edge: rgba(44, 43, 39, 0.14);
}

@media (prefers-color-scheme: dark) {
  :root {
    --ground: #17140d;
    --panel: #241f14;
    --ink: #e9e6dd;
    --ink-soft: #c7c3b7;
    --brass: #c9a75f;
    --brass-text: #c9a75f;
    --edge: rgba(235, 227, 210, 0.17);
  }
}

* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0 20px 72px;
  background: var(--ground);
  color: var(--ink);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia,
    "Times New Roman", serif;
  font-size: 19px;
  line-height: 1.62;
  -webkit-text-size-adjust: 100%;
}

.wrap { max-width: 41rem; margin: 0 auto; }

/* ---- masthead ---------------------------------------------------------- */

header { padding: 60px 0 8px; }

.mark {
  display: flex;
  align-items: baseline;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.mark .fleuron { color: var(--brass); font-size: 26px; }

.mark h1 {
  margin: 0;
  font-size: 46px;
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.5px;
}

/* The brand line, set as it is on the wordmark card. */
.tagline {
  margin: 10px 0 0;
  font-size: 15px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--brass-text);
}

/* Interior pages name themselves plainly instead. */
.tagline.plain {
  font-size: 22px;
  letter-spacing: 0;
  text-transform: none;
  font-style: italic;
  color: var(--ink-soft);
}

/* ---- type -------------------------------------------------------------- */

h2 {
  margin: 52px 0 12px;
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -0.2px;
}

h3 { margin: 30px 0 6px; font-size: 20px; font-weight: 600; }

p { margin: 0 0 16px; }

a { color: var(--brass-text); text-underline-offset: 3px; }

.lede { font-style: italic; font-size: 22px; }

ul { margin: 0 0 16px; padding-left: 1.15em; }
li { margin-bottom: 9px; }

.meta { font-size: 16px; font-style: italic; color: var(--ink-soft); }

/* A small-caps rule, the way the app heads its sections. */
.label {
  margin: 56px 0 14px;
  font-size: 14px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--edge);
  padding-bottom: 8px;
}

/* ---- plates ------------------------------------------------------------ */

.promise {
  margin: 34px 0;
  padding: 24px 26px;
  background: var(--panel);
  border: 1px solid var(--edge);
  border-radius: 16px;
  box-shadow: 0 10px 30px -18px rgba(44, 43, 39, 0.45);
}

.promise p:last-child { margin-bottom: 0; }

.governs {
  margin: 0 0 26px;
  padding: 12px 16px;
  border-left: 2px solid var(--brass);
  background: var(--panel);
  border-radius: 0 10px 10px 0;
}

/* ---- the three steps --------------------------------------------------- */

.steps { margin: 0; padding: 0; list-style: none; }

.steps li {
  margin: 0 0 22px;
  padding-left: 46px;
  position: relative;
}

.steps .n {
  position: absolute;
  left: 0;
  top: -2px;
  font-size: 21px;
  font-style: italic;
  color: var(--brass-text);
}

/* ---- the feature list -------------------------------------------------- */

.features { margin: 0; padding: 0; list-style: none; }

.features li {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--edge);
}

.features li:last-child { border-bottom: none; }

.features .name {
  display: block;
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 3px;
}

/* ---- footer ------------------------------------------------------------ */

.rule { margin: 52px 0 0; text-align: center; color: var(--brass); opacity: 0.6; }

nav.foot {
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid var(--edge);
  font-size: 17px;
}

nav.foot a { margin-right: 20px; }

.langs { margin: 14px 0 0; }
.langs a, .langs .here { margin-right: 18px; }
.langs .here { color: var(--ink-soft); }
