/* ==========================================================================
   WoofWatt — Bark Energy Engineering Report
   Design system extracted from the WoofWatt Labs report, Revision 1.0
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --navy-900: #0b2439;
  --navy-800: #0d2b45;
  --navy-700: #102f4c;
  --navy-600: #16456d;
  --teal-500: #109c8f;
  --teal-400: #16b3a3;
  --teal-300: #4fd1c0;
  --teal-200: #7fe3d4;
  --amber-500: #ef9f26;
  --amber-400: #f5b544;
  --blue-500: #2c7fc4;
  --blue-400: #4a9bdb;
  --red-500: #d9534f;

  /* Light surface scale */
  --bg: #ffffff;
  --bg-alt: #f4f7fa;
  --bg-sunken: #eaf0f6;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --border: #d8e2ec;
  --border-strong: #b9c8d8;

  /* Text */
  --text: #16293b;
  --text-2: #4a6076;
  --text-3: #6f8399;
  --text-inv: #eaf2f8;
  --heading: #0d2b45;
  --link: #1a6fb5;

  /* Callout tints */
  --tint-blue: #eef4fb;
  --tint-blue-bd: #2c7fc4;
  --tint-teal: #e6f7f4;
  --tint-teal-bd: #109c8f;
  --tint-amber: #fdf4e3;
  --tint-amber-bd: #ef9f26;
  --tint-red: #fdefe8;
  --tint-red-bd: #d9534f;

  /* Chart palette (also read by JS) */
  --chart-1: #2c7fc4;
  --chart-2: #109c8f;
  --chart-3: #ef9f26;
  --chart-4: #d9534f;
  --chart-grid: #dde6ee;
  --chart-text: #4a6076;

  /* Metrics */
  --nav-h: 60px;
  --maxw: 1180px;
  --readw: 74ch;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow-1: 0 1px 2px rgba(13, 43, 69, .06), 0 2px 8px rgba(13, 43, 69, .05);
  --shadow-2: 0 4px 12px rgba(13, 43, 69, .09), 0 12px 32px rgba(13, 43, 69, .07);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
}

/* ---------- Dark theme ---------- */
[data-theme="dark"] {
  --bg: #0a1c2c;
  --bg-alt: #0d2438;
  --bg-sunken: #081724;
  --surface: #102f49;
  --surface-2: #0d2740;
  --border: #1d4468;
  --border-strong: #2a5b86;

  --text: #dce9f4;
  --text-2: #a3bdd4;
  --text-3: #7d9bb6;
  --heading: #eaf2f8;
  --link: #6fc0f5;

  --tint-blue: #10314e;
  --tint-teal: #0d3b3a;
  --tint-amber: #3a2c15;
  --tint-red: #3b1e1c;

  --chart-1: #4a9bdb;
  --chart-2: #2ec4b1;
  --chart-3: #f5b544;
  --chart-4: #e8776f;
  --chart-grid: #1d4468;
  --chart-text: #a3bdd4;

  --shadow-1: 0 1px 2px rgba(0, 0, 0, .3), 0 2px 8px rgba(0, 0, 0, .25);
  --shadow-2: 0 4px 12px rgba(0, 0, 0, .35), 0 12px 32px rgba(0, 0, 0, .3);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, canvas { max-width: 100%; }
a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }
:focus-visible { outline: 2px solid var(--teal-400); outline-offset: 2px; border-radius: 3px; }

