/* WcodeW pilot results viewer.
   Polished single-page dashboard. Light/auto theme; readable on a phone
   if collaborators glance at it from Slack.                               */

* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-0:  #f6f3ee;
  --bg-1:  #ffffff;
  --bg-2:  #ece6dc;
  --line:  #d8cfc1;
  --fg-0:  #1a1814;
  --fg-1:  #4d463c;
  --fg-2:  #8a8170;
  --accent: #b95229;
  --accent-2: #2c5d8a;
  --good:   #2a7a3f;
  --warn:   #b88a14;
  --bad:    #b73a3a;

  --max-w: 1180px;
  --shadow: 0 4px 18px rgba(26, 24, 20, 0.08);
}

/* Dark theme — opt-in via [data-theme="dark"] on <html>, OR via
   prefers-color-scheme when no explicit preference saved (set by nav.js
   before paint to avoid a light-flash). All CSS vars are tuned to keep
   accent + good/warn/bad chips legible against the dark surface. */
:root[data-theme="dark"] {
  --bg-0:  #14130f;
  --bg-1:  #1c1a16;
  --bg-2:  #2a2620;
  --line:  #3a342b;
  --fg-0:  #f1ebe1;
  --fg-1:  #c0b9ac;
  --fg-2:  #847d70;
  --accent: #e2784d;
  --accent-2: #6cabe2;
  --good:  #5fc97c;
  --warn:  #e3c067;
  --bad:   #ec7575;
  --shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
}
:root[data-theme="dark"] .compare-stage,
:root[data-theme="dark"] .home-demo {
  background: #050505;
}

html, body {
  background: var(--bg-0);
  color: var(--fg-0);
  font-family: "Inter", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  min-height: 100%;
}
body { display: flex; flex-direction: column; min-height: 100vh; }
main  { flex: 1; padding: 0 24px 60px; max-width: var(--max-w); margin: 0 auto; width: 100%; }

a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Topbar ---------------------------------------------------------------- */
.topbar {
  background: var(--bg-1); border-bottom: 1px solid var(--line);
  padding: 0 24px;
}
.topbar__inner {
  max-width: var(--max-w); margin: 0 auto; padding: 14px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand {
  display: inline-flex; align-items: baseline; gap: 8px; color: var(--fg-0);
  font-weight: 700; font-size: 1.1rem; text-decoration: none;
}
.brand__logo { font-family: "JetBrains Mono", ui-monospace, monospace; font-size: 1.4rem; color: var(--accent); }
.brand__sub  { font-weight: 400; color: var(--fg-2); font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; }

.topbar__nav { display: inline-flex; gap: 18px; flex-wrap: wrap; }
.topbar__nav a { color: var(--fg-1); font-weight: 500; font-size: 0.92rem; padding-bottom: 1px; }
.topbar__nav a[aria-current="page"] {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}

.topbar__theme {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--fg-1);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 1rem;
  width: 28px; height: 28px;
  cursor: pointer;
  align-self: center;
  display: grid; place-items: center;
  padding: 0;
  margin-left: 6px;
}
.topbar__theme:hover { background: var(--bg-2); color: var(--fg-0); }

/* Subtle entrance animation — only runs once on first paint, respects
   prefers-reduced-motion. */
@keyframes wcodew-fade-up {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: no-preference) {
  .gcard, .mcell, .home-card, .home-highlight,
  .compare-score__chip, .gallery-summary__chip, .home-stats__chip,
  .home-heatmap__cell {
    animation: wcodew-fade-up 280ms ease-out both;
  }
}

