/* DSCVR Labs — shared stylesheet. SHARED ELEMENT: see CLAUDE.md — the
   overall design changes only on explicit human request, not as a side
   effect of a product update. (Redesigned 2026-08-24 at Jonathan's
   request, from the DYB project: dark studio identity, Space Grotesk
   display type, image-bearing product cards.) */

:root {
  --bg: #0E1210;
  --surface: #161B18;
  --surface-2: #1C2320;
  --text: #EDF1EE;
  --text-mid: #A9B3AC;
  --text-low: #6E7873;
  --accent: #57C89A;
  --accent-dim: #2E6B53;
  --divider: #242B27;
  --max: 1020px;
  --display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font: 16px/1.65 var(--sans);
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---- header ---- */
header.site { padding: 26px 0; }
header.site .wrap {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
.brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.06em;
  color: var(--text);
  text-decoration: none;
}
.brand span { color: var(--accent); }
header.site nav { margin-left: auto; display: flex; gap: 22px; }
header.site nav a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 14px;
}
header.site nav a:hover { color: var(--text); }

main { padding: 64px 0 90px; }

/* ---- hero ---- */
.hero { padding-bottom: 10px; }
.hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 17ch;
}
.hero h1 .tick { color: var(--accent); }
.hero p.lede {
  color: var(--text-mid);
  font-size: 18px;
  max-width: 58ch;
  margin-top: 20px;
}

/* ---- product cards ---- */
.cards {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
}
.card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: 18px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: border-color 140ms ease, transform 140ms ease;
}
.card:hover { border-color: var(--accent-dim); transform: translateY(-2px); }
.card .art {
  aspect-ratio: 21 / 9;
  background: var(--surface-2);
  position: relative;
  overflow: hidden;
}
.card .art img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}
.card:hover .art img { transform: scale(1.03); }
.card .art .art-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-low);
}
.card .body { padding: 22px 24px 20px; }
.card h2 {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.card p { color: var(--text-mid); font-size: 15px; }
.card .status {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---- product-page prose (roadtrip/ etc.) ---- */
.prose { max-width: 640px; }
.prose h1 {
  font-family: var(--display);
  font-size: clamp(26px, 4.5vw, 36px);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.prose p.lede { color: var(--text-mid); font-size: 17.5px; margin-bottom: 36px; }
.prose h2 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-low);
  margin: 36px 0 10px;
}
.prose p, .prose li { color: var(--text-mid); }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 8px; }
.prose li strong { color: var(--text); font-weight: 600; }
.prose a { color: var(--accent); }

/* ---- footer ---- */
footer.site {
  border-top: 1px solid var(--divider);
  padding: 28px 0 44px;
  color: var(--text-low);
  font-size: 13.5px;
}
footer.site a { color: var(--text-mid); text-decoration: none; }
footer.site a:hover { color: var(--text); }
