/* ==========================================================================
   XpressGrow — product visuals
   --------------------------------------------------------------------------
   Bespoke screen mockups, shared by the home page and the products page.
   Rules that keep these from looking like clip-art (same rules as modules.css):
     · they are rebuilt from the product's own modules — schematic, data
       flavoured, real labels, real shapes. Never an illustration of software.
     · every colour is a token, so a theme swap repaints them (the one
       deliberate exception is .cpp — see below).
     · no inline style="" anywhere: the deployed CSP is style-src 'self' with
       no unsafe-inline, so a bar width lives in a utility class down the file.
     · no <img>, so they stay sharp on any display and cost no bytes.

   TWO PALETTES LIVE HERE.
   The dark panels (.tkt/.ordc/.stopc/.audc/.camv/.vcb) are device screens and
   inherit the console scope in site.css, which keeps them dark on light
   themes. The light panels (.cpp) are the CUSTOMER portal, which really is a
   light violet-to-teal product — showing it in the site's near-black would be
   a lie about what the shopkeeper opens. So .cpp pins its own palette and does
   not follow the theme, exactly as merch.css pins real product packaging.
   ========================================================================== */

/* ── Shared frame for the dark device panels ────────────────────────────── */
.tkt, .ordc, .stopc, .audc, .camv, .vcb {
  background: linear-gradient(180deg, var(--console-a) 0%, var(--console-b) 100%);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  box-shadow: 0 28px 70px -22px var(--shadow);
  padding: 16px 17px;
}

/* Shared chrome: a top strip of eyebrow + status pill. */
.pv-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--line);
}
.pv-k {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.pv-pill {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-3);
  border: 1px solid var(--line-2);
  border-radius: 20px;
  padding: 3px 8px;
  white-space: nowrap;
}
.pv-pill--off { color: var(--warn); border-color: rgba(var(--warn-rgb), 0.4); }
.pv-pill--ok  { color: var(--money); border-color: rgba(var(--money-rgb), 0.4); }
.pv-name {
  display: block;
  margin-top: 13px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.pv-sub { display: block; margin-top: 3px; font-size: 0.73rem; color: var(--ink-3); }
.pv-foot {
  margin-top: 13px;
  padding-top: 11px;
  border-top: 1px solid var(--line);
  font-size: 0.7rem;
  color: var(--ink-4);
  font-style: italic;
}

/* Line rows shared by the ticket / order / stop panels. */
.pv-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: baseline;
  padding: 8px 0;
  font-size: 0.79rem;
  color: var(--ink-2);
}
.pv-line + .pv-line { border-top: 1px solid var(--line); }
.pv-line b { color: var(--ink); font-weight: 550; }
.pv-line .pv-qty {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--ink-3);
  display: block;
  margin-top: 2px;
}
.pv-amt { font-variant-numeric: tabular-nums; color: var(--ink); font-weight: 550; }
.pv-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 1.5px 5px;
  margin-left: 6px;
  vertical-align: 1px;
}
.pv-tag--promo { background: var(--money-soft); color: var(--money); }
.pv-tag--foc   { background: var(--brand-soft); color: var(--brand-ink); }
.pv-tag--short { background: var(--risk-soft);  color: var(--risk); }

/* Total strip. */
.pv-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 12px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--money-soft);
}
.pv-total span { font-family: var(--mono); font-size: 9px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--ink-3); }
.pv-total b { font-size: 1.18rem; font-weight: 600; letter-spacing: -0.03em; color: var(--ink); font-variant-numeric: tabular-nums; }

/* ── 01 · VanSales — one tap, four books ────────────────────────────────── */
/* The claim this picture has to carry is atomicity, so the books are the
   footer of the ticket itself rather than a caption beside it. */
