/* ==========================================================================
   Capture Shield — WebMaghrebi design system
   --------------------------------------------------------------------------
   The tokens, type scale and component language here are taken from
   https://webmaghrebi.com so that this product section reads as part of the
   same site. Everything is served from this origin: the three brand fonts are
   self-hosted under ../fonts/, so the page still makes no external request —
   no CDN, no Google Fonts, no analytics. A privacy tool's own site should not
   be the exception.
   ========================================================================== */

/* ------------------------------------------------------------------ fonts */

@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url('../fonts/space-grotesk-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304,
    U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url('../fonts/space-grotesk-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308,
    U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113,
    U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304,
    U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308,
    U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113,
    U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/jetbrains-mono-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304,
    U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/jetbrains-mono-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308,
    U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113,
    U+2C60-2C7F, U+A720-A7FF;
}

/* ------------------------------------------------------------------ tokens */

:root {
  color-scheme: dark;

  /* WebMaghrebi palette */
  --ink-950: #060d0a;
  --ink-900: #0a1512;
  --ink-800: #10201a;
  --ink-700: #1a2f27;
  --gold-400: #e3b65e;
  --gold-300: #efcf8f;
  --emerald-500: #17b583;
  --emerald-400: #2fd39e;
  --emerald-300: #6fe7c0;
  --red-400: #ff6568;
  --fg: #edf5f1;
  --fg-muted: #9db5ab;

  --radius-ctrl: 12px;
  --radius-card: 20px;
  --radius-hero: 28px;

  --font-display: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  --font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;

  --shadow-glow: 0 20px 60px rgba(23, 181, 131, 0.08);
  --shadow-glow-strong: 0 24px 80px rgba(23, 181, 131, 0.16);

  /* Names used by the page markup, mapped onto the palette above. */
  --bg: var(--ink-950);
  --bg-raised: var(--ink-900);
  --surface: var(--ink-800);
  --surface-hover: var(--ink-700);
  --border: var(--ink-700);
  --border-strong: #244136;
  --text: var(--fg);
  --text-muted: var(--fg-muted);
  --text-subtle: #6d867d;
  --accent: var(--emerald-500);
  --accent-text: var(--emerald-300);
  --accent-soft: rgba(23, 181, 131, 0.14);
  --warn: var(--gold-400);
  --radius: var(--radius-card);
  --radius-sm: var(--radius-ctrl);
  --font: var(--font-sans);
  --mono: var(--font-mono);
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(1100px 640px at 85% -10%, rgba(23, 181, 131, 0.12), transparent 60%),
    radial-gradient(900px 560px at -10% 25%, rgba(227, 182, 94, 0.06), transparent 55%),
    var(--ink-950);
  background-attachment: fixed;
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* The same fine film grain the main site lays over its background. */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

body > * {
  position: relative;
  z-index: 2;
}

a {
  color: var(--emerald-300);
  text-underline-offset: 4px;
}

a:hover {
  color: var(--emerald-400);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.015em;
}

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

::selection {
  background: rgba(23, 181, 131, 0.3);
  color: var(--fg);
}

:focus-visible {
  outline: 2px solid var(--emerald-400);
  outline-offset: 2px;
}

.wrap {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 20px;
}

.skip {
  position: absolute;
  left: -9999px;
}

.skip:focus {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 8px 16px;
  border-radius: var(--radius-ctrl);
  background: var(--emerald-500);
  color: var(--ink-950);
  text-decoration: none;
}

/* ------------------------------------------------------------------ header */

header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(26, 47, 39, 0.7);
  background: rgba(6, 13, 10, 0.82);
  backdrop-filter: blur(24px);
}

header.site .wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.brand img {
  height: 26px;
  width: auto;
  display: block;
}

.brand .sep {
  width: 1px;
  height: 20px;
  background: var(--ink-700);
}

header.site nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

header.site nav a {
  color: var(--fg-muted);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.15s ease;
}

header.site nav a:hover {
  color: var(--emerald-300);
}

header.site .btn {
  height: 36px;
  padding: 0 16px;
  font-size: 14px;
}

@media (max-width: 900px) {
  header.site nav a.optional {
    display: none;
  }
}

@media (max-width: 720px) {
  header.site nav {
    gap: 18px;
  }

  header.site nav a {
    font-size: 13px;
  }

  header.site .brand span.name {
    display: none;
  }

  header.site .brand .sep {
    display: none;
  }
}

/* ----------------------------------------------------------------- buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 22px;
  border: 1px solid var(--ink-700);
  border-radius: 999px;
  background: transparent;
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn:hover {
  border-color: rgba(23, 181, 131, 0.5);
  color: var(--emerald-300);
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  border-color: transparent;
  background: var(--emerald-500);
  color: var(--ink-950);
  font-weight: 500;
}

.btn--primary:hover {
  background: var(--emerald-400);
  border-color: transparent;
  color: var(--ink-950);
  box-shadow: var(--shadow-glow-strong);
}

/* -------------------------------------------------------------------- hero */

.hero {
  padding: 72px 20px 64px;
}

.hero-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1000px) {
  .hero {
    padding: 88px 20px 88px;
  }

  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 5px 14px;
  border: 1px solid var(--ink-700);
  border-radius: 999px;
  background: rgba(10, 21, 18, 0.7);
  color: var(--gold-400);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald-400);
  box-shadow: 0 0 0 3px rgba(47, 211, 158, 0.16);
}

