/* ===========================================================================
   Al Ain Bike Co - operational demo.  Design system + components.
   Palette: warm asphalt graphite, hi-vis safety orange, semantic status hues.
   Type: Saira (display/numbers) / IBM Plex Sans (UI) / IBM Plex Mono (data).
   =========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Saira:wght@400;500;600;700&family=IBM+Plex+Sans:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root{
  /* Implemnt brand palette (dark + pink/cream), tuned for dashboard density */
  --bg:#0a0a0a;
  --bg-2:#070707;            /* deep well behind columns */
  --surface:#111111;         /* cards */
  --surface-2:#1a1a1a;       /* elevated / hover */
  --surface-3:#232427;       /* inputs, chips */
  --line:rgba(255,255,255,0.07);
  --line-2:rgba(255,255,255,0.13);
  --text:#f0f0f0;
  --muted:#c6cad0;
  --dim:#80858f;

  --hv:#f4c9d6;              /* Implemnt pink, the brand accent */
  --hv-ink:#0a0a0a;
  --hv-soft:rgba(244,201,214,0.13);
  --cream:#fffbd4;           /* secondary accent, proof/value */

  --go:#4ade80;             /* ready / done */
  --work:#5b9bff;           /* in progress */
  --wait:#ffc24b;           /* waiting / diagnosis */
  --late:#ff6b6b;           /* overdue / high priority */
  --wa:#25D366;             /* whatsapp green */

  --go-soft:rgba(74,222,128,0.12);
  --work-soft:rgba(91,155,255,0.12);
  --wait-soft:rgba(255,194,75,0.12);
  --late-soft:rgba(255,107,107,0.12);

  --r-sm:8px; --r:12px; --r-lg:16px;
  --sh:0 1px 3px rgba(0,0,0,.4);
  --sh-lift:0 12px 30px rgba(0,0,0,.5);
  --sans:'IBM Plex Sans',system-ui,sans-serif;
  --disp:'Saira',var(--sans);
  --mono:'IBM Plex Mono',ui-monospace,monospace;
  --ease:cubic-bezier(.2,.7,.2,1);
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{-webkit-text-size-adjust:100%}
body{
  font-family:var(--sans); background:var(--bg); color:var(--text);
  line-height:1.5; -webkit-font-smoothing:antialiased;
  min-height:100vh; overflow-x:hidden;
}
body::before{ /* faint asphalt grain, kept subtle */
  content:'';position:fixed;inset:0;pointer-events:none;z-index:0;opacity:.5;
  background:
    radial-gradient(1200px 600px at 78% -10%, rgba(244,201,214,.06), transparent 60%),
    radial-gradient(900px 500px at 8% 0%, rgba(76,154,255,.05), transparent 55%);
}
button{font-family:inherit;cursor:pointer;border:none;background:none;color:inherit}
input,select,textarea{font-family:inherit}
:focus-visible{outline:2px solid var(--hv);outline-offset:2px;border-radius:6px}
::selection{background:var(--hv);color:var(--hv-ink)}
::-webkit-scrollbar{height:10px;width:10px}
::-webkit-scrollbar-thumb{background:var(--surface-3);border-radius:20px;border:2px solid var(--bg)}
::-webkit-scrollbar-track{background:transparent}

.mono{font-family:var(--mono)}
.wrap{position:relative;z-index:1;max-width:1560px;margin:0 auto;padding:0 22px 60px}

