/* ============================================================
   GLOSSARY — public, crawlable, no app shell.
   Deliberately plain: these pages exist to be read and indexed,
   so they load fast and put the words first.
   ============================================================ */

body.gl { margin: 0; background: var(--bg); color: var(--ink); }

.gl-top {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 22px; border-bottom: 2px solid var(--line);
  position: sticky; top: 0; background: var(--bg); z-index: 5;
}
.gl-brand { font-family: var(--fdisplay); font-size: 24px; font-weight: 700; color: var(--ink-strong); text-decoration: none; }
.gl-top nav { display: flex; gap: 16px; }
.gl-top nav a { color: var(--muted); font-weight: 800; font-size: 14px; text-decoration: none; }
.gl-top nav a:hover { color: var(--ink-strong); }

.gl-main { max-width: 720px; margin: 0 auto; padding: 34px 22px 60px; }

.gl-crumb { font-size: 13px; font-weight: 700; color: var(--faint); margin-bottom: 18px; }
.gl-crumb a { color: var(--muted); text-decoration: none; }
.gl-crumb span { margin: 0 4px; }

.gl-main h1 {
  font-family: var(--fdisplay); font-size: clamp(30px, 6vw, 42px); font-weight: 700;
  line-height: 1.15; margin: 0 0 8px; color: var(--ink-strong);
}
.gl-kicker {
  font-weight: 900; font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--wc, var(--green)); margin: 0 0 22px;
}
.gl-lede { font-size: 17px; line-height: 1.65; color: var(--muted); font-weight: 600; margin: 0 0 30px; }

.gl-main article h2, .gl-main section h2 {
  font-family: var(--fdisplay); font-size: 22px; font-weight: 700;
  margin: 30px 0 10px; color: var(--ink-strong);
}
.gl-main article p { font-size: 17px; line-height: 1.7; margin: 0 0 16px; color: var(--ink); }

/* self-check block — the reason someone stays on the page past the definition */
.gl-quiz {
  margin: 34px 0; padding: 20px; border: 2px solid var(--line);
  border-radius: var(--r-md); background: var(--card);
}
.gl-quiz h2 { margin-top: 0; }
.gl-q { font-weight: 800; font-size: 16px; color: var(--ink-strong); margin: 0 0 14px; }
.gl-opts { margin: 0; padding-left: 20px; }
.gl-opts li { margin-bottom: 8px; font-weight: 600; color: var(--muted); }
.gl-opts li.right { color: var(--ink-strong); font-weight: 800; }
.gl-opts li.right span {
  font-size: 10px; letter-spacing: .07em; text-transform: uppercase;
  color: var(--green); font-weight: 900; margin-left: 6px;
}
.gl-why { margin: 14px 0 0; color: var(--muted); font-weight: 600; font-size: 15px; line-height: 1.6; }

.gl-cta {
  margin: 34px 0; padding: 24px; border: 2px solid var(--green);
  border-radius: var(--r-md); background: var(--green-soft);
}
.gl-cta h2 { margin-top: 0; }
.gl-cta p { color: var(--muted); font-weight: 600; line-height: 1.6; margin: 0 0 16px; }
.gl-cta .db, body.gl .gl-cta .db { display: inline-block; text-decoration: none; padding: 12px 22px; }

.gl-rel ul { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.gl-rel a {
  display: inline-block; padding: 7px 13px; border: 2px solid var(--line);
  border-radius: 999px; color: var(--muted); font-weight: 700; font-size: 14px; text-decoration: none;
}
.gl-rel a:hover { color: var(--ink-strong); border-color: var(--muted); }

.gl-group { margin: 34px 0; }
.gl-group h2 {
  padding-left: 12px; border-left: 6px solid var(--wc, var(--green));
  font-size: 20px; margin-bottom: 12px;
}
.gl-terms { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); }
.gl-terms a { color: var(--ink); font-weight: 700; font-size: 15px; text-decoration: none; }
.gl-terms a:hover { color: var(--green); text-decoration: underline; }

.gl-foot {
  border-top: 2px solid var(--line); padding: 26px 22px 40px;
  max-width: 720px; margin: 0 auto;
}
.gl-foot p { color: var(--faint); font-weight: 600; font-size: 13px; line-height: 1.6; margin: 0 0 10px; }
.gl-foot b { color: var(--muted); }
.gl-foot a { color: var(--muted); text-decoration: none; }
.gl-foot a:hover { color: var(--ink-strong); }
