/* ============================================================
   Joan Software — design system
   Dark engineering studio. Committed dark theme.

   Fonts are self-hosted from assets/fonts/ — no third-party
   font CDN, so no visitor IP is disclosed to load type.
   Inter and EB Garamond are both SIL Open Font License 1.1.
   ============================================================ */

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/inter-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/inter-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/inter-latin-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: "EB Garamond";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/eb-garamond-latin-500-italic.woff2") format("woff2");
}

:root {
  /* Surfaces */
  --bg:            #08090b;
  --bg-elev:       #0d0f13;
  --panel:         #101318;
  --panel-2:       #151922;
  --line:          #1e232c;
  --line-soft:     #171b22;

  /* Type */
  --text:          #e8ebf0;
  --text-dim:      #9aa2b1;
  --text-faint:    #6b7382;

  /* Accents */
  --accent:        #4c7dff;
  --accent-soft:   #7ea0ff;
  --accent-glow:   rgba(76, 125, 255, .28);
  --mint:          #00e5c4;
  --mint-glow:     rgba(0, 229, 196, .22);

  /* Type scale */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  /* Small caps-style labels use the sans, not a monospace face */
  --font-label: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Rhythm */
  --wrap: 1180px;
  --gutter: clamp(20px, 5vw, 48px);
  --section-y: clamp(72px, 11vw, 148px);
  --radius: 14px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Ambient light + grain ------------------------------------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(900px 620px at 78% -8%,  rgba(76,125,255,.16), transparent 62%),
    radial-gradient(760px 520px at 4% 12%,   rgba(0,229,196,.075), transparent 60%),
    radial-gradient(1100px 700px at 50% 108%, rgba(76,125,255,.07), transparent 65%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}
main, header, footer { position: relative; z-index: 2; }

img, svg { max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* Layout ---------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section + .section { border-top: 1px solid var(--line-soft); }

/* Typography ------------------------------------------------ */
h1, h2, h3, h4 { margin: 0; font-weight: 560; letter-spacing: -.028em; line-height: 1.1; }
h1 { font-size: clamp(2.5rem, 5.6vw, 4.15rem); letter-spacing: -.04em; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.85rem); letter-spacing: -.035em; }
h3 { font-size: 1.12rem; letter-spacing: -.015em; line-height: 1.35; }
p  { margin: 0; }

.eyebrow {
  font-family: var(--font-label);
  font-weight: 500;
  font-size: .73rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
}
.lede { color: var(--text-dim); font-size: clamp(1.02rem, 1.5vw, 1.17rem); line-height: 1.7; max-width: 62ch; }
.muted { color: var(--text-dim); }
.label { font-family: var(--font-label); }

.section-head { display: grid; gap: 18px; margin-bottom: clamp(38px, 5vw, 62px); max-width: 720px; }

/* Placeholder figures the owner must replace ----------------- */
.tbd {
  border-bottom: 1.5px dotted var(--mint);
  cursor: help;
  width: fit-content; /* keeps the dotted rule tight on block-level placeholders */
}

/* Buttons --------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 22px;
  border-radius: 10px;
  font-size: .93rem;
  font-weight: 520;
  letter-spacing: -.01em;
  border: 1px solid transparent;
  transition: transform .18s ease, background .2s ease, border-color .2s ease, box-shadow .25s ease, color .2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(180deg, var(--accent), #3b66e0);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255,255,255,.06) inset, 0 12px 32px -12px var(--accent-glow);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 0 0 1px rgba(255,255,255,.1) inset, 0 18px 40px -12px var(--accent-glow); }
.btn-ghost {
  background: rgba(255,255,255,.02);
  border-color: var(--line);
  color: var(--text);
}
.btn-ghost:hover { border-color: #2c3442; background: rgba(255,255,255,.045); transform: translateY(-1px); }
.btn-sm { padding: 9px 16px; font-size: .84rem; }
.arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.textlink {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-label); font-weight: 500; font-size: .82rem;
  letter-spacing: .09em; text-transform: uppercase;
  color: var(--accent-soft);
  border-bottom: 1px solid rgba(126,160,255,.28);
  padding-bottom: 3px;
  transition: color .2s ease, border-color .2s ease;
}
.textlink:hover { color: #fff; border-color: var(--accent); }

/* Nav ------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.nav.stuck {
  background: rgba(8,9,11,.78);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom-color: var(--line-soft);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 72px; }

/* Logo ------------------------------------------------------ */
.wm {
  font-family: "EB Garamond", "Garamond", "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
  fill: #eef1f6;
}
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 30px; width: auto; display: block; }
.footer-logo { height: 66px; width: auto; display: block; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: .89rem; color: var(--text-dim);
  transition: color .18s ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--text); }