/* Print stylesheet — keep the page readable on paper.                    */
@media print {
  html, body { background: #fff !important; color: #000 !important; }
  :root[data-theme="dark"] { /* drop dark vars in print */
    --bg-0: #fff; --bg-1: #fff; --bg-2: #f5f5f5;
    --line: #ccc;
    --fg-0: #000; --fg-1: #333; --fg-2: #666;
    --shadow: none;
  }
  .topbar, .topbar__nav, .site-footer, .scroll-top, .skip-to-main,
  .topbar__theme, .compare-toast, #shortcuts-toast,
  .compare-controls__random, .compare-controls__export,
  .compare-controls__play {
    display: none !important;
  }
  .compare-stage, .home-demo, .gcard__pair, .mcell__pair {
    page-break-inside: avoid;
  }
  a { color: #000; text-decoration: underline; }
  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #555;
  }
  a[href^="#"]::after,
  a[href^="javascript:"]::after { content: ""; }
}

/* Skip-to-content (WCAG 2.4.1) — only visible when focused. ------------- */
.skip-to-main {
  position: absolute;
  top: -40px; left: 16px;
  background: var(--accent);
  color: #fff;
  padding: 8px 14px;
  border-radius: 4px;
  text-decoration: none;
  z-index: 10000;
  font-weight: 600;
  font-size: 0.92rem;
  transition: top 80ms ease;
}
.skip-to-main:focus { top: 8px; }

/* Site footer (added by nav.js on every page) ---------------------------- */
.site-footer {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  padding: 14px 24px;
  margin-top: 60px;
  font-size: 0.85rem;
  color: var(--fg-2);
}
.site-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex; gap: 14px;
  align-items: baseline; flex-wrap: wrap;
}
.site-footer__brand {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-weight: 600;
  color: var(--fg-1);
}
.site-footer__sep { color: var(--fg-2); }
.site-footer a { color: var(--accent-2); }
.site-footer__year { margin-left: auto; }

/* Scroll-to-top floating button ------------------------------------------ */
.scroll-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-1);
  border: 1px solid var(--line);
  color: var(--fg-1);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 500;
  box-shadow: var(--shadow);
  transition: transform 100ms ease, background 100ms ease;
}
.scroll-top:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}
.scroll-top[hidden] { display: none; }

/* Hero ------------------------------------------------------------------ */
.hero { padding: 40px 0 28px; max-width: 760px; }
.hero h1 {
  font-size: 1.85rem; font-weight: 700; line-height: 1.18; margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.hero p { color: var(--fg-1); margin-bottom: 8px; }
.hero__caveat {
  background: var(--bg-2); padding: 10px 14px; border-left: 3px solid var(--warn);
  border-radius: 4px; font-size: 0.92rem; color: var(--fg-1); margin-top: 18px;
}
.hero__caveat strong { color: var(--fg-0); }

/* Cards grid ------------------------------------------------------------ */
.cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px; margin-top: 8px;
}
.cards .loading { color: var(--fg-2); padding: 20px; }

.card {
  background: var(--bg-1); border: 1px solid var(--line); border-radius: 8px;
  padding: 22px; cursor: pointer; transition: transform 180ms, box-shadow 180ms, border-color 180ms;
  text-decoration: none; color: inherit; display: block;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--accent); }
.card:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.card__head { display: flex; justify-content: space-between; align-items: start; gap: 12px; margin-bottom: 14px; }
.card__id   { font-family: "JetBrains Mono", ui-monospace, monospace; color: var(--fg-2); font-size: 0.85rem; letter-spacing: 0.04em; }
.card__tag  { display: inline-block; background: var(--bg-2); color: var(--fg-1); padding: 2px 8px; border-radius: 999px; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.04em; }
.card__title { font-size: 1.18rem; font-weight: 600; line-height: 1.25; margin-bottom: 6px; letter-spacing: -0.01em; }
.card__pitch { color: var(--fg-1); font-size: 0.9rem; line-height: 1.5; margin-bottom: 18px; }
.card__pitch--draft::after {
  content: "DRAFT"; background: var(--warn); color: white;
  padding: 1px 6px; border-radius: 3px; font-size: 0.62rem;
  letter-spacing: 0.1em; margin-left: 6px; vertical-align: middle;
}

.score-row {
  display: flex; align-items: baseline; gap: 14px; margin-bottom: 14px;
  border-top: 1px solid var(--line); padding-top: 14px;
}
.score-row__big {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 2rem; font-weight: 600; color: var(--good); letter-spacing: -0.01em;
  min-width: 72px;
}
.score-row__big[data-tier="warn"] { color: var(--warn); }
.score-row__big[data-tier="bad"]  { color: var(--bad);  }
.score-row__label { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-2); }
.score-row__weights {
  margin-left: auto; font-size: 0.78rem; color: var(--fg-2);
  font-family: "JetBrains Mono", ui-monospace, monospace;
}

.subscores { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 14px; }
.subscore {
  text-align: center; padding: 10px 6px; background: var(--bg-2); border-radius: 6px;
}
.subscore__val { font-family: "JetBrains Mono", ui-monospace, monospace; font-size: 1.1rem; font-weight: 600; }
.subscore__lbl { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-2); margin-top: 2px; }

.layers {
  display: flex; gap: 10px; margin-bottom: 16px; flex-wrap: wrap;
  font-size: 0.78rem; color: var(--fg-1);
}
.layers span { background: var(--bg-2); padding: 3px 10px; border-radius: 999px; font-family: "JetBrains Mono", ui-monospace, monospace; }
.layers span.fail { background: rgba(183, 58, 58, 0.12); color: var(--bad); }

