/* ==========================================================================
   PRODUCT MOCK — the SaaS dashboard screenshot in the hero
   ========================================================================== */
.product-frame {
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur)) saturate(150%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(150%);
  box-shadow: 0 40px 80px -32px rgba(0, 0, 0, 0.25),
              0 8px 24px -10px rgba(0, 0, 0, 0.12);
  padding: 14px;
  overflow: hidden;
  transform: rotate(-1.5deg);
  transition: transform var(--d-slow) var(--ease-standard);
}

.product-frame:hover { transform: rotate(0deg) scale(1.01); }

.product-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 8px 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 12px;
}

.product-dots {
  display: flex;
  gap: 6px;
}

.product-dots span {
  width: 10px;
  height: 10px;
  border-radius: var(--r-pill);
  background: var(--line-2);
}

.product-url {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--muted);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: var(--paper-2);
  letter-spacing: 0.02em;
}

.product-screen {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 12px;
  height: calc(100% - 50px);
  background: var(--paper);
  border-radius: var(--r-md);
  padding: 12px;
}

.product-side {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-side-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: var(--r-sm);
  font-size: 0.8125rem;
  color: var(--ink-3);
  transition: background var(--d-fast) var(--ease-standard);
}

.product-side-item.is-active {
  background: var(--ink);
  color: var(--accent);
}

.product-side-item .ico {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: var(--line);
}

.product-side-item.is-active .ico { background: var(--accent); }

.product-side hr {
  border: 0;
  height: 1px;
  background: var(--line);
  margin: 6px 0;
}

.product-main {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.product-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-h {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
}

.product-pill {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: var(--r-pill);
  background: var(--accent);
  color: var(--accent-ink);
}

.product-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.product-stat {
  background: var(--paper-2);
  border-radius: var(--r-sm);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-stat .lbl {
  font-size: 10px;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-stat .val {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.product-stat .delta {
  font-size: 10px;
  color: #1F8A3F;
  font-weight: 600;
}

.product-chart {
  flex: 1;
  background: linear-gradient(180deg, var(--paper-2), transparent 80%);
  border-radius: var(--r-sm);
  padding: 10px;
  position: relative;
  min-height: 110px;
}

.product-chart svg {
  width: 100%;
  height: 100%;
}

.product-rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-row {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  gap: 8px;
  align-items: center;
  font-size: 11px;
  padding: 6px 8px;
  background: var(--paper-2);
  border-radius: var(--r-sm);
}

.product-row .avatar {
  width: 14px;
  height: 14px;
  border-radius: var(--r-pill);
  background: var(--ink);
}

.product-row.is-hi .avatar { background: var(--accent); }

.product-row .meta {
  color: var(--muted);
  font-family: var(--font-mono);
}