h1, h2, h3, h4 { color: var(--heading); line-height: 1.22; margin: 0 0 .5em; font-weight: 700; letter-spacing: -.015em; }
p { margin: 0 0 1.05em; }
ul, ol { margin: 0 0 1.15em; padding-left: 1.35em; }
li { margin-bottom: .5em; }
li::marker { color: var(--teal-500); }
strong { font-weight: 650; color: var(--heading); }
code { font-family: var(--mono); font-size: .875em; background: var(--bg-sunken); padding: .12em .38em; border-radius: 4px; }
sub, sup { font-size: .7em; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--teal-500); color: #fff; padding: .7rem 1.2rem; border-radius: 0 0 8px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(13, 43, 69, .95);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; height: 100%;
  display: flex; align-items: center; gap: 1rem; padding: 0 1.25rem;
}
.nav__brand {
  display: flex; align-items: baseline; gap: .55rem;
  font-weight: 800; letter-spacing: .06em; font-size: 1.02rem;
  color: #fff; text-decoration: none; flex: 0 0 auto;
}
.nav__brand:hover { text-decoration: none; }
.nav__brand span { font-size: .64rem; font-weight: 600; letter-spacing: .13em; color: var(--teal-200); text-transform: uppercase; }
.nav__links {
  display: flex; gap: .1rem; margin-left: auto;
  /* min-width:0 is what lets this shrink and scroll internally instead of
     pushing the page wider than the viewport on narrow screens */
  flex: 0 1 auto; min-width: 0;
  overflow-x: auto; overscroll-behavior-x: contain;
  scrollbar-width: none; -ms-overflow-style: none;
  /* fade the clipped edges so the scrollable strip is discoverable */
  mask-image: linear-gradient(90deg, transparent 0, #000 16px, #000 calc(100% - 20px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 16px, #000 calc(100% - 20px), transparent 100%);
}
@media (min-width: 1120px) {
  .nav__links { mask-image: none; -webkit-mask-image: none; }
}
.nav__links::-webkit-scrollbar { display: none; }
.nav__links a {
  color: #c3d6e6; font-size: .8rem; font-weight: 550; white-space: nowrap;
  padding: .42rem .62rem; border-radius: 6px; text-decoration: none; transition: background .15s, color .15s;
}
.nav__links a:hover { background: rgba(255, 255, 255, .1); color: #fff; text-decoration: none; }
.nav__links a.is-active { color: #fff; background: rgba(22, 179, 163, .26); box-shadow: inset 0 -2px 0 var(--teal-400); }
.nav__theme {
  flex: 0 0 auto; margin-left: .4rem; width: 34px; height: 34px;
  display: grid; place-items: center; cursor: pointer;
  background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px; color: #dce9f4; transition: background .15s;
}
.nav__theme:hover { background: rgba(255, 255, 255, .2); }
.nav__theme svg { width: 17px; height: 17px; }
[data-theme="dark"] .nav__theme .i-sun { display: block; }
[data-theme="dark"] .nav__theme .i-moon { display: none; }
.nav__theme .i-sun { display: none; }
.nav__theme .i-moon { display: block; }

.progress {
  position: fixed; top: var(--nav-h); left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--teal-400), var(--amber-500));
  z-index: 99; transition: width .1s linear;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; overflow: hidden;
  background: var(--navy-800);
  color: #eaf2f8;
  padding: clamp(3.5rem, 9vw, 7rem) 0 clamp(3rem, 7vw, 5rem);
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal-400), transparent);
}
.hero__blobs { position: absolute; top: -90px; right: -70px; pointer-events: none; opacity: .95; }
.hero__blobs .b1 { position: absolute; top: 60px; right: 0; width: 300px; height: 300px; border-radius: 50%; background: var(--teal-500); }
.hero__blobs .b2 { position: absolute; top: 0; right: 30px; width: 165px; height: 165px; border-radius: 50%; background: var(--amber-500); }
@media (max-width: 720px) { .hero__blobs { opacity: .5; transform: scale(.62); transform-origin: top right; } }