.thumb-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px;
  border-top: 1px solid var(--line); padding-top: 14px;
}
.thumb-row img {
  width: 100%; aspect-ratio: 1440 / 900; object-fit: cover;
  border-radius: 4px; background: var(--bg-2); display: block;
  font-size: 0; color: transparent;  /* hide alt text on error */
}
.thumb-row img.is-missing {
  background: repeating-linear-gradient(
    135deg, var(--bg-2) 0 8px, transparent 8px 16px
  ), var(--bg-2);
}

.error-card {
  border-color: var(--bad); background: rgba(183, 58, 58, 0.04);
}
.error-card .card__pitch { color: var(--bad); }

/* Detail panel ---------------------------------------------------------- */
.detail {
  background: var(--bg-1); border: 1px solid var(--line); border-radius: 8px;
  padding: 26px 28px; margin-top: 32px; box-shadow: var(--shadow);
}
.detail__close {
  display: inline-block; margin-bottom: 16px; color: var(--accent-2);
  font-size: 0.92rem; font-weight: 500;
}

.detail h2 { font-size: 1.5rem; margin-bottom: 6px; letter-spacing: -0.01em; }
.detail h3 { font-size: 1.05rem; margin: 22px 0 10px; letter-spacing: 0.01em; color: var(--fg-1); border-bottom: 1px solid var(--line); padding-bottom: 6px; }
.detail h3 .count { color: var(--fg-2); font-weight: 400; font-family: "JetBrains Mono", ui-monospace, monospace; font-size: 0.9rem; margin-left: 8px; }

.detail-meta { display: flex; gap: 18px; flex-wrap: wrap; color: var(--fg-2); font-size: 0.88rem; margin-bottom: 14px; font-family: "JetBrains Mono", ui-monospace, monospace; }

.detail-summary {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin: 18px 0 24px;
}
.detail-summary .subscore { padding: 14px 8px; }
.detail-summary .subscore__val { font-size: 1.6rem; }

