:root {
  color-scheme: light;
  --bg: #f6f4ef;
  --surface: #ffffff;
  --surface-alt: #e9eef0;
  --ink: #202124;
  --muted: #636a70;
  --line: #d7d1c7;
  --accent: #0f766e;
  --shadow: 0 18px 45px rgba(29, 25, 20, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
a { color: inherit; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 52px);
  border-bottom: 1px solid rgba(32, 33, 36, 0.12);
  background: rgba(246, 244, 239, 0.92);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-block;
  font-weight: 800;
  font-size: 18px;
  text-decoration: none;
  letter-spacing: 0;
}
.strapline {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.nav, .segments, .actions, .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.nav { justify-content: flex-end; }
.nav a, .actions a, .segment {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  padding: 8px 12px;
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
main {
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 26px clamp(18px, 4vw, 52px) 64px;
}
.overview {
  display: block;
  margin-bottom: 22px;
}
.overview-copy { padding: 18px 0; }
.eyebrow, .kicker {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1, h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.05;
}
h1 {
  max-width: 850px;
  font-size: clamp(42px, 5vw, 72px);
}
.overview p:not(.eyebrow) {
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
}
.toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  gap: 14px;
  align-items: end;
  margin: 24px 0;
}
.search span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.search input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  padding: 10px 12px;
  color: var(--ink);
  font: inherit;
}
.segment.active, .actions a:first-child {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.product {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.product.priority { border-color: rgba(15, 118, 110, 0.45); }
.product.warning { border-color: rgba(154, 52, 18, 0.38); }
.product.draft { border-color: rgba(124, 58, 237, 0.35); }
.shot {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111;
}
.shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  transition: transform 180ms ease;
}
.product:hover .shot img { transform: scale(1.025); }
.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
}
.product-head { min-height: 70px; }
.product h2 { font-size: 28px; }
.summary {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
.chips {
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}
.chips li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 9px;
  background: var(--surface-alt);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}
.actions { padding-top: 2px; }
.is-hidden { display: none; }

@media (max-width: 1040px) {
  .toolbar { grid-template-columns: 1fr; }
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .topbar {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }
  h1 { font-size: 42px; }
  .grid { grid-template-columns: 1fr; }
  .overview p:not(.eyebrow) { font-size: 16px; }
}