.nav-links a.btn-primary, .nav-links a.btn-primary:hover { color: #fff; }
.nav-links a.btn-ghost { color: var(--text); }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line); color: var(--text);
  border-radius: 9px; padding: 8px 11px; cursor: pointer; font-family: var(--font-label); font-weight: 500; font-size: .8rem; letter-spacing: .08em;
}

/* Hero ------------------------------------------------------ */
.hero { padding-block: clamp(56px, 8vw, 104px) clamp(64px, 9vw, 118px); }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
}
.hero h1 { margin-top: 22px; }
.hero h1 .grad {
  background: linear-gradient(92deg, var(--accent-soft) 8%, var(--mint) 96%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .lede { margin-top: 24px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-note {
  margin-top: 26px; display: flex; align-items: flex-start; gap: 10px;
  font-family: var(--font-label); font-weight: 500; font-size: .78rem; letter-spacing: .05em;
  color: var(--text-faint); text-transform: uppercase;
}
.hero-note .dot { margin-top: 6px; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 12px var(--mint); flex: none; }

/* Diagram --------------------------------------------------- */
.diagram-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,.024), rgba(255,255,255,0)),
    var(--panel);
  padding: 22px;
  box-shadow: 0 40px 90px -50px rgba(0,0,0,.95);
}
.diagram-card figcaption {
  font-size: .88rem; letter-spacing: -.005em; color: var(--text-faint);
  padding-bottom: 16px; margin-bottom: 10px; border-bottom: 1px solid var(--line-soft);
}

/* Diagram type — sans, sentence case, no monospace shouting */
.dgm { display: block; width: 100%; height: auto; }
.dgm text { font-family: var(--font-sans); }
.d-lbl  { font-size: 15px; font-weight: 500; fill: #dfe4ec; text-anchor: middle; }
.d-head { font-size: 16px;   font-weight: 500; fill: #eef1f6; }
.d-chip { font-size: 13.5px;   fill: #c2cde4; text-anchor: middle; }
.d-chip.mint { fill: #9fe3d8; }
.d-sub  { font-size: 12.5px; fill: #6b7382; text-anchor: middle; }
.d-sub[text-anchor="start"] { text-anchor: start; }
.conn { stroke: var(--accent); stroke-width: 1.5; stroke-dasharray: 5 7; opacity: .55; }
.conn.mint { stroke: var(--mint); opacity: .6; }

/* Spec table (Architecture Review format panel) */
.spec { display: grid; gap: 0; }
.spec > div {
  display: flex; justify-content: space-between; gap: 16px;
  font-size: .92rem; color: var(--text-dim);
  padding-block: 11px; border-bottom: 1px solid var(--line-soft);
}
.spec > div.last { border-bottom: 0; padding-bottom: 0; }
.spec .v { color: var(--text); }
.flow { animation: dash 2.4s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -24; } }
.pulse { animation: pulse 3s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: .35; } 50% { opacity: 1; } }

/* Metric strip ---------------------------------------------- */
.strip { border-block: 1px solid var(--line-soft); background: rgba(255,255,255,.012); }
.strip-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding-block: 34px; gap: 8px;
}
.metric { padding-inline: clamp(4px, 2vw, 26px); }
.metric + .metric { border-left: 1px solid var(--line-soft); }
.metric b {
  display: block; font-size: clamp(1.45rem, 2.6vw, 2rem); font-weight: 560;
  letter-spacing: -.03em; line-height: 1.15; margin-bottom: 7px;
}
.metric > span { font-size: .84rem; color: var(--text-dim); line-height: 1.45; display: block; }

/* Cards ----------------------------------------------------- */
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.022), rgba(255,255,255,0)), var(--panel);
  padding: 28px;
  transition: border-color .25s ease, transform .25s ease, background .25s ease;
}
.card:hover { border-color: #2b3341; transform: translateY(-3px); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--text-dim); font-size: .94rem; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

/* Dual engine ----------------------------------------------- */
.engines { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.engine {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.026), rgba(255,255,255,0)), var(--panel);
  padding: clamp(26px, 3vw, 38px);
  position: relative;
  overflow: hidden;
}
.engine::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: .5;
}
.engine.mint::before { background: linear-gradient(90deg, transparent, var(--mint), transparent); }
.engine-icon {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  border: 1px solid var(--line); background: var(--panel-2); margin-bottom: 20px;
}
.engine h3 { font-size: 1.42rem; letter-spacing: -.03em; }
.engine > p { color: var(--text-dim); margin-top: 10px; font-size: .97rem; }
.engine ul { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 2px; }
.engine li { padding: 15px 0; border-top: 1px solid var(--line-soft); }
.engine li strong { display: block; font-weight: 540; font-size: .96rem; letter-spacing: -.01em; margin-bottom: 4px; }
.engine li span { color: var(--text-dim); font-size: .9rem; line-height: 1.55; }

.chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 24px; }
.chip {
  font-family: var(--font-label); font-weight: 450; font-size: .78rem; letter-spacing: .005em;
  padding: 6px 12px; border-radius: 7px;
  border: 1px solid var(--line); background: var(--panel-2); color: var(--text-dim);
}

/* Spotlight ------------------------------------------------- */
.spotlight {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(30px, 4vw, 56px);
  background:
    radial-gradient(700px 340px at 88% 8%, rgba(0,229,196,.10), transparent 68%),
    linear-gradient(180deg, rgba(255,255,255,.026), rgba(255,255,255,0)),
    var(--panel);
  display: grid; grid-template-columns: minmax(0,1.1fr) minmax(0,.9fr);
  gap: clamp(28px, 4vw, 56px); align-items: center;
}
.spotlight .eyebrow { color: var(--mint); }
.spotlight .eyebrow::before { background: linear-gradient(90deg, transparent, var(--mint)); }
.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; font-size: .94rem; color: var(--text-dim); }
.checks svg { flex: none; margin-top: 4px; }

/* Steps ----------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.step { padding: clamp(24px, 3vw, 34px); }
.step + .step { border-left: 1px solid var(--line-soft); }
.step-n { font-family: var(--font-label); font-weight: 500; font-size: .74rem; letter-spacing: .13em; color: var(--accent-soft); display: block; margin-bottom: 14px; }
.step h3 { margin-bottom: 8px; }
.step p { color: var(--text-dim); font-size: .92rem; }

/* Offer panel ----------------------------------------------- */
.offer {
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,.85fr);
  gap: clamp(28px, 4vw, 54px);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background:
    radial-gradient(620px 320px at 10% 0%, rgba(76,125,255,.14), transparent 66%),
    linear-gradient(180deg, rgba(255,255,255,.026), rgba(255,255,255,0)),
    var(--panel);
  padding: clamp(30px, 4vw, 56px);
  align-items: start;
}
.deliverables { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.deliverables li {
  display: flex; gap: 14px; align-items: baseline;
  padding: 14px 0; border-bottom: 1px solid var(--line-soft);
  font-size: .93rem; color: var(--text-dim);
}
.deliverables li:first-child { border-top: 1px solid var(--line-soft); }
.deliverables .k { font-family: var(--font-label); font-weight: 500; font-size: .76rem; color: var(--accent-soft); letter-spacing: .06em; flex: none; width: 26px; }
.deliverables strong { color: var(--text); font-weight: 540; }

/* Labs ------------------------------------------------------ */
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-label); font-weight: 500; font-size: .7rem; letter-spacing: .11em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 6px;
  border: 1px solid rgba(0,229,196,.3); color: var(--mint); background: rgba(0,229,196,.06);
  margin-bottom: 16px;
}