.hero h1 {
  margin: 22px 0 0;
  max-width: 18ch;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5.2vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: normal;
  color: var(--emerald-400);
}

.hero p.lede {
  margin: 22px 0 0;
  max-width: 56ch;
  font-size: 1.125rem;
  color: var(--fg-muted);
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero .cta .btn--primary {
  height: 52px;
  padding: 0 32px;
  font-size: 1rem;
}

.hero .cta .btn {
  height: 52px;
  padding: 0 28px;
  font-size: 1rem;
}

.fine {
  margin: 20px 0 0;
  color: var(--text-subtle);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

/* --------------------------------------------------------------- hero demo */

.demo {
  border: 1px solid var(--ink-700);
  border-radius: var(--radius-hero);
  background: rgba(10, 21, 18, 0.75);
  box-shadow: var(--shadow-glow);
  overflow: hidden;
}

.demo-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--ink-700);
  background: rgba(6, 13, 10, 0.6);
  color: var(--text-subtle);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

.demo-bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ink-700);
}

.demo-bar span {
  margin-left: 10px;
}

.demo-rows {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr);
  gap: 0;
  margin: 0;
  padding: 6px 18px 18px;
}

.demo-rows dt,
.demo-rows dd {
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid rgba(26, 47, 39, 0.55);
  font-size: 0.9rem;
}

.demo-rows dt {
  padding-right: 22px;
  color: var(--text-subtle);
}

.demo-rows dd {
  color: var(--fg);
  text-align: right;
}

.demo-rows dt:nth-last-of-type(1),
.demo-rows dd:nth-last-of-type(1) {
  border-bottom: 0;
}

.demo-rows dd.masked,
.masked {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--gold-300);
  letter-spacing: 0.04em;
}

/* ---------------------------------------------------------------- sections */

.band {
  padding: 68px 0;
  border-top: 1px solid rgba(26, 47, 39, 0.55);
}

.section-head {
  max-width: 62ch;
  margin-bottom: 38px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.015em;
}

.section-head p {
  margin: 16px 0 0;
  color: var(--fg-muted);
  font-size: 1.0625rem;
}

/* ------------------------------------------------------------------- cards */

.grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(288px, 1fr));
}

.card {
  padding: 26px;
  border: 1px solid var(--ink-700);
  border-radius: var(--radius-card);
  background: rgba(16, 32, 26, 0.6);
  transition: all 0.3s ease;
}

.grid .card:hover,
.support-grid .card:hover {
  border-color: rgba(23, 181, 131, 0.5);
  box-shadow: var(--shadow-glow);
}

.card h3 {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
}