.hero__inner { position: relative; max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }
.eyebrow {
  font-size: .69rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: #9fc4dd; margin: 0 0 clamp(2rem, 6vw, 4.5rem);
}
.eyebrow em { color: var(--teal-200); font-style: normal; }
.hero h1 {
  font-size: clamp(2.9rem, 8.5vw, 5.1rem); font-weight: 800; letter-spacing: -.03em;
  color: #fff; margin: 0 0 .12em; line-height: 1;
}
.hero__sub {
  font-size: clamp(1.25rem, 3.4vw, 2rem); font-weight: 700; color: var(--teal-200);
  letter-spacing: -.02em; margin: 0 0 1.4rem;
}
.hero__lede { font-size: clamp(1.02rem, 2vw, 1.19rem); color: #cddfec; max-width: 60ch; margin: 0 0 2.4rem; }

.bottomline {
  display: grid; grid-template-columns: 130px 1fr; gap: 1.25rem;
  max-width: 660px; padding: 1.15rem 1.35rem;
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(127, 227, 212, .32);
  border-radius: var(--radius);
}
.bottomline dt { font-size: .66rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--teal-200); padding-top: .2rem; }
.bottomline dd { margin: 0; font-size: .95rem; color: #dbe9f4; line-height: 1.6; }
@media (max-width: 620px) { .bottomline { grid-template-columns: 1fr; gap: .5rem; } }

.hero__tag { margin: 2.6rem 0 1.6rem; font-style: italic; color: #a7c6dc; text-align: center; font-size: 1.02rem; }
.hero__wave { display: block; width: 100%; height: auto; }
.hero__wave path { stroke: var(--teal-300); stroke-width: 2; fill: none; stroke-linecap: round; }
.hero__meta {
  margin-top: 1.8rem; text-align: right; font-size: .78rem; color: #8fb2cb;
  font-variant-numeric: tabular-nums;
}

/* ==========================================================================
   Layout primitives
   ========================================================================== */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: clamp(3rem, 6vw, 4.75rem) 0; scroll-margin-top: calc(var(--nav-h) + 12px); }
.section--alt { background: var(--bg-alt); }
.section + .section:not(.section--alt) { border-top: 1px solid var(--border); }
.section--alt + .section--alt { border-top: 1px solid var(--border); }

.section__num {
  display: inline-block; font-family: var(--mono); font-size: .74rem; font-weight: 700;
  letter-spacing: .1em; color: var(--teal-500); text-transform: uppercase; margin-bottom: .7rem;
  padding: .2rem .55rem; background: var(--tint-teal); border-radius: 999px;
}
.section h2 { font-size: clamp(1.65rem, 3.6vw, 2.3rem); margin-bottom: .75rem; }
.section > .wrap > p, .section .prose { max-width: var(--readw); }
.lede { font-size: 1.09rem; color: var(--text-2); max-width: var(--readw); }

h3 { font-size: 1.22rem; color: var(--blue-500); margin: 2.4rem 0 .85rem; }
[data-theme="dark"] h3 { color: var(--blue-400); }
h4 { font-size: 1rem; margin: 1.7rem 0 .55rem; }

/* ==========================================================================
   Stat cards
   ========================================================================== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin: 2rem 0 2.5rem; }
@media (max-width: 900px) { .stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .stats { grid-template-columns: 1fr; } }
.stat {
  padding: 1.1rem 1.15rem; border-radius: var(--radius);
  background: var(--tint-blue); border: 1px solid var(--border);
  border-top: 3px solid var(--chart-1);
}
.stat--teal { background: var(--tint-teal); border-top-color: var(--teal-500); }
.stat--amber { background: var(--tint-amber); border-top-color: var(--amber-500); }
.stat__label { font-size: .66rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; color: var(--text-3); }
.stat__value {
  font-size: clamp(1.5rem, 3.4vw, 2.1rem); font-weight: 800; letter-spacing: -.025em;
  color: var(--heading); margin: .35rem 0 .2rem; font-variant-numeric: tabular-nums;
}
.stat__value small { font-size: .58em; font-weight: 700; letter-spacing: 0; }
.stat__note { font-size: .8rem; color: var(--text-2); }

/* ==========================================================================
   Callouts
   ========================================================================== */
.callout {
  margin: 1.9rem 0; padding: 1.15rem 1.35rem;
  border-left: 4px solid var(--tint-blue-bd); border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--tint-blue); max-width: 90ch;
}
.callout > :last-child { margin-bottom: 0; }
.callout--teal { border-left-color: var(--tint-teal-bd); background: var(--tint-teal); }
.callout--amber { border-left-color: var(--tint-amber-bd); background: var(--tint-amber); }
.callout--red { border-left-color: var(--tint-red-bd); background: var(--tint-red); }
.callout--flush { margin: 1.2rem 0 0; max-width: none; }
.callout p { font-weight: 550; }
.callout__label {
  display: block; font-size: .66rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--text-3); margin-bottom: .4rem;
}

/* ==========================================================================
   Tables
   ========================================================================== */
