/* =====================================================================
   Stocktakes Online — Barcode Datalink
   ---------------------------------------------------------------------
   The look is warehouse, not startup: signage contrast, engineering
   greys, and one signal colour used the way amber is used on a loading
   dock — sparingly, and always to mean something.

   Two motifs carry the identity:
     .scan   a laser line sweeping a surface, as a scanner does
     .bars   barcode rules, used as dividers and ornament

   The logo runs in white here (assets/sto-logo-white.png); the blue
   original is kept for light backgrounds and the favicon.

   Everything is one stylesheet and no build step, matching the rest of
   the product.
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@500;700;900&family=IBM+Plex+Mono:wght@400;500;600&family=IBM+Plex+Sans:wght@400;500;600&display=swap');

:root {
  --ink:      #0c0f11;
  --ink-2:    #12171a;
  --steel:    #1c2429;
  --steel-2:  #2a343b;
  --concrete: #8792a0;
  --chalk:    #c9d1da;
  --paper:    #f3f0ea;
  --signal:   #ffb800;
  --ember:    #e8492c;
  --brand:    #2f7ae0;   /* the logo blue, lifted to read on near-black */

  --display: 'Archivo', 'Helvetica Neue', sans-serif;
  --body:    'IBM Plex Sans', system-ui, sans-serif;
  --mono:    'IBM Plex Mono', ui-monospace, monospace;

  --rule: 1px solid #232c33;
  --gutter: clamp(20px, 5vw, 72px);
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--chalk);
  font: 400 17px/1.65 var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Engineering paper, barely there. Gives the dark a surface rather than
   a void, without ever competing with the text. */
body::before {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .022) 1px, transparent 1px);
  background-size: 64px 64px;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); position: relative; z-index: 1; }

/* ---------- type ---------- */