.card p {
  margin: 10px 0 0;
  color: var(--fg-muted);
  font-size: 0.9375rem;
}

.tag {
  display: inline-block;
  padding: 3px 10px;
  border: 1px solid rgba(23, 181, 131, 0.24);
  border-radius: 999px;
  background: rgba(23, 181, 131, 0.1);
  color: var(--emerald-300);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

kbd {
  display: inline-block;
  padding: 1px 6px;
  border: 1px solid var(--ink-700);
  border-radius: 6px;
  background: var(--ink-900);
  color: var(--fg);
  font-family: var(--font-mono);
  font-size: 0.8em;
}

code {
  padding: 1px 6px;
  border-radius: 6px;
  background: rgba(23, 181, 131, 0.1);
  color: var(--emerald-300);
  font-size: 0.88em;
}

/* ------------------------------------------------------------------- steps */

.steps {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  counter-reset: step;
}

.step {
  position: relative;
  padding: 26px;
  border: 1px solid var(--ink-700);
  border-radius: var(--radius-card);
  background: rgba(16, 32, 26, 0.6);
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  margin-bottom: 14px;
  color: var(--gold-400);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
}

.step p {
  margin: 10px 0 0;
  color: var(--fg-muted);
  font-size: 0.9375rem;
}

/* ----------------------------------------------------------- privacy panel */

.privacy-panel {
  display: grid;
  gap: 26px;
  padding: 30px;
  border: 1px solid var(--ink-700);
  border-radius: var(--radius-card);
  background: rgba(16, 32, 26, 0.6);
}

@media (min-width: 900px) {
  .privacy-panel {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
  }
}

.privacy-panel h3 {
  font-family: var(--font-display);
}

.claims {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.claims li {
  display: flex;
  gap: 12px;
  color: var(--fg-muted);
  font-size: 0.9375rem;
}

.claims strong {
  color: var(--fg);
  font-weight: 600;
}

.mark {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  border-radius: 50%;
  background: rgba(23, 181, 131, 0.14);
  color: var(--emerald-400);
  font-size: 11px;
}

/* ------------------------------------------------------------- limitations */

.limits ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 12px;
  color: var(--fg-muted);
  font-size: 0.9375rem;
}

.limits li::marker {
  color: var(--gold-400);
}

.limits strong {
  color: var(--fg);
  font-weight: 600;
}

/* --------------------------------------------------------------------- faq */

details {
  margin-top: 12px;
  border: 1px solid var(--ink-700);
  border-radius: var(--radius-card);
  background: rgba(16, 32, 26, 0.6);
  overflow: hidden;
}

details summary {
  padding: 18px 24px;
  color: var(--fg);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  transition: color 0.15s ease;
}

details summary::-webkit-details-marker {
  display: none;
}

details summary::after {
  content: '+';
  float: right;
  color: var(--emerald-400);
  font-family: var(--font-mono);
  font-size: 1.1rem;
  line-height: 1.3;
}

details[open] summary::after {
  content: '–';
}

details summary:hover {
  color: var(--emerald-300);
}

details p {
  margin: 0;
  padding: 0 24px 20px;
  color: var(--fg-muted);
  font-size: 0.9375rem;
}

/* ----------------------------------------------------------------- support */

.support-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(288px, 1fr));
}

.support-grid .card h3 {
  margin-top: 0;
}

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

footer.site {
  margin-top: 20px;
  border-top: 1px solid rgba(26, 47, 39, 0.7);
  background: var(--ink-900);
}

.foot-grid {
  display: grid;
  gap: 40px;
  padding: 56px 0;
}

