/* Computer Things Ltd — single stylesheet, no build step. */
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;600;800&display=swap');

:root {
  --bg: #f3f2f2;
  --ink: #201e1d;
  --accent: #ec3013;
  --accent-deep: #ae1800;
  --muted: rgba(32, 30, 29, 0.55);
  --divider: rgba(32, 30, 29, 0.4);
}

*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Archivo", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
::selection { background: rgba(236, 48, 19, 0.3); }
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.page {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 48px;
}

a { color: var(--accent-deep); text-underline-offset: 3px; }
a:hover { color: var(--accent); }

h1, h2 {
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
}
h1 { font-size: clamp(30px, 6vw, 44px); }
h2 {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 20px;
}
p { margin: 0 0 12px; }

header.site {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 0;
  border-bottom: 2px solid var(--divider);
}
.mark {
  width: 12px;
  height: 12px;
  background: var(--accent);
  flex: none;
}
.brand {
  margin: 0;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
}

main > section { padding: 40px 0; border-bottom: 2px solid var(--divider); }

.lede { font-size: 18px; max-width: 56ch; }
.lede:last-child, p:last-child { margin-bottom: 0; }

/* Products — dl rows on a visible grid */
dl.products { margin: 0; }
dl.products > div {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 8px 24px;
  padding: 16px 0;
  border-top: 1px solid var(--divider);
}
dl.products > div:first-child { border-top: 0; padding-top: 0; }
dl.products dt { font-weight: 600; }
dl.products dt a { color: inherit; text-decoration: none; }
dl.products dt a:hover { color: var(--accent); }
dl.products dt a::after { content: " ↗"; color: var(--accent); font-weight: 400; }
dl.products dd { margin: 0; color: var(--muted); }

footer.site { padding: 24px 0 0; font-size: 13px; color: var(--muted); }
footer.site p { margin: 0 0 4px; }
footer.site a { color: inherit; }
footer.site a:hover { color: var(--accent); }

@media (max-width: 560px) {
  dl.products > div { grid-template-columns: 1fr; gap: 2px; }
}