/* ---- top bar --------------------------------------------------------------*/
.topbar{
  position:sticky;top:0;z-index:40;background:rgba(10,10,10,.85);
  backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
.topbar-in{max-width:1560px;margin:0 auto;padding:12px 22px;display:flex;align-items:center;gap:18px}
.brand{display:flex;align-items:center;gap:11px;text-decoration:none;color:var(--text)}
.brand .cog{
  width:38px;height:38px;border-radius:11px;display:grid;place-items:center;flex:0 0 auto;
  background:linear-gradient(150deg,var(--hv),#e8a8ba);color:var(--hv-ink);box-shadow:0 4px 14px rgba(244,201,214,.3)}
.brand .cog svg{width:22px;height:22px}
.brand b{font-family:var(--disp);font-weight:700;font-size:19px;letter-spacing:.2px;line-height:1}
.brand span{display:block;font-family:var(--mono);font-size:10.5px;color:var(--dim);letter-spacing:.14em;text-transform:uppercase;margin-top:2px}
.tb-status{display:flex;align-items:center;gap:8px;font-size:12.5px;color:var(--muted);
  background:var(--go-soft);border:1px solid rgba(55,208,138,.25);padding:6px 12px;border-radius:100px}
.tb-status .dot{width:8px;height:8px;border-radius:50%;background:var(--go);box-shadow:0 0 0 0 rgba(55,208,138,.5);animation:pulse 2.4s infinite}
@keyframes pulse{0%{box-shadow:0 0 0 0 rgba(55,208,138,.5)}70%{box-shadow:0 0 0 7px rgba(55,208,138,0)}100%{box-shadow:0 0 0 0 rgba(55,208,138,0)}}
.tb-spacer{flex:1}
.clock{font-family:var(--mono);font-size:13px;color:var(--muted);letter-spacing:.02em;text-align:right;line-height:1.25}
.clock b{color:var(--text);font-weight:600;font-size:15px}
.crew{display:flex;align-items:center}
.crew .av{width:32px;height:32px;border-radius:50%;display:grid;place-items:center;font-family:var(--mono);
  font-size:11px;font-weight:600;color:#0c0d10;border:2px solid var(--bg);margin-left:-8px}
.crew .av:first-child{margin-left:0}
.btn{display:inline-flex;align-items:center;gap:7px;font-weight:600;font-size:13.5px;padding:9px 15px;border-radius:10px;
  transition:transform .12s var(--ease),background .18s,box-shadow .18s;white-space:nowrap;min-height:40px}
.btn svg{width:16px;height:16px}
.btn-primary{background:var(--hv);color:var(--hv-ink);box-shadow:0 4px 14px rgba(244,201,214,.28)}
.btn-primary:hover{transform:translateY(-1px);box-shadow:0 8px 20px rgba(244,201,214,.4)}
.btn-primary:active{transform:translateY(0)}
.btn-ghost{background:var(--surface-2);color:var(--text);border:1px solid var(--line)}
.btn-ghost:hover{background:var(--surface-3)}

/* quiet demo chip (replaces the loud "live demo" ribbon) */
.demo-chip{font-size:11.5px;color:var(--dim);background:var(--surface-2);border:1px solid var(--line);border-radius:100px;padding:5px 12px;white-space:nowrap}
.demo-chip a{color:var(--muted);text-decoration:none;border-bottom:1px solid var(--line-2)}
.demo-chip a:hover{color:var(--hv);border-color:var(--hv)}

/* ---- kpi strip ------------------------------------------------------------*/
.kpis{display:grid;grid-template-columns:repeat(5,1fr);gap:14px;margin:22px 0}
.kpi{background:var(--surface);border:1px solid var(--line);border-radius:var(--r);padding:16px 18px;position:relative;overflow:hidden}
.kpi::after{content:'';position:absolute;left:0;top:0;bottom:0;width:3px;background:var(--accent,var(--hv));opacity:.85}
.kpi .k-label{font-size:12.5px;font-weight:500;color:var(--muted)}
.kpi .k-val{font-family:var(--disp);font-weight:600;font-size:34px;line-height:1.05;margin-top:8px;letter-spacing:-.5px}
.kpi .k-val span{display:inline-block}
@keyframes bump{0%{transform:scale(1)}28%{transform:scale(1.14);color:var(--hv)}100%{transform:scale(1)}}
.kpi .k-val span.bump{animation:bump .5s var(--ease)}
.kpi .k-val small{font-size:15px;color:var(--muted);font-weight:500;margin-left:2px}
.kpi .k-sub{font-size:12px;color:var(--muted);margin-top:3px;display:flex;align-items:center;gap:5px}
.trend{font-family:var(--mono);font-size:11px;font-weight:600;padding:1px 6px;border-radius:5px}
.trend.up{color:var(--go);background:var(--go-soft)}
.trend.flat{color:var(--muted);background:var(--surface-3)}

/* ---- section headers ------------------------------------------------------*/
.sec-head{display:flex;align-items:baseline;gap:12px;margin:26px 0 14px}
.sec-head h2{font-family:var(--disp);font-weight:600;font-size:21px;letter-spacing:.2px}
.sec-head .rule{flex:1;height:1px;background:var(--line)}
.sec-head .meta{font-family:var(--mono);font-size:12px;color:var(--dim)}
.sec-head .hint-drag{font-size:11.5px;color:var(--dim)}

/* ---- kanban board ---------------------------------------------------------*/
.board{display:grid;grid-template-columns:repeat(5,minmax(232px,1fr));gap:14px;align-items:start}
.col{background:var(--bg-2);border:1px solid var(--line);border-radius:var(--r);padding:10px;min-height:120px;
  transition:background .18s,border-color .18s}
.col.drop{background:var(--hv-soft);border-color:var(--hv)}
.col-head{display:flex;align-items:center;gap:8px;padding:4px 6px 10px}
.col-head .lbl{font-family:var(--disp);font-weight:600;font-size:14px;letter-spacing:.3px}
.col-head .n{font-family:var(--mono);font-size:11px;font-weight:600;color:var(--muted);background:var(--surface-2);
  border:1px solid var(--line);border-radius:20px;min-width:22px;height:20px;display:inline-grid;place-items:center;padding:0 6px}
.col-head .hint{flex:1;text-align:right;font-size:10.5px;color:var(--dim)}
.col[data-stage="ready"] .lbl{color:var(--go)}
.col[data-stage="progress"] .lbl{color:var(--work)}
.col[data-stage="diagnosis"] .lbl{color:var(--wait)}
.col-body{display:flex;flex-direction:column;gap:10px;min-height:20px}

/* the signature: the digital repair tag */
.tag{
  --sc:var(--dim);
  position:relative;background:var(--surface);border:1px solid var(--line);border-radius:11px;
  padding:12px 13px 12px 20px;cursor:grab;transition:transform .14s var(--ease),box-shadow .18s,border-color .18s,opacity .18s;
}
.tag::before{ /* the colored spine of the repair tag */
  content:'';position:absolute;left:0;top:0;bottom:0;width:6px;border-radius:11px 0 0 11px;background:var(--sc)}
.tag::after{ /* punch hole */
  content:'';position:absolute;left:9px;top:13px;width:7px;height:7px;border-radius:50%;
  background:var(--bg);box-shadow:inset 0 0 0 1.5px var(--line-2)}
.tag:hover{transform:translateY(-2px);box-shadow:var(--sh-lift);border-color:var(--line-2)}
.tag:active{cursor:grabbing}
.tag.dragging{opacity:.5;transform:rotate(1.5deg) scale(1.02)}
.tag[data-stage="ready"]{--sc:var(--go)} .tag[data-stage="progress"]{--sc:var(--work)}
.tag[data-stage="diagnosis"]{--sc:var(--wait)} .tag[data-stage="intake"]{--sc:var(--dim)} .tag[data-stage="collected"]{--sc:var(--dim)}
.tag.prio-high::before{background:repeating-linear-gradient(-45deg,var(--late),var(--late) 3px,rgba(255,107,107,.4) 3px,rgba(255,107,107,.4) 6px)}
.tag.prio-high{border-color:rgba(255,96,96,.28)}
.tag-meta{display:flex;align-items:center;gap:7px;margin-bottom:9px}
.tag-id{font-family:var(--mono);font-size:11px;color:var(--dim);letter-spacing:.02em}
.tag-meta .sp{flex:1}
.tag-since{font-family:var(--mono);font-size:10.5px;color:var(--dim);display:inline-flex;align-items:center;gap:3px;white-space:nowrap}
.tag-cust{font-family:var(--disp);font-weight:600;font-size:16px;line-height:1.2;letter-spacing:-.1px}
.tag-bike{font-size:13px;color:var(--muted);margin-top:2px}
.tag-svc{font-size:12.5px;color:var(--muted);margin-top:9px;line-height:1.45;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.tag-foot{display:flex;align-items:center;gap:8px;margin-top:11px;padding-top:10px;border-top:1px solid var(--line)}
.tag-price{font-family:var(--mono);font-size:14px;font-weight:600;color:var(--text)}
.tag-foot .sp{flex:1}
.chip{display:inline-flex;align-items:center;gap:4px;font-size:10.5px;font-family:var(--mono);color:var(--muted);
  background:var(--surface-2);border:1px solid var(--line);border-radius:6px;padding:2px 6px}
.chip svg{width:11px;height:11px}
.mech{width:24px;height:24px;border-radius:50%;display:grid;place-items:center;font-family:var(--mono);
  font-size:10px;font-weight:600;color:#0c0d10}
.prio-flag{display:inline-flex;align-items:center;gap:4px;font-size:10.5px;font-weight:600;color:var(--late);background:var(--late-soft);
  border:1px solid rgba(255,96,96,.32);border-radius:6px;padding:2px 8px}
.prio-flag svg{width:11px;height:11px}
.col-empty{font-size:12px;color:var(--dim);text-align:center;padding:22px 8px;border:1px dashed var(--line);border-radius:9px}

/* ---- rentals --------------------------------------------------------------*/
.fleet{display:grid;grid-template-columns:repeat(auto-fill,minmax(215px,1fr));gap:12px}
.rent{background:var(--surface);border:1px solid var(--line);border-radius:var(--r);padding:14px;position:relative;transition:transform .14s var(--ease),box-shadow .18s}
.rent:hover{transform:translateY(-2px);box-shadow:var(--sh-lift)}
.rent-top{display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:9px}
.rent-id{font-family:var(--mono);font-size:11px;color:var(--dim)}
.st-pill{font-family:var(--mono);font-size:10px;font-weight:600;letter-spacing:.06em;text-transform:uppercase;padding:3px 8px;border-radius:20px}
.st-available{color:var(--go);background:var(--go-soft)}
.st-rented{color:var(--work);background:var(--work-soft)}
.st-maintenance{color:var(--wait);background:var(--wait-soft)}
.rent h3{font-family:var(--disp);font-weight:600;font-size:15.5px;line-height:1.15}
.rent .ty{font-size:11.5px;color:var(--muted);margin-top:1px}
.rent-mid{display:flex;align-items:center;justify-content:space-between;margin-top:11px;font-size:12px}
.rent-mid .who{color:var(--muted)}
.rent-mid .due{font-family:var(--mono);font-weight:600}
.due.soon{color:var(--late)} .due.ok{color:var(--muted)}
.util{margin-top:11px}
.util-bar{height:6px;background:var(--surface-3);border-radius:20px;overflow:hidden}
.util-bar i{display:block;height:100%;border-radius:20px;background:linear-gradient(90deg,var(--hv),var(--cream));transition:width 1s var(--ease)}
.util-row{display:flex;justify-content:space-between;font-family:var(--mono);font-size:10.5px;color:var(--dim);margin-top:5px}
.rent .earned{color:var(--go)}

/* ---- side panel (non-modal editor) ---------------------------------------*/
.scrim{position:fixed;inset:0;background:rgba(8,9,11,.55);opacity:0;pointer-events:none;transition:opacity .3s;z-index:50}
.scrim.open{opacity:1;pointer-events:auto}
.panel{position:fixed;top:0;right:0;bottom:0;width:min(440px,94vw);background:var(--surface);border-left:1px solid var(--line-2);
  box-shadow:-20px 0 50px rgba(0,0,0,.5);transform:translateX(100%);transition:transform .34s var(--ease);z-index:60;
  display:flex;flex-direction:column;overflow:hidden}
.panel.open{transform:translateX(0)}
.panel-head{padding:18px 20px;border-bottom:1px solid var(--line);display:flex;align-items:flex-start;gap:12px}
.panel-head .ph-id{font-family:var(--mono);font-size:12px;color:var(--hv);font-weight:600}
.panel-head h2{font-family:var(--disp);font-weight:600;font-size:20px;margin-top:2px}
.panel-head .ph-sub{font-size:13px;color:var(--muted);margin-top:2px}
.x{width:34px;height:34px;border-radius:9px;background:var(--surface-2);display:grid;place-items:center;flex:0 0 auto}
.x:hover{background:var(--surface-3)} .x svg{width:16px;height:16px}
.panel-body{flex:1;overflow-y:auto;padding:18px 20px;display:flex;flex-direction:column;gap:18px}
.pgrid{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.field label{display:block;font-family:var(--mono);font-size:10px;letter-spacing:.12em;text-transform:uppercase;color:var(--dim);margin-bottom:5px}
.field .v{font-size:14px;font-weight:500}
.field.full{grid-column:1/-1}
.input,select.input,textarea.input{width:100%;background:var(--surface-3);border:1px solid var(--line);border-radius:9px;
  padding:10px 12px;font-size:14px;color:var(--text);min-height:42px;transition:border-color .16s}
.input:focus{outline:none;border-color:var(--hv)}
textarea.input{min-height:74px;resize:vertical;line-height:1.5}
.p-block{border:1px solid var(--line);border-radius:var(--r);padding:14px}
.p-block h4{font-family:var(--mono);font-size:10.5px;letter-spacing:.12em;text-transform:uppercase;color:var(--dim);margin-bottom:10px}
.parts li{display:flex;align-items:center;gap:8px;font-size:13px;padding:4px 0;color:var(--muted)}
.parts li svg{width:13px;height:13px;color:var(--hv)}
.photos{display:flex;gap:8px;flex-wrap:wrap}
.ph-thumb{width:66px;height:66px;border-radius:9px;background:linear-gradient(135deg,var(--surface-3),var(--surface-2));
  display:grid;place-items:center;color:var(--dim);border:1px solid var(--line)}
.ph-thumb svg{width:20px;height:20px}
.wa-log{display:flex;flex-direction:column;gap:8px}
.wa-msg{background:var(--go-soft);border:1px solid rgba(55,208,138,.22);border-radius:10px 10px 10px 3px;padding:9px 11px;font-size:12.5px;color:var(--text);line-height:1.45}
.wa-msg .wa-meta{font-family:var(--mono);font-size:10px;color:var(--dim);margin-top:5px;display:flex;align-items:center;gap:5px}
.wa-msg .wa-meta svg{width:12px;height:12px;color:var(--wa)}
.stage-actions{display:flex;flex-direction:column;gap:8px}
.stage-actions .row{display:flex;gap:8px}
.stage-actions .row .btn{flex:1;justify-content:center}
.panel-foot{padding:14px 20px;border-top:1px solid var(--line);display:flex;gap:10px;background:var(--bg-2)}
.panel-foot .btn{flex:1;justify-content:center}

/* ---- whatsapp phone overlay (hero moment) --------------------------------*/
.phone-pop{position:fixed;right:26px;bottom:26px;width:270px;z-index:70;transform:translateY(30px) scale(.96);opacity:0;pointer-events:none;
  transition:transform .4s var(--ease),opacity .3s}
.phone-pop.show{transform:translateY(0) scale(1);opacity:1}
.phone{background:#0b141a;border:6px solid #05080a;border-radius:26px;box-shadow:0 24px 60px rgba(0,0,0,.6);overflow:hidden}
.phone-bar{background:#1f2c33;padding:11px 14px;display:flex;align-items:center;gap:9px}
.phone-bar .pa{width:30px;height:30px;border-radius:50%;background:var(--hv);display:grid;place-items:center;color:var(--hv-ink);font-family:var(--mono);font-size:11px;font-weight:600}
.phone-bar b{font-size:12.5px;color:#e9edef} .phone-bar span{font-size:10px;color:#8aa0ab;display:block}
.phone-body{padding:14px 12px;min-height:120px;background:#0b141a;
  background-image:radial-gradient(rgba(255,255,255,.03) 1px,transparent 1px);background-size:16px 16px}
.bubble{background:#005c4b;color:#e9edef;border-radius:9px 9px 3px 9px;padding:8px 10px;font-size:12px;line-height:1.45;margin-left:auto;max-width:92%;
  box-shadow:0 1px 2px rgba(0,0,0,.3);animation:bubbleIn .35s var(--ease) both}
.bubble .t{font-family:var(--mono);font-size:9px;color:#8fc9b9;text-align:right;margin-top:4px;display:flex;gap:3px;justify-content:flex-end;align-items:center}
.bubble .t svg{width:13px;height:13px}
@keyframes bubbleIn{from{opacity:0;transform:translateY(8px) scale(.96)}to{opacity:1;transform:none}}

/* ---- toasts ---------------------------------------------------------------*/
.toasts{position:fixed;left:22px;bottom:22px;z-index:80;display:flex;flex-direction:column;gap:10px;max-width:340px}
.toast{background:var(--surface-2);border:1px solid var(--line-2);border-left:3px solid var(--accent,var(--hv));border-radius:11px;
  padding:12px 14px;box-shadow:var(--sh-lift);display:flex;gap:11px;align-items:flex-start;
  animation:toastIn .34s var(--ease) both}
.toast.out{animation:toastOut .3s var(--ease) forwards}
.toast .ti{width:30px;height:30px;border-radius:8px;display:grid;place-items:center;flex:0 0 auto;background:var(--accent-soft,var(--hv-soft));color:var(--accent,var(--hv))}
.toast .ti svg{width:16px;height:16px}
.toast b{font-size:13.5px;font-weight:600;display:block}
.toast p{font-size:12.5px;color:var(--muted);margin-top:1px}
@keyframes toastIn{from{opacity:0;transform:translateX(-16px)}to{opacity:1;transform:none}}
@keyframes toastOut{to{opacity:0;transform:translateX(-16px)}}

/* ---- responsive -----------------------------------------------------------*/
@media(max-width:1180px){
  .kpis{grid-template-columns:repeat(3,1fr)}
  .kpi:nth-child(4),.kpi:nth-child(5){grid-column:span 1}
  .board{grid-auto-flow:column;grid-auto-columns:minmax(228px,1fr);grid-template-columns:none;overflow-x:auto;
    padding-bottom:10px;scroll-snap-type:x proximity}
  .col{scroll-snap-align:start}
}
@media(max-width:720px){
  .wrap{padding:0 14px 50px}
  .topbar-in{padding:10px 14px;gap:10px;flex-wrap:wrap}
  .clock,.demo-chip,.sec-head .hint-drag{display:none}
  .kpis{grid-template-columns:repeat(2,1fr);gap:10px}
  .kpi .k-val{font-size:28px}
  .board{grid-auto-columns:82%}
  .fleet{grid-template-columns:1fr 1fr}
  .phone-pop{right:14px;bottom:14px;width:230px}
  .toasts{left:14px;right:14px;bottom:14px;max-width:none}
}
@media(max-width:460px){ .kpis{grid-template-columns:1fr 1fr} .fleet{grid-template-columns:1fr} }

@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.001ms!important;transition-duration:.001ms!important}
}

/* ---- AI report --------------------------------------------------------------*/
.ai-btn{background:transparent;color:var(--hv);border:1px solid rgba(244,201,214,.35)}
.ai-btn:hover{background:var(--hv-soft)}
.ai-btn svg{width:15px;height:15px}
.rep-gen{display:flex;flex-direction:column;align-items:center;gap:15px;padding:56px 20px;text-align:center;color:var(--muted)}
.rep-gen .spark{width:46px;height:46px;border-radius:13px;background:var(--hv-soft);color:var(--hv);display:grid;place-items:center}
.rep-gen .spark svg{width:23px;height:23px}
.rep-gen p{font-size:13.5px}
.rep-gen .dots{display:flex;gap:5px}
.rep-gen .dots i{width:7px;height:7px;border-radius:50%;background:var(--hv);animation:blink 1.2s infinite}
.rep-gen .dots i:nth-child(2){animation-delay:.2s}.rep-gen .dots i:nth-child(3){animation-delay:.4s}
@keyframes blink{0%,100%{opacity:.25}40%{opacity:1}}
.rep-period{display:flex;gap:6px;margin-bottom:2px}
.rep-period button{flex:1;font-size:12.5px;font-weight:600;padding:8px;border-radius:9px;background:var(--surface-3);color:var(--muted);border:1px solid var(--line)}
.rep-period button.on{background:var(--hv);color:var(--hv-ink);border-color:var(--hv)}
.rep-summary{font-size:14.5px;line-height:1.62;color:var(--text)}
.rep-summary b{color:var(--hv);font-weight:600}
.rep-stats{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.rep-stat{background:var(--surface-2);border:1px solid var(--line);border-radius:10px;padding:11px 13px}
.rep-stat .l{font-size:11px;color:var(--dim)}
.rep-stat .v{font-family:var(--disp);font-size:20px;font-weight:600;margin-top:3px;line-height:1.1}
.rep-stat .d{font-family:var(--mono);font-size:11px;font-weight:600;margin-top:3px}
.rep-stat .d.up{color:var(--go)}.rep-stat .d.down{color:var(--late)}.rep-stat .d.flat{color:var(--dim)}
.rep-list{list-style:none;display:flex;flex-direction:column;gap:11px;margin:0;padding:0}
.rep-list li{display:flex;gap:9px;font-size:13px;line-height:1.5;color:var(--muted)}
.rep-list li svg{width:15px;height:15px;flex:0 0 auto;margin-top:2px;color:var(--hv)}
.rep-list li b{color:var(--text);font-weight:600}
.rep-by{font-size:11px;color:var(--dim);text-align:center;margin-top:4px;font-family:var(--mono)}
