/* ==========================================================================
   Z Reports — hero (marketing site only)
   --------------------------------------------------------------------------
   Mirrors the Stock Atlas hero: brand lockup + copy on the left, a STATIC
   mock end-of-day Z report on the right. No JS — the numbers are illustrative
   sample figures. Self-contained: this page doesn't load atlas-hero.css, so
   the two-column hero + lockup are defined here too.
   ========================================================================== */

/* ---- Two-column hero ----------------------------------------------------- */
.hero__inner--zr {
  max-width: 1120px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero__copy { max-width: 640px; }
.hero__inner--zr h1 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }

/* Report card is illustrative — never intercept clicks or get announced. */
.hero__showcase { pointer-events: none; }

@media (max-width: 900px) {
  .hero__inner--zr { grid-template-columns: 1fr; }
  .hero__showcase { margin-top: 24px; }
}

/* ---- Brand lockup (mark + two-tone "Z Reports") -------------------------- */
.zr-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.zr-lockup__mark {
  width: 64px;
  height: auto;
  flex: none;
  border-radius: 15px;
  box-shadow: 0 4px 14px rgba(8, 14, 32, .35);
}
.zr-lockup__text { display: flex; flex-direction: column; line-height: 1; }
.zr-lockup__word {
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -.02em;
}
.zr-lockup__by {
  margin-top: 5px;
  font-size: .86rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: #b8c4dc;
}
.zr-lockup__a { color: #fff; }
.zr-lockup__b {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (max-width: 480px) { .zr-lockup__mark { width: 54px; } }

/* ==========================================================================
   Mock end-of-day Z report card
   ========================================================================== */
.zr-report {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 20px 22px 20px;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  color: var(--text);
}

/* Header: store + period */
.zr-report__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--border);
}
.zr-report__title { margin: 0; font-size: 1.02rem; color: var(--ink); }
.zr-report__meta { font-size: .78rem; color: var(--text-soft); margin-top: 2px; }
.zr-report__badge {
  font-size: .72rem; font-weight: 700; letter-spacing: .02em;
  padding: 5px 10px; border-radius: 999px;
  background: var(--bg-soft); color: var(--accent); white-space: nowrap;
}

/* Line-item rows */
.zr-report__section { padding: 14px 0; border-bottom: 1px solid var(--border); }
.zr-report__section:last-of-type { border-bottom: 0; }
.zr-report__row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px; font-size: .9rem; padding: 5px 0; color: var(--text-soft);
}
.zr-report__row span:last-child {
  font-weight: 600; color: var(--ink);
  font-variant-numeric: tabular-nums; letter-spacing: -.01em;
}
.zr-report__row--sub span:first-child { padding-left: 14px; font-size: .84rem; }
.zr-report__row--net span { font-weight: 800; color: var(--ink); font-size: .98rem; }
.zr-report__row--refund span:last-child { color: #b42318; }

/* Count tiles */
.zr-report__counts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding-top: 14px; }
.zr-report__count { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius); padding: 11px 13px; }
.zr-report__count-label { font-size: .72rem; color: var(--text-soft); margin-bottom: 4px; }
.zr-report__count-value { font-size: 1.35rem; font-weight: 800; color: var(--ink); letter-spacing: -.02em; font-variant-numeric: tabular-nums; line-height: 1.05; }

/* Actions footer (print / email) */
.zr-report__actions { display: flex; gap: 10px; padding-top: 16px; }
.zr-report__btn {
  flex: 1; text-align: center; font-size: .82rem; font-weight: 600;
  padding: 9px 12px; border-radius: var(--radius-sm); border: 1px solid var(--border);
  background: #fff; color: var(--text-soft);
}
.zr-report__btn--primary { background: var(--accent); color: #fff; border-color: var(--accent); }

@media (max-width: 380px) {
  .zr-report__count-value { font-size: 1.15rem; }
  .zr-report { padding: 18px; }
}
