/* Tool bench status page — styled to match patrickzimny.com (Ghost Scope theme).
   The :root token block below is duplicated verbatim across every tool; see
   CLAUDE.md. Do not edit it here alone. */

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
}

::selection { background: var(--accent); color: #fff; }

:focus-visible { outline: 2px solid var(--accent-ui); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--ink); color: var(--bg);
  padding: 0.5rem 1rem; z-index: 10; font-size: 0.85rem;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

.container { max-width: 46rem; margin: 0 auto; padding: 0 1.25rem; }

/* ---- chrome ---------------------------------------------------------- */

.tool-header { max-width: 46rem; margin: 0 auto; padding: 1.2rem 1.25rem 0; }
.tool-header a {
  font-size: 0.85rem; font-weight: 500; text-decoration: none;
  color: var(--ink-soft);
}
.tool-header a:hover { color: var(--accent-text); }

.breadcrumb { font-size: 0.8rem; color: var(--ink-soft); padding-top: 1.2rem; }
.breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent-text); text-decoration: underline; }

/* ---- title block ----------------------------------------------------- */

.tool-title { margin: 1.6rem 0 2.4rem; }

.tape {
  display: inline-block;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent-2-text);
  background: var(--accent-soft);
  border-radius: 2rem;
  padding: 0.3rem 0.9rem;
  margin-bottom: 1rem;
}

.tool-title h1 {
  font-weight: 600;
  font-size: clamp(1.9rem, 5vw, 2.7rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.tool-title h1 mark { background: none; color: inherit; }

.tagline { color: var(--ink-soft); font-size: 1.02rem; margin-top: 0.6rem; max-width: 34rem; }

.shop-status { font-size: 0.8rem; color: var(--ink-soft); margin-top: 0.7rem; }

a { color: var(--accent-text); text-decoration-thickness: 1px; text-underline-offset: 3px; }

/* ---- status page ------------------------------------------------------- */

/* The table carries four columns of prose. 46rem was sized for a single
   reading column and squeezes every cell into two or three lines. */
@media (min-width: 900px) {
  .container, .tool-header { max-width: 62rem; }
}

main h2 {
  font-size: 1.15rem; font-weight: 600;
  margin: 2.6rem 0 0.5rem;
}
main h3 {
  font-size: 0.9rem; font-weight: 600; color: var(--accent-2-text);
  margin: 1.4rem 0 0.5rem;
  letter-spacing: 0.02em;
}
.s-lede { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 1rem; max-width: 40rem; }

/* The table is the one wide thing on the page. It scrolls inside its own
   container so the page body never scrolls sideways on a phone. */
.s-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 0 -1.25rem; padding: 0 1.25rem; }

.s-table { width: 100%; border-collapse: collapse; min-width: 34rem; font-size: 0.92rem; }
.s-table th {
  text-align: left; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase; color: var(--ink-soft);
  padding: 0 0.9rem 0.6rem 0; white-space: nowrap;
}
.s-table td { padding: 0.85rem 0.9rem 0.85rem 0; border-top: 1px solid var(--line); vertical-align: top; }

.s-tool a { font-weight: 600; text-decoration: none; color: var(--ink); }
.s-tool a:hover { color: var(--accent-text); text-decoration: underline; }
.s-no { display: block; font-size: 0.72rem; color: var(--ink-soft); margin-top: 0.15rem; }

.s-when { white-space: nowrap; }
.s-date { display: block; font-weight: 500; }
.s-ago { display: block; font-size: 0.78rem; color: var(--ink-soft); margin-top: 0.15rem; }

.s-cadence, .s-expires { color: var(--ink-soft); max-width: 22rem; }

.s-coverage {
  background: var(--card); border: 1px solid var(--line); border-radius: 10px;
  padding: 0.9rem 1.1rem; margin-top: 1.4rem;
  font-size: 0.93rem; color: var(--ink-soft);
}
.s-coverage strong { color: var(--ink); }

.s-notes { list-style: none; margin: 0; padding: 0; }
.s-notes li {
  border-left: 3px solid var(--accent-line);
  background: var(--accent-soft);
  border-radius: 0 8px 8px 0;
  padding: 0.7rem 0.9rem; margin-bottom: 0.6rem;
  font-size: 0.92rem; color: var(--ink-soft);
}
.s-notes strong { color: var(--ink); }
.s-note-tool { font-size: 0.78rem; color: var(--accent-2-text); }

.s-sources { list-style: none; margin: 0 0 0.4rem; padding: 0; columns: 2; column-gap: 2rem; }
.s-sources li { font-size: 0.88rem; margin-bottom: 0.3rem; break-inside: avoid; }

@media (max-width: 600px) {
  .s-sources { columns: 1; }
  .s-cadence, .s-expires { min-width: 12rem; }
}

.s-footer {
  margin-top: 3rem; padding-top: 1.2rem; border-top: 1px solid var(--line);
  font-size: 0.85rem; color: var(--ink-soft);
}