.invariants { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.invariants th { text-align: left; color: var(--fg-2); font-weight: 500; padding: 8px 10px; border-bottom: 1px solid var(--line); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; }
.invariants td { padding: 8px 10px; border-bottom: 1px solid var(--bg-2); vertical-align: top; }
.invariants tr:hover td { background: var(--bg-2); }
.invariants .pass { color: var(--good); font-weight: 600; }
.invariants .fail { color: var(--bad); font-weight: 600; }
.invariants td.dur { font-family: "JetBrains Mono", ui-monospace, monospace; color: var(--fg-2); font-size: 0.85rem; text-align: right; width: 80px; }
.invariants .err { color: var(--bad); font-size: 0.82rem; font-family: "JetBrains Mono", ui-monospace, monospace; white-space: pre-wrap; }

.nl-list { display: flex; flex-direction: column; gap: 10px; }
.nl-item {
  padding: 12px 14px; border: 1px solid var(--line); border-radius: 6px;
  background: var(--bg-1);
}
.nl-item__head { display: flex; gap: 12px; align-items: center; margin-bottom: 4px; }
.nl-item__id   { font-family: "JetBrains Mono", ui-monospace, monospace; font-size: 0.78rem; color: var(--fg-2); }
.nl-item__verdict { font-weight: 600; font-size: 0.78rem; padding: 2px 8px; border-radius: 999px; letter-spacing: 0.04em; text-transform: uppercase; }
.nl-item__verdict.pass { background: rgba(42, 122, 63, 0.14); color: var(--good); }
.nl-item__verdict.fail { background: rgba(183, 58, 58, 0.14); color: var(--bad);  }
.nl-item__assertion { color: var(--fg-0); font-size: 0.95rem; }
.nl-item__reasoning { color: var(--fg-2); font-size: 0.86rem; margin-top: 4px; font-style: italic; }

.shots {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.shot { border: 1px solid var(--line); border-radius: 6px; overflow: hidden; background: var(--bg-1); }
.shot__head { display: flex; justify-content: space-between; align-items: center; padding: 8px 12px; border-bottom: 1px solid var(--line); background: var(--bg-2); font-size: 0.85rem; }
.shot__id { font-family: "JetBrains Mono", ui-monospace, monospace; color: var(--fg-1); }
.shot__score { font-family: "JetBrains Mono", ui-monospace, monospace; }
.shot__score.good { color: var(--good); }
.shot__score.warn { color: var(--warn); }
.shot__score.bad  { color: var(--bad);  }
.shot img {
  width: 100%; display: block; aspect-ratio: 1440 / 900; object-fit: contain;
  background: #0d0d0d;
}

/* Pixel-diff overlay (C5) ---------------------------------------------- */
.diff {
  position: relative; aspect-ratio: 1440 / 900; background: #0d0d0d;
  overflow: hidden; user-select: none;
}
.diff__layer {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; pointer-events: none;
}
.diff__layer.is-missing {
  background: repeating-linear-gradient(
    135deg, var(--bg-2) 0 12px, transparent 12px 24px
  ), var(--bg-2);
}
.diff__layer--ref { z-index: 1; }
.diff__layer--mod { z-index: 2; }
.diff__layer--diff { z-index: 3; mix-blend-mode: screen; opacity: 0; transition: opacity 200ms; }
.diff[data-mode="diff"]    .diff__layer--diff { opacity: 1; }
.diff[data-mode="diff"]    .diff__layer--mod  { opacity: 0; }
.diff[data-mode="overlay"] .diff__layer--mod  { opacity: var(--diff-opacity, 0.5); }
.diff[data-mode="ref"]     .diff__layer--mod  { opacity: 0; }
.diff[data-mode="model"]   .diff__layer--mod  { opacity: 1; }

.diff-controls {
  display: flex; gap: 6px; padding: 8px 12px;
  background: var(--bg-2); border-bottom: 1px solid var(--line);
  font-size: 0.84rem;
  align-items: center;
}
.diff-controls__group { display: inline-flex; gap: 0; }
.diff-controls__group button {
  background: transparent; color: var(--fg-1); border: 1px solid var(--line);
  border-right-width: 0; padding: 4px 10px; font: inherit; cursor: pointer;
  font-size: 0.78rem; letter-spacing: 0.04em;
}
.diff-controls__group button:first-child { border-radius: 4px 0 0 4px; }
.diff-controls__group button:last-child { border-radius: 0 4px 4px 0; border-right-width: 1px; }
.diff-controls__group button:hover { color: var(--fg-0); border-color: var(--accent); }
.diff-controls__group button.is-active {
  background: var(--accent); color: white; border-color: var(--accent);
}
.diff-controls input[type=range] {
  flex: 1; max-width: 220px; accent-color: var(--accent);
}
.diff-controls .empty {
  color: var(--fg-2); font-style: italic; font-size: 0.82rem;
}


/* Heatmap (models × tasks) --------------------------------------------- */
.heatmap-wrap { margin: 28px 0 32px; }
.heatmap-wrap h2 { font-size: 1.1rem; font-weight: 600; margin-bottom: 6px; letter-spacing: -0.01em; }
.heatmap__sub { color: var(--fg-2); font-size: 0.86rem; margin-bottom: 12px; }
.heatmap-key {
  display: inline-block; padding: 1px 8px; border-radius: 999px;
  font-size: 0.74rem; letter-spacing: 0.04em; margin: 0 2px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
}
.heatmap-key--good { background: rgba(42, 122, 63, 0.18); color: var(--good); }
.heatmap-key--warn { background: rgba(184, 138, 20, 0.18); color: var(--warn); }
.heatmap-key--bad  { background: rgba(183, 58, 58, 0.18); color: var(--bad); }
.heatmap-key--miss { background: var(--bg-2); color: var(--fg-2); }

.heatmap-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: 6px; }
.heatmap {
  width: 100%; border-collapse: collapse; font-size: 0.88rem; min-width: 480px;
}
.heatmap th, .heatmap td { padding: 8px 10px; text-align: center; border-bottom: 1px solid var(--bg-2); }
.heatmap thead th {
  background: var(--bg-2); font-weight: 500; color: var(--fg-1);
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em;
  border-bottom: 1px solid var(--line);
}
.heatmap thead th:first-child, .heatmap tbody th:first-child {
  text-align: left;
}
.heatmap tbody th {
  background: var(--bg-1); font-weight: 500; color: var(--fg-0);
  text-align: left;
}
.heatmap tbody tr:hover td, .heatmap tbody tr:hover th { background: var(--bg-2); }
.heatmap td a {
  display: block; text-decoration: none; color: inherit;
  padding: 2px 0; font-family: "JetBrains Mono", ui-monospace, monospace;
}
.heatmap td.cell-good { background: rgba(42, 122, 63, 0.10); color: var(--good); font-weight: 600; }
.heatmap td.cell-warn { background: rgba(184, 138, 20, 0.10); color: var(--warn); font-weight: 600; }
.heatmap td.cell-bad  { background: rgba(183, 58, 58, 0.10); color: var(--bad);  font-weight: 600; }
.heatmap td.cell-miss { color: var(--fg-2); font-style: italic; }
.heatmap td.cell-task-link { padding: 0; }
.heatmap td.cell-task-link a { padding: 8px 10px; }

/* CI status strip ------------------------------------------------------- */
.ci { margin: 38px 0 0; }
.ci h2 { font-size: 1.15rem; font-weight: 600; margin-bottom: 6px; letter-spacing: -0.01em; }
.ci__sub { color: var(--fg-2); font-size: 0.88rem; margin-bottom: 14px; }
.ci__list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.ci-run {
  display: grid; grid-template-columns: 18px 1fr auto auto; gap: 12px;
  align-items: center;
  padding: 10px 14px; border: 1px solid var(--line); border-radius: 6px;
  background: var(--bg-1); color: var(--fg-1); text-decoration: none;
  font-size: 0.92rem;
}
.ci-run:hover { border-color: var(--accent); color: var(--fg-0); }
.ci-run__dot {
  width: 12px; height: 12px; border-radius: 50%; background: var(--fg-2);
}
.ci-run__dot[data-conclusion="success"]    { background: var(--good); }
.ci-run__dot[data-conclusion="failure"]    { background: var(--bad);  }
.ci-run__dot[data-conclusion="cancelled"]  { background: var(--fg-2); }
.ci-run__dot[data-conclusion="in_progress"],
.ci-run__dot[data-conclusion="queued"]     { background: var(--warn); animation: pulse 1.6s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(184, 138, 20, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(184, 138, 20, 0); }
  100% { box-shadow: 0 0 0 0 rgba(184, 138, 20, 0); }
}
.ci-run__title { font-weight: 500; color: var(--fg-0); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ci-run__meta  { font-family: "JetBrains Mono", ui-monospace, monospace; font-size: 0.78rem; color: var(--fg-2); white-space: nowrap; }
.ci-run__when  { font-size: 0.78rem; color: var(--fg-2); white-space: nowrap; }
.ci__error     { color: var(--fg-2); font-size: 0.85rem; padding: 12px; background: var(--bg-2); border-radius: 6px; }

/* Footer ---------------------------------------------------------------- */
.site-footer {
  background: var(--bg-1); border-top: 1px solid var(--line);
  padding: 18px 24px; color: var(--fg-2); font-size: 0.85rem;
  display: flex; gap: 18px; justify-content: space-between; flex-wrap: wrap;
  margin-top: auto;
}
.site-footer a { color: var(--fg-1); }

/* Print + mobile -------------------------------------------------------- */
@media (max-width: 720px) {
  main { padding: 0 16px 40px; }
  .topbar__nav { gap: 12px; font-size: 0.85rem; }
  .topbar__nav a { font-size: 0.85rem; }
  .hero h1 { font-size: 1.45rem; }
  .detail-summary { grid-template-columns: repeat(2, 1fr); }
  .shots { grid-template-columns: 1fr; }
  .thumb-row { grid-template-columns: repeat(2, 1fr); }
}

.card__live {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
}
.card__live a {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
}
.card__live a:hover { text-decoration: underline; }

.draft-placeholder {
  background: var(--bg-1);
  border: 1px dashed var(--line);
  border-radius: 6px;
  padding: 18px 22px;
  color: var(--fg-1);
  font-size: 0.92rem;
  line-height: 1.55;
}
.draft-placeholder p { margin: 0 0 10px 0; }
.draft-placeholder p:last-child { margin-bottom: 0; }
.draft-placeholder code {
  background: var(--bg-2);
  padding: 1px 5px;
  border-radius: 3px;
  font-size: 0.85em;
}
.cp-list {
  margin: 6px 0 0 0;
  padding-left: 22px;
  color: var(--fg-2);
  font-size: 0.88rem;
}
.cp-list li { margin: 2px 0; }

@media (prefers-color-scheme: dark) {
  :root {
    --bg-0:  #14110c;
    --bg-1:  #1a1612;
    --bg-2:  #221c16;
    --line:  #2c2520;
    --fg-0:  #efe6d8;
    --fg-1:  #c8bfb0;
    --fg-2:  #8a8170;
    --accent: #e0743f;
    --accent-2: #6da4e7;
  }
  .shot img { background: #050505; }
}