.tkt-books {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  margin-top: 12px;
}
.tkt-book {
  border: 1px solid rgba(var(--money-rgb), 0.3);
  background: var(--money-soft);
  border-radius: 7px;
  padding: 7px 5px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.tkt-book i {
  font-style: normal;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--money);
}
.tkt-book span {
  font-family: var(--mono);
  font-size: 7.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  line-height: 1.25;
}
.tkt-cap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 11px;
  font-size: 0.72rem;
  color: var(--ink-3);
}
.tkt-bar {
  flex: 1;
  height: 5px;
  border-radius: 3px;
  background: var(--fill-2);
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}
.tkt-bar i {
  position: absolute;
  inset: 0 auto 0 0;
  background: linear-gradient(90deg, var(--brand), var(--accent-b));
  border-radius: 3px;
}

/* ── 02 · PreSales — one financial event ────────────────────────────────── */
/* The whole point of PreSales is what does NOT happen, and a list of absences
   is impossible to draw as a positive. So the panel shows both columns: what
   the order writes, and what it deliberately doesn't. */
.ordc-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 13px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.ordc-col { background: var(--fill); padding: 11px 12px; }
.ordc-col h5 {
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
  margin: 0 0 8px;
}
.ordc-col p {
  display: flex;
  gap: 7px;
  align-items: baseline;
  font-size: 0.74rem;
  color: var(--ink-2);
  padding: 4px 0;
  line-height: 1.4;
}
.ordc-col p i {
  font-style: normal;
  font-family: var(--mono);
  font-size: 0.72rem;
  flex: none;
}
.ordc-col--yes p i { color: var(--money); }
.ordc-col--no { background: transparent; }
.ordc-col--no p { color: var(--ink-4); text-decoration: line-through; text-decoration-color: var(--ink-4); }
.ordc-col--no p i { color: var(--ink-4); text-decoration: none; }
.ordc-hand {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
  padding: 10px 12px;
  border: 1px dashed var(--line-2);
  border-radius: 9px;
  font-size: 0.74rem;
  color: var(--ink-3);
}
.ordc-hand b { color: var(--ink-2); font-weight: 550; }
.ordc-arrow { font-family: var(--mono); color: var(--brand-ink); flex: none; }

/* ── 03 · Delivery — he has to be there ─────────────────────────────────── */
.stopc-gps {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 13px;
  padding: 11px 12px;
  border: 1px solid rgba(var(--money-rgb), 0.28);
  border-radius: 10px;
  background: var(--money-soft);
}
/* 48px, not 40: "38m" in mono needed the room, and at 40px the reading sat on
   the ring's own stroke. */
.stopc-ring {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid var(--money);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--money);
  position: relative;
}
.stopc-ring::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(var(--money-rgb), 0.35);
}
.stopc-gps div { min-width: 0; }
.stopc-gps strong { display: block; font-size: 0.8rem; font-weight: 550; color: var(--ink); }
.stopc-gps span { display: block; font-size: 0.7rem; color: var(--ink-3); margin-top: 2px; }
.stopc-adj {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--ink-3);
  margin-top: 2px;
}
.stopc-adj s { color: var(--ink-4); }
.stopc-adj b { color: var(--risk); font-weight: 500; }