/* Team preview ---------------------------------------------- */
.person { text-align: left; }
.avatar {
  width: 100%; aspect-ratio: 1/1; border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    radial-gradient(120px 120px at 50% 34%, rgba(76,125,255,.22), transparent 70%),
    var(--panel-2);
  display: grid; place-items: center; margin-bottom: 16px;
  font-family: var(--font-label); font-size: 1.5rem; color: var(--text-faint); letter-spacing: .1em;
}
.person h3 { margin-bottom: 3px; }
.person .role { font-family: var(--font-label); font-weight: 500; font-size: .78rem; letter-spacing: .07em; text-transform: uppercase; color: var(--accent-soft); }
.person p { color: var(--text-dim); font-size: .9rem; margin-top: 10px; }

/* CTA band -------------------------------------------------- */
.cta-band { text-align: center; display: grid; gap: 22px; justify-items: center; }
.cta-band h2 { max-width: 18ch; }

/* Forms ----------------------------------------------------- */
.field { display: grid; gap: 8px; margin-bottom: 18px; }
.field label { font-family: var(--font-label); font-weight: 500; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-faint); }
.field input, .field textarea, .field select {
  font-family: inherit; font-size: .95rem; color: var(--text);
  background: var(--bg-elev); border: 1px solid var(--line); border-radius: 10px;
  padding: 12px 14px; outline: none; transition: border-color .2s ease, box-shadow .2s ease;
  width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(76,125,255,.14);
}
.field textarea { min-height: 130px; resize: vertical; }

/* Footer ---------------------------------------------------- */
.footer { border-top: 1px solid var(--line-soft); padding-block: 54px 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer h4 { font-family: var(--font-label); font-size: .73rem; letter-spacing: .13em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 16px; font-weight: 500; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer a { color: var(--text-dim); font-size: .89rem; transition: color .18s ease; }
.footer a:hover { color: var(--text); }
.footer-bottom {
  margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line-soft);
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
  font-size: .8rem; color: var(--text-faint);
}
.disclaimer { max-width: 66ch; line-height: 1.6; }

/* Reveal ---------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .flow, .pulse { animation: none; }
}

/* Responsive ------------------------------------------------ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .engines, .grid-2, .spotlight, .offer { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step + .step { border-left: 0; border-top: 1px solid var(--line-soft); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-links {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(8,9,11,.97);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    border-block: 1px solid var(--line-soft);
    padding: 8px var(--gutter) 18px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 0; border-bottom: 1px solid var(--line-soft); font-size: .96rem; }
  .nav-links .btn { margin-top: 14px; }
  .nav-toggle { display: block; }
  .strip-grid { grid-template-columns: 1fr 1fr; gap: 26px 8px; }
  .metric:nth-child(3) { border-left: 0; }
  .grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .strip-grid { grid-template-columns: 1fr; }
  .metric + .metric { border-left: 0; border-top: 1px solid var(--line-soft); padding-top: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* Long-form / legal pages ----------------------------------- */
.prose { max-width: 68ch; }
.prose h2 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  letter-spacing: -.025em;
  margin: 52px 0 14px;
  padding-top: 26px;
  border-top: 1px solid var(--line-soft);
}
.prose h2:first-of-type { margin-top: 12px; border-top: 0; padding-top: 0; }
.prose h3 { font-size: 1rem; margin: 26px 0 8px; }
.prose p, .prose li { color: var(--text-dim); font-size: .97rem; line-height: 1.75; }
.prose p + p { margin-top: 14px; }
.prose ul + p { margin-top: 16px; }
.prose ul + h3 { margin-top: 30px; }
.prose ul { margin: 14px 0 0; padding-left: 20px; display: grid; gap: 9px; }
.prose li::marker { color: var(--accent-soft); }
.prose a { color: var(--accent-soft); border-bottom: 1px solid rgba(126,160,255,.3); }
.prose a:hover { color: #fff; border-color: var(--accent); }
.prose strong { color: var(--text); font-weight: 540; }
.updated { font-size: .84rem; color: var(--text-faint); letter-spacing: .01em; }
.prose .callout {
  border: 1px solid var(--line); border-left: 2px solid var(--mint);
  border-radius: 10px; background: var(--panel-2);
  padding: 20px 22px; margin: 26px 0;
}
.prose .callout p { font-size: .92rem; }

/* Footer legal row */
.footer-legal { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-legal a { font-size: .8rem; color: var(--text-faint); }
.footer-legal a:hover { color: var(--text-dim); }