@media (min-width: 820px) {
  .foot-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.foot-brand img {
  height: 34px;
  width: auto;
  display: block;
}

.foot-brand p {
  margin: 12px 0 0;
  max-width: 44ch;
  color: var(--fg-muted);
  font-size: 0.875rem;
}

.foot-brand p strong {
  color: var(--fg);
  font-weight: 500;
}

footer.site .eyebrow {
  display: block;
  padding: 0;
  border: 0;
  background: none;
  margin-bottom: 14px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

.foot-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
  font-size: 0.875rem;
}

.foot-col a {
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.foot-col a:hover {
  color: var(--emerald-300);
}

.foot-bottom {
  border-top: 1px solid rgba(26, 47, 39, 0.7);
}

.foot-bottom .wrap {
  padding-top: 22px;
  padding-bottom: 26px;
}

.disclaimer {
  margin: 0;
  max-width: 92ch;
  color: var(--text-subtle);
  font-size: 0.75rem;
  line-height: 1.7;
}

.disclaimer a {
  color: var(--fg-muted);
}

.disclaimer a:hover {
  color: var(--emerald-300);
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-bottom: 14px;
  font-size: 0.8125rem;
}

.row a {
  color: var(--fg-muted);
  text-decoration: none;
}

.row a:hover {
  color: var(--emerald-300);
}

/* ==========================================================================
   Legal documents — privacy policy, terms of use
   ========================================================================== */

/* Direct child only — the site header and footer keep the full 72rem measure. */
body.legal-page > .wrap {
  max-width: 50rem;
  padding-bottom: 72px;
}

header.doc {
  padding: 56px 0 34px;
}

.back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--fg-muted);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.15s ease;
}

.back:hover {
  color: var(--emerald-300);
}

header.doc h1 {
  margin: 24px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.meta {
  margin: 16px 0 0;
  color: var(--text-subtle);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

.meta strong {
  color: var(--fg-muted);
  font-weight: 400;
}

.summary {
  margin-top: 30px;
  padding: 26px 28px;
  border: 1px solid var(--ink-700);
  border-left: 3px solid var(--emerald-500);
  border-radius: var(--radius-card);
  background: rgba(16, 32, 26, 0.6);
}

.summary h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--emerald-300);
}

.summary p {
  margin: 0 0 12px;
  color: var(--fg-muted);
  font-size: 0.9375rem;
}

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

body.legal-page h2 {
  margin: 44px 0 0;
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

body.legal-page h3 {
  margin: 28px 0 0;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--fg);
}

body.legal-page p,
body.legal-page li {
  color: var(--fg-muted);
  font-size: 0.9375rem;
}

body.legal-page p {
  margin: 14px 0 0;
}

body.legal-page ul,
body.legal-page ol {
  margin: 14px 0 0;
  padding-left: 22px;
  display: grid;
  gap: 9px;
}

body.legal-page li::marker {
  color: var(--emerald-500);
}

body.legal-page strong {
  color: var(--fg);
  font-weight: 600;
}

.table-scroll {
  margin-top: 18px;
  overflow-x: auto;
  border: 1px solid var(--ink-700);
  border-radius: var(--radius-card);
}

.table-scroll table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.table-scroll th,
.table-scroll td {
  padding: 13px 18px;
  border-bottom: 1px solid rgba(26, 47, 39, 0.7);
  text-align: left;
  vertical-align: top;
}

.table-scroll thead th {
  background: rgba(6, 13, 10, 0.5);
  color: var(--gold-400);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.table-scroll td {
  color: var(--fg-muted);
}

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

.caps {
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 0.8125rem !important;
  color: var(--fg-muted);
}

/* A blank that still has to be filled in before this document is final. */
.todo {
  padding: 2px 8px;
  border: 1px dashed rgba(227, 182, 94, 0.45);
  border-radius: 8px;
  background: rgba(10, 21, 18, 0.5);
  color: var(--gold-300);
  font-family: var(--font-mono);
  font-size: 0.85em;
}

footer.doc {
  margin-top: 56px;
  padding-top: 26px;
  border-top: 1px solid rgba(26, 47, 39, 0.7);
}

footer.doc p {
  margin: 0 0 10px;
  color: var(--text-subtle);
  font-size: 0.8125rem;
}

footer.doc a {
  color: var(--fg-muted);
  text-decoration: none;
}

footer.doc a:hover {
  color: var(--emerald-300);
}

/* --------------------------------------------------------------- reduced motion */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