/* ── 04 · Merchandiser — a gap priced in money ──────────────────────────── */
.audc-score {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 13px;
}
.audc-ring {
  flex: none;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  /* Two stops, not a smooth sweep: the score is a number the engine computed,
     and a gradient would imply a precision it doesn't claim. */
  background: conic-gradient(var(--warn) 0 68%, var(--fill-2) 68% 100%);
  position: relative;
}
.audc-ring::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: var(--console-b);
}
.audc-ring b {
  position: relative;
  z-index: 1;
  font-family: var(--mono);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.audc-score div { min-width: 0; }
.audc-score strong { display: block; font-size: 0.88rem; font-weight: 550; color: var(--ink); }
.audc-score p { font-size: 0.74rem; color: var(--ink-3); margin-top: 4px; line-height: 1.5; }
.audc-find {
  display: grid;
  grid-template-columns: 3px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 9px 0;
  font-size: 0.76rem;
}
.audc-find + .audc-find { border-top: 1px solid var(--line); }
.audc-find i { display: block; height: 24px; border-radius: 2px; background: var(--risk); }
.audc-find--warn i { background: var(--warn); }
.audc-find span { color: var(--ink-2); min-width: 0; }
.audc-find span em { font-style: normal; display: block; font-size: 0.68rem; color: var(--ink-4); margin-top: 2px; }
.audc-find b { font-variant-numeric: tabular-nums; color: var(--risk); font-weight: 550; font-size: 0.78rem; }
.audc-fix {
  margin-top: 12px;
  text-align: center;
  border: 1px solid var(--brand-line);
  background: var(--brand-soft);
  color: var(--brand-ink);
  border-radius: 9px;
  padding: 9px;
  font-size: 0.78rem;
  font-weight: 550;
}

/* ── 05 · The camera — barcode, product, shelf ──────────────────────────── */
.camv-view {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background:
    repeating-linear-gradient(90deg, var(--shelf-a) 0 9px, var(--shelf-b) 9px 13px);
  height: 132px;
  margin-top: 13px;
}
/* The reticle is the whole point of a viewfinder — corners only, like every
   scanner UI, so it reads as "camera" without a photograph. */
.camv-ret {
  position: absolute;
  inset: 24px 26px;
  border-radius: 6px;
  box-shadow:
    inset 0 0 0 1px rgba(var(--brand-rgb), 0.28),
    0 0 0 400px rgba(6, 9, 15, 0.55);
}
/* Four corner marks, not two: a scanner reticle with only opposite corners
   reads as a broken box. ::before/::after on the reticle give two, and the
   inner <i> gives the other two. */
.camv-ret::before, .camv-ret::after,
.camv-ret i::before, .camv-ret i::after {
  content: "";
  position: absolute;
  width: 18px; height: 18px;
  border: 2px solid var(--brand);
  border-radius: 3px;
}
.camv-ret i { position: absolute; inset: 0; }
.camv-ret::before    { top: -1px;    left: -1px;  border-right: 0; border-bottom: 0; }
.camv-ret::after     { bottom: -1px; right: -1px; border-left: 0;  border-top: 0; }
.camv-ret i::before  { top: -1px;    right: -1px; border-left: 0;  border-bottom: 0; }
.camv-ret i::after   { bottom: -1px; left: -1px;  border-right: 0; border-top: 0; }
.camv-scan {
  position: absolute;
  left: 26px; right: 26px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  animation: camscan 2.8s var(--ease) infinite;
}
@keyframes camscan {
  0%, 100% { transform: translateY(30px); opacity: 0.25; }
  50%      { transform: translateY(100px); opacity: 1; }
}
.camv-hit {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 11px;
  align-items: center;
  margin-top: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(var(--money-rgb), 0.3);
  border-radius: 10px;
  background: var(--money-soft);
}
.camv-hit i {
  font-style: normal;
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--money);
}
.camv-hit strong { display: block; font-size: 0.8rem; font-weight: 550; color: var(--ink); }
.camv-hit span { display: block; font-size: 0.69rem; color: var(--ink-3); margin-top: 2px; }
.camv-hit b { font-family: var(--mono); font-size: 0.72rem; color: var(--money); }
.camv-modes { display: flex; gap: 5px; margin-top: 10px; }
.camv-modes span {
  flex: 1;
  text-align: center;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 5px 3px;
}
.camv-modes span.on { color: var(--brand-ink); border-color: var(--brand-line); background: var(--brand-soft); }

/* ── 06 · Voice, in two languages ───────────────────────────────────────── */
.vcb-turn { margin-top: 13px; }
.vcb-said {
  font-size: 0.92rem;
  color: var(--ink);
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: 1.45;
}
.vcb-said--ar {
  direction: rtl;
  text-align: right;
  font-style: normal;
  font-size: 1.02rem;
}
.vcb-heard {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 8px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--fill-2);
  font-size: 0.76rem;
  color: var(--ink-2);
}
.vcb-heard i {
  flex: none;
  font-style: normal;
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.vcb-heard b { color: var(--ink); font-weight: 600; }
.vcb-heard--ok { background: var(--money-soft); border-color: rgba(var(--money-rgb), 0.28); }
.vcb-wave {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 26px;
  margin-top: 12px;
}
.vcb-wave i {
  flex: 1;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--brand), rgba(var(--brand-rgb), 0.25));
}
/* Bar heights live here rather than on the markup: the CSP blocks style="",
   and nth-child keeps the HTML free of a dozen single-purpose classes. */