h1, h2, h3, h4 { font-family: var(--display); font-weight: 900; line-height: .96; letter-spacing: -.02em; margin: 0; color: #fff; }
h1 { font-size: clamp(44px, 7.4vw, 104px); }
h2 { font-size: clamp(32px, 4.4vw, 60px); }
h3 { font-size: clamp(21px, 2vw, 27px); line-height: 1.12; letter-spacing: -.01em; }
h4 { font-size: 17px; font-weight: 700; letter-spacing: .01em; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.lede { font-size: clamp(18px, 1.6vw, 22px); line-height: 1.55; color: #e3e9ef; max-width: 62ch; }
.muted { color: var(--concrete); }
.small { font-size: 14.5px; line-height: 1.55; }

/* The mono eyebrow: a part number stencilled on a crate. */
.eyebrow {
  font: 500 12px/1 var(--mono);
  letter-spacing: .18em; text-transform: uppercase; color: var(--signal);
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px;
}
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--signal); }
.eyebrow.plain { color: var(--concrete); }
.eyebrow.plain::before { background: var(--steel-2); }

/* ---------- barcode rule ---------- */

.bars {
  height: 26px;
  background-image: repeating-linear-gradient(
    90deg,
    var(--steel-2) 0 2px, transparent 2px 5px,
    var(--steel-2) 5px 6px, transparent 6px 11px,
    var(--steel-2) 11px 14px, transparent 14px 16px,
    var(--steel-2) 16px 17px, transparent 17px 23px
  );
  opacity: .85;
}
.bars.gold { background-image: repeating-linear-gradient(
    90deg,
    var(--signal) 0 2px, transparent 2px 5px,
    var(--signal) 5px 6px, transparent 6px 11px,
    var(--signal) 11px 14px, transparent 14px 16px,
    var(--signal) 16px 17px, transparent 17px 23px
  ); height: 14px; opacity: .9; }

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

header.bar {
  position: sticky; top: 0; z-index: 40;
  background: rgba(12, 15, 17, .86);
  backdrop-filter: blur(14px);
  border-bottom: var(--rule);
}
header.bar .wrap { display: flex; align-items: center; gap: 26px; height: 80px; }

.brand { display: flex; align-items: center; text-decoration: none; margin-right: auto; }
.brand img { height: 40px; width: auto; }
footer .brand img { height: 46px; }

nav.main { display: flex; align-items: center; gap: 24px; }
nav.main a {
  font-size: 14.5px; font-weight: 500; text-decoration: none; color: var(--chalk);
  padding: 6px 0; position: relative; white-space: nowrap;
}
nav.main a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--signal); transition: right .28s cubic-bezier(.2,.7,.3,1);
}
nav.main a:hover::after, nav.main a[aria-current]::after { right: 0; }
nav.main a[aria-current] { color: #fff; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font: 600 14.5px var(--body); text-decoration: none; white-space: nowrap;
  padding: 12px 22px; border: 1px solid transparent; cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn:active { transform: translateY(1px); }
.btn-signal { background: var(--signal); color: #17120a; }
.btn-signal:hover { background: #ffc633; }
.btn-ghost { border-color: var(--steel-2); color: #fff; }
.btn-ghost:hover { border-color: var(--signal); color: var(--signal); }
.btn-lg { padding: 16px 30px; font-size: 16px; }

.menu-btn { display: none; background: none; border: 1px solid var(--steel-2); color: #fff; padding: 9px 13px; font: 500 13px var(--mono); cursor: pointer; }

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

.hero { position: relative; padding: clamp(72px, 11vw, 148px) 0 clamp(56px, 8vw, 104px); overflow: hidden; }
.hero::after {
  content: ''; position: absolute; top: -30%; right: -12%; width: 62vw; height: 78vh;
  background: radial-gradient(closest-side, rgba(255, 184, 0, .13), transparent 72%);
  pointer-events: none;
}
.hero h1 { max-width: 15ch; text-transform: uppercase; }
.hero h1 em { font-style: normal; color: var(--signal); }
.hero .lede { margin-top: 30px; }
.hero .cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 40px; }

/* The scan: an amber line travelling a surface, the way a scanner reads
   a label. Used once on the hero, so it stays an event and not wallpaper. */
.scan { position: relative; }
.scan::before {
  content: ''; position: absolute; left: 0; right: 0; height: 2px; top: 0; z-index: 2;
  background: linear-gradient(90deg, transparent, var(--signal), transparent);
  box-shadow: 0 0 18px 2px rgba(255, 184, 0, .45);
  animation: sweep 4.6s cubic-bezier(.6,0,.4,1) infinite;
}
@keyframes sweep { 0%, 8% { top: 0; opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } 92%, 100% { top: 100%; opacity: 0; } }

/* ---------- stat strip ---------- */

.strip { border-top: var(--rule); border-bottom: var(--rule); background: var(--ink-2); }
.strip .wrap { display: grid; grid-template-columns: repeat(4, 1fr); }
.strip div { padding: 34px 26px 34px 0; border-right: var(--rule); }
.strip div:last-child { border-right: 0; }
.strip b { display: block; font-family: var(--display); font-weight: 900; font-size: clamp(30px, 3.4vw, 46px); color: #fff; line-height: 1; letter-spacing: -.03em; }
.strip span { display: block; font: 400 13px/1.4 var(--mono); color: var(--concrete); margin-top: 12px; text-transform: uppercase; letter-spacing: .1em; }

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

section { padding: clamp(64px, 9vw, 124px) 0; position: relative; }
section.tint { background: var(--ink-2); border-top: var(--rule); border-bottom: var(--rule); }
.head { max-width: 70ch; margin-bottom: clamp(40px, 5vw, 66px); }
.head p { margin-top: 22px; }

.grid { display: grid; gap: 1px; background: #1b2329; border: var(--rule); }
.grid.two   { grid-template-columns: repeat(2, 1fr); }
.grid.three { grid-template-columns: repeat(3, 1fr); }
.grid.four  { grid-template-columns: repeat(4, 1fr); }
.grid > * { background: var(--ink); padding: clamp(26px, 3vw, 40px); }
section.tint .grid > * { background: var(--ink-2); }

/* A cell that answers when you point at it - the amber edge lights, the
   way a scan confirms. */
.cell { position: relative; transition: background .25s ease; }
.cell::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--signal); transform: scaleY(0); transform-origin: top;
  transition: transform .3s cubic-bezier(.2,.7,.3,1);
}
.cell:hover::before { transform: scaleY(1); }
.cell:hover { background: #10161a !important; }
.cell .n { font: 600 12px var(--mono); color: var(--signal); letter-spacing: .12em; display: block; margin-bottom: 18px; }
.cell h3 { margin-bottom: 12px; }
.cell p { color: var(--concrete); font-size: 15.5px; }

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

.steps { display: grid; gap: 1px; background: #1b2329; border: var(--rule); }
.step { background: var(--ink); padding: clamp(26px, 3.4vw, 44px); display: grid; grid-template-columns: 92px 1fr; gap: clamp(20px, 3vw, 44px); align-items: start; }
section.tint .step { background: var(--ink-2); }
.step .num { font-family: var(--display); font-weight: 900; font-size: 54px; line-height: .8; color: transparent; -webkit-text-stroke: 1.5px var(--steel-2); letter-spacing: -.04em; transition: -webkit-text-stroke-color .3s ease; }
.step:hover .num { -webkit-text-stroke-color: var(--signal); }
.step h3 { margin-bottom: 10px; }
.step p { color: var(--concrete); max-width: 68ch; }

/* ---------- device photography ---------- */

/* Zebra's shots are cut out on white. On a dark page they get a
   deliberate white plate rather than being blended into nothing - it
   reads as a datasheet inset, which is what it is. */
.shot { background: #fff; display: flex; align-items: center; justify-content: center; padding: 20px; }
.shot img { width: 100%; height: auto; }

.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: #1b2329; border: var(--rule); align-items: stretch; }
.feature > div { background: var(--ink); padding: clamp(28px, 3.6vw, 52px); display: flex; flex-direction: column; justify-content: center; }
.feature .shot { padding: clamp(22px, 3vw, 46px); }
.feature h2 { font-size: clamp(28px, 3.2vw, 42px); margin-bottom: 16px; }

.device .shot { margin: -10px 0 22px; padding: 14px; }
.device .shot img { max-height: 220px; width: auto; }

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

.device { display: flex; flex-direction: column; }
.device .badge { font: 600 11px var(--mono); letter-spacing: .14em; text-transform: uppercase; color: var(--ink); background: var(--signal); padding: 5px 10px; align-self: flex-start; margin-bottom: 22px; }
.device .badge.alt { background: var(--steel-2); color: var(--chalk); }
.device h3 { margin-bottom: 6px; }
.device .role { font: 500 13px var(--mono); color: var(--signal); letter-spacing: .06em; margin-bottom: 18px; }
.device ul { margin: 0 0 24px; padding: 0; list-style: none; }
.device li { position: relative; padding-left: 20px; margin-bottom: 9px; font-size: 15px; color: var(--concrete); }
.device li::before { content: ''; position: absolute; left: 0; top: 10px; width: 9px; height: 2px; background: var(--steel-2); }
.device .foot { margin-top: auto; padding-top: 20px; border-top: var(--rule); font: 400 13.5px var(--mono); color: var(--concrete); }

/* ---------- downloads ---------- */

.downloads { border-top: var(--rule); }
.dl {
  display: flex; align-items: center; gap: 18px; padding: 20px 4px;
  border-bottom: var(--rule); text-decoration: none; transition: padding-left .25s ease, background .25s ease;
}
.dl:hover { padding-left: 14px; background: #10161a; }
.dl .kind {
  font: 600 10.5px var(--mono); letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink); background: var(--signal); padding: 5px 9px; flex: none;
}
.dl .kind.alt { background: var(--steel-2); color: var(--chalk); }
.dl b { font-family: var(--display); font-weight: 700; font-size: 17px; color: #fff; display: block; }
.dl span span { font: 400 13px var(--mono); color: var(--concrete); }
.dl .go { margin-left: auto; font: 600 13px var(--mono); color: var(--signal); flex: none; }

/* ---------- pricing ---------- */

.tiers { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: #1b2329; border: var(--rule); }
.tier { background: var(--ink); padding: clamp(30px, 3.6vw, 48px); display: flex; flex-direction: column; }
.tier.featured { background: #12171a; position: relative; }
.tier.featured::after { content: ''; position: absolute; inset: 0; border: 2px solid var(--signal); pointer-events: none; }
.tier .kind { font: 600 12px var(--mono); letter-spacing: .16em; text-transform: uppercase; color: var(--signal); margin-bottom: 18px; }
.tier h3 { font-size: clamp(26px, 2.6vw, 34px); margin-bottom: 14px; }
.tier .price { font-family: var(--display); font-weight: 900; font-size: clamp(38px, 4.6vw, 58px); color: #fff; line-height: 1; letter-spacing: -.03em; margin: 24px 0 6px; }
.tier .per { font: 400 14px var(--mono); color: var(--concrete); margin-bottom: 28px; }
.tier ul { list-style: none; margin: 0 0 32px; padding: 0; }
.tier li { padding-left: 26px; position: relative; margin-bottom: 12px; font-size: 15.5px; }
.tier li::before { content: '✓'; position: absolute; left: 0; color: var(--signal); font-weight: 700; }
.tier .btn { margin-top: auto; }

/* A price nobody has set yet, marked so it cannot be mistaken for one. */
.tbc { color: var(--ember); font-size: clamp(26px, 3vw, 38px); }
.needs-input {
  border-left: 3px solid var(--ember);
  background: rgba(232, 73, 44, .07);
  padding: 16px 20px;
  font: 400 14px/1.6 var(--mono);
  color: #f0b3a6;
  margin: 26px 0;
}
.needs-input b { color: var(--ember); display: block; margin-bottom: 4px; font-family: var(--mono); }

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

.faq { border-top: var(--rule); }
.faq details { border-bottom: var(--rule); }
.faq summary {
  cursor: pointer; list-style: none; padding: 26px 44px 26px 0; position: relative;
  font-family: var(--display); font-weight: 700; font-size: clamp(17px, 1.7vw, 21px); color: #fff;
  transition: color .2s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--signal); }
.faq summary::after {
  content: '+'; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font: 400 26px var(--mono); color: var(--signal); transition: transform .25s ease;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq .answer { padding: 0 60px 30px 0; color: var(--concrete); max-width: 78ch; }
.faq .answer a { color: var(--signal); }

/* ---------- contact ---------- */

.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 1px; background: #1b2329; border: var(--rule); }
.contact-grid > div { background: var(--ink); padding: clamp(28px, 3.4vw, 46px); }
.detail { margin-bottom: 30px; }
.detail dt { font: 600 11px var(--mono); letter-spacing: .16em; text-transform: uppercase; color: var(--concrete); margin-bottom: 8px; }
.detail dd { margin: 0; font-size: 18px; color: #fff; }
.detail dd a { text-decoration: none; border-bottom: 1px solid var(--steel-2); }
.detail dd a:hover { color: var(--signal); border-color: var(--signal); }

/* ---------- callout ---------- */

.callout { background: var(--signal); color: #17120a; }
.callout h2 { color: #17120a; }
.callout p { color: #3a2f14; max-width: 58ch; }
.callout .btn-dark { background: var(--ink); color: #fff; }
.callout .btn-dark:hover { background: var(--steel); }
.callout .wrap { display: flex; align-items: center; justify-content: space-between; gap: 44px; flex-wrap: wrap; }

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

footer { border-top: var(--rule); padding: clamp(48px, 6vw, 76px) 0 40px; background: var(--ink-2); }
.foot-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 44px; margin-bottom: 48px; }
footer h4 { font-family: var(--mono); font-weight: 600; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--concrete); margin-bottom: 18px; }
footer ul { list-style: none; margin: 0; padding: 0; }
footer li { margin-bottom: 11px; }
footer a { text-decoration: none; font-size: 15px; color: var(--chalk); }
footer a:hover { color: var(--signal); }
.foot-end { border-top: var(--rule); padding-top: 26px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font: 400 13px var(--mono); color: var(--concrete); }

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

.page-head { padding: clamp(56px, 7vw, 96px) 0 clamp(40px, 5vw, 64px); border-bottom: var(--rule); position: relative; overflow: hidden; }
.page-head::after {
  content: ''; position: absolute; top: -40%; right: -8%; width: 48vw; height: 70vh;
  background: radial-gradient(closest-side, rgba(255, 184, 0, .09), transparent 70%);
  pointer-events: none;
}
.page-head h1 { font-size: clamp(38px, 5.6vw, 76px); text-transform: uppercase; max-width: 18ch; }
.page-head .lede { margin-top: 26px; }

/* ---------- prose ---------- */

.prose { max-width: 72ch; }
.prose h2 { margin: 56px 0 20px; }
.prose h3 { margin: 38px 0 14px; color: var(--signal); }
.prose p, .prose li { color: var(--concrete); }
.prose strong { color: #fff; font-weight: 600; }
.prose ul { padding-left: 22px; }
.prose li { margin-bottom: 10px; }
.prose blockquote {
  margin: 34px 0; padding: 22px 28px; border-left: 3px solid var(--signal);
  background: var(--ink-2); color: var(--chalk); font-size: 17px;
}

/* ---------- entrance ---------- */

.rise { opacity: 0; transform: translateY(18px); animation: rise .8s cubic-bezier(.2,.7,.3,1) forwards; }
.rise:nth-child(2) { animation-delay: .07s; }
.rise:nth-child(3) { animation-delay: .14s; }
.rise:nth-child(4) { animation-delay: .21s; }
@keyframes rise { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .rise { animation: none; opacity: 1; transform: none; }
  .scan::before { animation: none; opacity: .5; top: 0; }
  html { scroll-behavior: auto; }
}

/* ---------- print ---------- */

@media print {
  header.bar, .callout, body::before { display: none !important; }
  body { background: #fff; color: #000; }
  h1, h2, h3, h4, .dl b { color: #000 !important; }
  a { text-decoration: underline; }
}

/* ---------- responsive ---------- */

@media (max-width: 1000px) {
  .grid.four { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}

@media (max-width: 860px) {
  nav.main {
    position: fixed; inset: 80px 0 auto; flex-direction: column; align-items: stretch;
    gap: 0; background: var(--ink-2); border-bottom: var(--rule); padding: 12px var(--gutter) 24px;
    display: none;
  }
  nav.main.open { display: flex; }
  nav.main a { padding: 15px 0; border-bottom: var(--rule); font-size: 16px; }
  nav.main .btn { margin-top: 16px; }
  .menu-btn { display: block; }
  .strip .wrap { grid-template-columns: repeat(2, 1fr); }
  .strip div { border-right: 0; padding: 26px 0; border-bottom: var(--rule); }
  .grid.two, .grid.three, .grid.four { grid-template-columns: 1fr; }
  .feature { grid-template-columns: 1fr; }
  .tiers { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: 14px; }
  .step .num { font-size: 40px; }
  .brand img { height: 34px; }
  .dl { flex-wrap: wrap; gap: 10px; }
  .dl .go { margin-left: 0; width: 100%; }
}

@media (max-width: 560px) {
  .foot-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(38px, 11vw, 56px); }
}

/* ---------- brand line ---------- */

/* The mark spells "STO"; this spells out what it stands for. A hairline
   between them so it reads as two things, not one crowded lockup. */
.brandline {
  font-family: var(--display); font-weight: 900; font-size: 19px; letter-spacing: -.02em;
  color: #fff; line-height: 1; text-decoration: none; white-space: nowrap;
  padding-left: 18px; margin-left: 16px; border-left: 1px solid var(--steel-2);
}

/* ---------- device cards, clickable ---------- */

a.device { text-decoration: none; color: inherit; }
a.device .shot { transition: transform .4s cubic-bezier(.2,.7,.3,1); }
a.device:hover .shot img { transform: scale(1.04); }
a.device .shot img { transition: transform .4s cubic-bezier(.2,.7,.3,1); }
a.device .more { margin-top: 18px; font: 600 13px var(--mono); color: var(--signal); letter-spacing: .06em; }
a.device:hover .more { text-decoration: underline; }

/* ---------- product page ---------- */

.hero-shot { background: #fff; padding: clamp(24px, 4vw, 60px); border: var(--rule); }
.hero-shot img { width: 100%; height: auto; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #1b2329; border: var(--rule); }
.gallery figure { margin: 0; background: #fff; }
.gallery img { width: 100%; height: auto; display: block; }
.gallery figcaption { background: var(--ink); color: var(--concrete); font: 400 12.5px var(--mono); padding: 12px 14px; }

.spec { display: grid; gap: 1px; background: #1b2329; border: var(--rule); }
.spec div { background: var(--ink); padding: 20px 24px; display: grid; grid-template-columns: 240px 1fr; gap: 24px; }
.spec dt { font: 600 12px var(--mono); letter-spacing: .1em; text-transform: uppercase; color: var(--signal); margin: 0; }
.spec dd { margin: 0; color: var(--chalk); }

.crumbs { font: 500 12.5px var(--mono); letter-spacing: .08em; text-transform: uppercase; color: var(--concrete); margin-bottom: 20px; }
.crumbs a { color: var(--concrete); text-decoration: none; }
.crumbs a:hover { color: var(--signal); }

@media (max-width: 860px) {
  .brandline { display: none; }
  .gallery { grid-template-columns: 1fr; }
  .spec div { grid-template-columns: 1fr; gap: 8px; }
}

/* ---------- report list ---------- */

.reports { border-top: var(--rule); }
.report {
  display: grid; grid-template-columns: 64px 1fr 260px; gap: clamp(18px, 3vw, 40px);
  padding: 30px 4px; border-bottom: var(--rule); align-items: start;
  transition: background .25s ease, padding-left .25s ease;
}
.report:hover { background: #10161a; padding-left: 14px; }
.report .n { font: 600 13px var(--mono); color: var(--signal); letter-spacing: .1em; padding-top: 4px; }
.report h3 { margin-bottom: 8px; }
.report p { color: var(--concrete); font-size: 15.5px; max-width: 62ch; margin-bottom: 12px; }
.report .cols {
  font: 400 12.5px/1.7 var(--mono); color: var(--chalk);
  background: var(--ink-2); border-left: 2px solid var(--steel-2); padding: 9px 14px;
}
.report .files { display: flex; flex-direction: column; gap: 8px; padding-top: 4px; }
.report .files a {
  display: inline-flex; align-items: center; gap: 9px; text-decoration: none;
  font: 600 13px var(--mono); letter-spacing: .04em; padding: 9px 14px;
  border: 1px solid var(--steel-2); color: var(--chalk); transition: all .2s ease;
}
.report .files a:hover { border-color: var(--signal); color: var(--signal); }
.report .files a .tag { font-size: 10.5px; letter-spacing: .12em; color: var(--ink); background: var(--signal); padding: 3px 6px; }
.report .files a:hover .tag { background: var(--signal); }
.report .files a.csv .tag { background: var(--steel-2); color: var(--chalk); }

@media (max-width: 900px) {
  .report { grid-template-columns: 40px 1fr; }
  .report .files { grid-column: 2; flex-direction: row; flex-wrap: wrap; }
}