.tw { overflow-x: auto; margin: 1.4rem 0 1.9rem; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow-1); }
.tw::-webkit-scrollbar { height: 8px; }
.tw::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 4px; }
table { width: 100%; border-collapse: collapse; font-size: .895rem; background: var(--surface); }
caption { caption-side: bottom; padding: .8rem 1rem; font-size: .8rem; color: var(--text-3); text-align: left; }
thead th {
  background: var(--navy-700); color: #fff; text-align: left; font-weight: 650;
  padding: .68rem .9rem; font-size: .81rem; letter-spacing: .015em; white-space: nowrap;
}
[data-theme="dark"] thead th { background: var(--navy-600); }
tbody td { padding: .66rem .9rem; border-top: 1px solid var(--border); color: var(--text); vertical-align: top; }
tbody tr:nth-child(even) td { background: var(--surface-2); }
tbody tr:hover td { background: var(--tint-blue); }
td.num { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; font-family: var(--mono); font-size: .85rem; }
td.mono { font-family: var(--mono); font-size: .84rem; }
th.num { text-align: right; }
.t-verdict { font-weight: 650; white-space: nowrap; }
.t-verdict--go { color: var(--teal-500); }
.t-verdict--no { color: var(--red-500); }
.t-verdict--maybe { color: var(--amber-500); }
.blank-line { display: inline-block; min-width: 100px; border-bottom: 1px dashed var(--border-strong); }

/* ==========================================================================
   Figures & charts
   ========================================================================== */
.figure {
  margin: 2.1rem 0 2.4rem; padding: 1.35rem 1.35rem 1rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-1);
}
.figure__title { font-size: 1.06rem; font-weight: 700; color: var(--heading); margin: 0 0 1rem; text-align: center; }
.figure__canvas { position: relative; height: 380px; }
.figure__canvas--tall { height: 430px; }
figcaption { margin-top: .9rem; font-size: .79rem; color: var(--text-3); text-align: center; line-height: 1.55; }
figcaption b { color: var(--text-2); font-weight: 650; }

/* ---------- Flow diagram ---------- */
.flow { display: flex; align-items: stretch; gap: .5rem; flex-wrap: wrap; justify-content: center; margin: .5rem 0 .3rem; }
.flow__node {
  flex: 1 1 130px; min-width: 122px; max-width: 190px;
  padding: .85rem .8rem; border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong); background: var(--tint-blue); text-align: center;
}
.flow__node b { display: block; font-size: .88rem; color: var(--heading); }
.flow__node span { display: block; font-size: .74rem; color: var(--text-2); margin-top: .28rem; line-height: 1.4; }
.flow__node--amber { background: var(--tint-amber); border-color: var(--amber-500); }
.flow__node--teal { background: var(--tint-teal); border-color: var(--teal-500); }
.flow__arrow { align-self: center; color: var(--text-3); font-size: 1.15rem; flex: 0 0 auto; }
@media (max-width: 700px) {
  .flow { flex-direction: column; align-items: stretch; }
  .flow__arrow { transform: rotate(90deg); }
  /* flex-basis governs height once the row becomes a column — let the nodes
     size to their content instead of padding out to 130px each */
  .flow__node { flex: 0 0 auto; max-width: none; min-width: 0; }
}

.flow__branch {
  margin-top: 1rem; display: flex; justify-content: center; align-items: center; gap: .7rem; flex-wrap: wrap;
  font-size: .78rem; color: var(--text-3);
}
.flow__branch .flow__node { flex: 0 1 250px; background: var(--surface-2); }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: .7rem; margin: 1.2rem 0; }
@media (max-width: 860px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }
.step {
  padding: .95rem 1rem; border-radius: var(--radius-sm); background: var(--tint-blue);
  border: 1px solid var(--border-strong); position: relative;
}
.step:nth-child(2) { background: var(--tint-amber); border-color: var(--amber-500); }
.step:nth-child(3) { background: var(--tint-teal); border-color: var(--teal-500); }
.step b { display: block; font-size: .92rem; color: var(--heading); margin-bottom: .3rem; }
.step span { font-size: .78rem; color: var(--text-2); line-height: 1.45; display: block; }