.vcb-wave i:nth-child(1)  { height: 26%; }
.vcb-wave i:nth-child(2)  { height: 54%; }
.vcb-wave i:nth-child(3)  { height: 88%; }
.vcb-wave i:nth-child(4)  { height: 62%; }
.vcb-wave i:nth-child(5)  { height: 100%; }
.vcb-wave i:nth-child(6)  { height: 44%; }
.vcb-wave i:nth-child(7)  { height: 72%; }
.vcb-wave i:nth-child(8)  { height: 34%; }
.vcb-wave i:nth-child(9)  { height: 90%; }
.vcb-wave i:nth-child(10) { height: 50%; }
.vcb-wave i:nth-child(11) { height: 68%; }
.vcb-wave i:nth-child(12) { height: 30%; }

/* ══════════════════════════════════════════════════════════════════════════
   THE CUSTOMER PORTAL PANELS
   A pinned light palette — see the header note. These are lifted from the
   portal's own design system (violet #6D3BF5 → pink → amber → teal on a lilac
   canvas, violet-tinted shadows, never black).
   ══════════════════════════════════════════════════════════════════════════ */
.cpp {
  --cp-canvas: #F7F5FF;
  --cp-card:   #FFFFFF;
  --cp-ink:    #1B1235;
  --cp-ink-2:  #6B5F8A;
  --cp-ink-3:  #9C92B5;
  --cp-line:   rgba(109, 59, 245, 0.13);
  --cp-violet: #6D3BF5;
  --cp-pink:   #F5478C;
  --cp-amber:  #FF9E45;
  --cp-teal:   #17C6A3;
  --cp-soft:   rgba(109, 59, 245, 0.08);

  background: var(--cp-canvas);
  border: 1px solid var(--cp-line);
  border-radius: 16px;
  padding: 16px;
  color: var(--cp-ink);
  box-shadow: 0 30px 70px -26px rgba(45, 18, 110, 0.55);
}
.cpp-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.cpp-brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}
.cpp-brand i {
  width: 20px; height: 20px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--cp-violet), var(--cp-pink));
  flex: none;
}
.cpp-chip {
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 20px;
  padding: 3px 9px;
  background: var(--cp-soft);
  color: var(--cp-violet);
  white-space: nowrap;
}
.cpp-chip--teal  { background: rgba(23, 198, 163, 0.14);  color: #0E8E75; }
.cpp-chip--amber { background: rgba(255, 158, 69, 0.16);  color: #B96606; }
.cpp-chip--pink  { background: rgba(245, 71, 140, 0.13);  color: #C42768; }

/* The deadline — the portal's signature tile. */
.cpp-dead {
  margin-top: 13px;
  padding: 13px 14px;
  border-radius: 13px;
  background: linear-gradient(120deg, var(--cp-violet), var(--cp-pink) 78%, var(--cp-amber));
  color: #fff;
}
.cpp-dead span {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
}
.cpp-dead b {
  display: block;
  margin-top: 5px;
  font-size: 1.32rem;
  font-weight: 650;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.cpp-dead em { display: block; font-style: normal; font-size: 0.74rem; opacity: 0.9; margin-top: 3px; }

/* Product tiles. */
.cpp-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 11px; }
.cpp-tile {
  background: var(--cp-card);
  border: 1px solid var(--cp-line);
  border-radius: 11px;
  padding: 10px 11px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  box-shadow: 0 6px 16px -10px rgba(45, 18, 110, 0.45);
}
.cpp-tile strong { font-size: 0.78rem; font-weight: 600; letter-spacing: -0.015em; line-height: 1.25; }
/* A class, NOT a bare `.cpp-tile span`: the tile's chip and its Add button are
   spans too, and an element selector out-specifies their own single-class
   rules — which painted "Add 24" in body ink on a violet button. */
.cpp-tile .cpp-note { font-size: 0.68rem; color: var(--cp-ink-2); }
.cpp-tile .cpp-price {
  font-family: var(--mono);
  font-size: 0.86rem;
  color: var(--cp-ink);
  font-weight: 500;
  margin-top: 2px;
}
.cpp-tile .cpp-was { text-decoration: line-through; color: var(--cp-ink-3); font-size: 0.7rem; margin-left: 5px; }
.cpp-add {
  margin-top: 7px;
  text-align: center;
  border-radius: 8px;
  padding: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  background: linear-gradient(120deg, var(--cp-violet), #8557FF);
  color: #fff;
}
.cpp-add--ghost { background: transparent; border: 1px solid var(--cp-line); color: var(--cp-violet); }

/* Order lines used by Autopilot + Grow. */
.cpp-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 9px 0;
  font-size: 0.77rem;
}
.cpp-row + .cpp-row { border-top: 1px solid var(--cp-line); }
.cpp-row strong { font-weight: 600; letter-spacing: -0.015em; }
.cpp-row em { font-style: normal; display: block; font-size: 0.67rem; color: var(--cp-ink-2); margin-top: 2px; }
.cpp-row b { font-family: var(--mono); font-size: 0.76rem; font-weight: 500; white-space: nowrap; }
.cpp-card {
  margin-top: 11px;
  background: var(--cp-card);
  border: 1px solid var(--cp-line);
  border-radius: 13px;
  padding: 12px 13px;
  box-shadow: 0 10px 24px -16px rgba(45, 18, 110, 0.5);
}
.cpp-card h5 {
  font-size: 0.84rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  margin: 0 0 3px;
}
.cpp-card p { font-size: 0.7rem; color: var(--cp-ink-2); line-height: 1.5; }
.cpp-cta {
  margin-top: 11px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7px;
}
.cpp-btn {
  text-align: center;
  border-radius: 9px;
  padding: 9px;
  font-size: 0.78rem;
  font-weight: 600;
  background: linear-gradient(120deg, var(--cp-violet), #8557FF);
  color: #fff;
}
.cpp-btn--ghost { background: transparent; border: 1px solid var(--cp-line); color: var(--cp-ink-2); }
.cpp-foot {
  margin-top: 11px;
  font-size: 0.67rem;
  color: var(--cp-ink-3);
  line-height: 1.5;
}
/* Guardrail chips — the five rules Autopilot enforces server-side. */
.cpp-rails { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 10px; }
.cpp-rails span {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: 1px solid var(--cp-line);
  border-radius: 20px;
  padding: 3px 7px;
  color: var(--cp-ink-2);
}
/* Grow's finding kinds. */
.cpp-kind {
  font-family: var(--mono);
  font-size: 7.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 2px 5px;
  margin-right: 6px;
  vertical-align: 1px;
}
.cpp-kind--new  { background: rgba(23, 198, 163, 0.16); color: #0E8E75; }
.cpp-kind--under{ background: rgba(255, 158, 69, 0.18); color: #B96606; }
.cpp-kind--laps { background: rgba(245, 71, 140, 0.14); color: #C42768; }
/* The peer bar: you vs shops like yours.
   Label in a FIXED column and the fill sized inside a 1fr track — not label
   trailing a flex-none bar, which let the 82% bar squeeze "Shops like yours"
   onto two lines and knocked the pair out of alignment. Widths stay utility
   classes because the CSP blocks style="". */
.cpp-bars { margin-top: 10px; display: flex; flex-direction: column; gap: 6px; }
.cpp-bar {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  font-size: 0.66rem;
  color: var(--cp-ink-2);
}
.cpp-bar em { font-style: normal; }
.cpp-bar i {
  height: 7px;
  border-radius: 4px;
  background: var(--cp-ink-3);
}
.cpp-bar--you em { color: var(--cp-ink); font-weight: 600; }
.cpp-bar--you i { background: var(--cp-violet); }
.cpp-w28 { width: 28%; }
.cpp-w82 { width: 82%; }

/* ── Live delivery tracking ─────────────────────────────────────────────── */
.cpp-track {
  margin-top: 11px;
  border-radius: 13px;
  border: 1px solid var(--cp-line);
  background: var(--cp-card);
  padding: 12px 13px;
}
.cpp-stops { display: flex; align-items: center; gap: 0; margin-top: 10px; }
.cpp-stop {
  flex: 1;
  height: 3px;
  background: var(--cp-line);
  position: relative;
}
.cpp-stop::after {
  content: "";
  position: absolute;
  right: -4px; top: -2.5px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cp-line);
}
.cpp-stop--done { background: var(--cp-teal); }
.cpp-stop--done::after { background: var(--cp-teal); }
.cpp-stop--now::after {
  background: var(--cp-violet);
  box-shadow: 0 0 0 4px rgba(109, 59, 245, 0.18);
  width: 11px; height: 11px;
  right: -5.5px; top: -4px;
}
.cpp-trackfoot {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 11px;
  font-size: 0.7rem;
  color: var(--cp-ink-2);
}
.cpp-trackfoot b { color: var(--cp-ink); font-family: var(--mono); font-weight: 500; }

/* ══════════════════════════════════════════════════════════════════════════
   PRODUCTS PAGE — the line-up grid and section furniture
   ══════════════════════════════════════════════════════════════════════════ */
.lineup {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 34px;
}
.lu {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 18px 17px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 2px solid var(--brand-line);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease),
              transform 0.2s var(--ease);
}
.lu:hover {
  background: var(--surface-2);
  border-color: var(--line-2);
  border-top-color: var(--brand);
  transform: translateY(-2px);
}
.lu-n { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.16em; color: var(--ink-4); }
.lu h3 { font-size: 1rem; letter-spacing: -0.022em; }
.lu p { font-size: 0.8rem; color: var(--ink-2); line-height: 1.5; flex: 1; }
.lu-m {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-top: 10px;
  border-top: 1px solid var(--line);
}
.lu--new { border-top-color: var(--money); }
.lu--new .lu-m { color: var(--money); }

/* Who it's for / what it runs on — the spec strip under each product's copy. */
.pmeta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.pmeta span {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  border: 1px solid var(--line-2);
  border-radius: 20px;
  padding: 4px 10px;
}
.pmeta span b { color: var(--ink-2); font-weight: 500; }

/* A "new product" badge, sized to sit inside an .eyebrow line. */
.pnew {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 9.5px;
  letter-spacing: 0.14em;
  border: 1px solid rgba(var(--money-rgb), 0.4);
  background: var(--money-soft);
  color: var(--money);
  border-radius: 20px;
  padding: 2px 9px;
}
.pnew::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--money);
  box-shadow: 0 0 0 0 rgba(var(--money-rgb), 0.55);
  animation: pulse 2.4s infinite;
}

/* A products-page section: the .six hero, then the flow, then the caps. */
.prod-flow { margin-top: clamp(34px, 4vw, 52px); }
.prod-sec .six { padding-top: 0; }

/* ── Inline-style replacements (CSP: style-src 'self', no unsafe-inline) ─── */
/* Illustrative fill levels. These are fixed ratios in a mockup, not data, so
   they belong in the stylesheet rather than in a style="" attribute. */
.tkt-fill { width: 62%; }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1060px) {
  .lineup { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .ordc-split { grid-template-columns: 1fr; }
  .tkt-books { grid-template-columns: repeat(2, 1fr); }
  .cpp-tiles { grid-template-columns: 1fr; }
}
@media (max-width: 460px) {
  .lineup { grid-template-columns: 1fr; }
}