/* ---------- Pseudocode ---------- */
pre.code {
  margin: 1.3rem 0 1.9rem; padding: 1.1rem 1.25rem; overflow-x: auto;
  background: var(--navy-900); color: #cfe4f2; border-radius: var(--radius);
  font-family: var(--mono); font-size: .82rem; line-height: 1.75; border: 1px solid var(--navy-600);
}
pre.code .c { color: #7d9bb6; font-style: italic; }
pre.code .k { color: var(--teal-300); }
pre.code .f { color: var(--amber-400); }
pre.code .n { color: #f0a9a4; }

/* ---------- Equations ----------
   nowrap keeps equations readable inside table cells (the .tw wrapper scrolls),
   but in flowing prose they must be allowed to wrap or they push the page wide
   on narrow viewports. */
.eq { font-family: var(--mono); font-size: .87rem; color: var(--heading); }
.tw .eq { white-space: nowrap; }
p .eq, li .eq { white-space: normal; overflow-wrap: anywhere; }

/* ---------- Two column ---------- */
.cols2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem 2.4rem; }
@media (max-width: 800px) { .cols2 { grid-template-columns: 1fr; gap: .4rem; } }

/* ---------- Phase blocks ---------- */
.phase {
  margin: 1.5rem 0; padding: 1.15rem 1.35rem; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow-1);
}
.phase h4 { margin-top: 0; color: var(--blue-500); font-size: 1.02rem; }
[data-theme="dark"] .phase h4 { color: var(--blue-400); }
.phase ul { margin-bottom: 0; }
.phase ul li:last-child { margin-bottom: 0; }

/* ---------- Constraint list ---------- */
.constraints { list-style: none; padding: 0; }
.constraints li { position: relative; padding-left: 1.9rem; margin-bottom: .75rem; }
.constraints li::before {
  content: "✕"; position: absolute; left: 0; top: .04em; width: 1.3rem; height: 1.3rem;
  display: grid; place-items: center; font-size: .72rem; font-weight: 700;
  color: #fff; background: var(--red-500); border-radius: 50%;
}
.checks { list-style: none; padding: 0; }
.checks li { position: relative; padding-left: 1.9rem; margin-bottom: .75rem; }
.checks li::before {
  content: "✓"; position: absolute; left: 0; top: .04em; width: 1.3rem; height: 1.3rem;
  display: grid; place-items: center; font-size: .74rem; font-weight: 700;
  color: #fff; background: var(--teal-500); border-radius: 50%;
}

/* ---------- Recommendation panel ---------- */
.reco {
  margin: 2.2rem 0; padding: 1.6rem 1.8rem; border-radius: var(--radius);
  background: var(--tint-teal); border: 1px solid var(--teal-500); border-left: 5px solid var(--teal-500);
}
.reco p:last-child { margin-bottom: 0; }
.reco em { color: var(--heading); }

/* ---------- References ---------- */
.refs { list-style: none; padding: 0; counter-reset: r; }
.refs li {
  position: relative; padding-left: 2.5rem; margin-bottom: 1.1rem; font-size: .9rem; color: var(--text-2);
}
.refs li::before {
  counter-increment: r; content: counter(r);
  position: absolute; left: 0; top: .1em; width: 1.75rem; height: 1.75rem;
  display: grid; place-items: center; font-size: .78rem; font-weight: 700; font-family: var(--mono);
  color: var(--navy-800); background: var(--bg-sunken); border: 1px solid var(--border); border-radius: 50%;
}
[data-theme="dark"] .refs li::before { color: var(--teal-200); }
.refs b { display: block; color: var(--heading); font-weight: 650; }
.refs a { word-break: break-all; font-size: .84rem; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--navy-800); color: #b6cfe1; padding: 3rem 0 2rem; font-size: .88rem; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; }
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr; gap: 1.5rem; } }
.footer h4 { color: #fff; font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; margin: 0 0 .8rem; }
.footer p { margin: 0 0 .7rem; max-width: 46ch; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: .45rem; }
.footer a { color: var(--teal-200); }
.footer__brand { font-weight: 800; letter-spacing: .06em; color: #fff; font-size: 1.1rem; margin-bottom: .5rem; }
.footer__fine { color: #8fb2cb; font-size: .82rem; }
.footer__bar {
  margin-top: 2.4rem; padding-top: 1.4rem; border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .8rem; color: #8fb2cb;
}
.footer__quip { font-style: italic; }

.disclaimer { font-size: .84rem; color: var(--text-3); max-width: 90ch; }
