/* Round & Recall — pack styles.
   Only what the engine primitives do not already cover. Everything uses the
   engine tokens, so light, dark and the olive accent all follow along.
*/

/* --------------------------------------------------------------- bits -- */

.ph { display: flex; align-items: flex-end; gap: 12px; }
.ph__t { font-size: 15px; }
.ph__s { font-size: 12.5px; color: var(--ink-mute); margin-top: 2px; }
.ph__a { margin-left: auto; display: flex; gap: 6px; }

.input--slim { height: 32px; font-size: 13px; padding: 0 26px 0 9px; width: auto; min-width: 132px; }

.linkbtn {
  border: 0; background: none; padding: 0;
  font: inherit; font-weight: 600;
  color: var(--accent-ink);
  text-decoration: underline; text-underline-offset: 2px;
  cursor: pointer; text-align: left;
}
.linkbtn:hover { text-decoration-thickness: 2px; }

.crewchip { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; color: var(--ink-2); font-weight: 500; min-width: 0; }
.crewchip .avatar { font-weight: 700; }
.crewchip span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.crewchip--none { color: var(--ink-mute); }

.planpill {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11.5px; font-weight: 600; color: var(--accent-ink);
  background: var(--accent-soft); border-radius: 999px; padding: 2px 9px 2px 7px;
  max-width: 100%;
}
.planpill span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.detail { display: flex; flex-direction: column; gap: 18px; }
/* An empty state in a drawer is a note, not a whole screen. */
.detail .empty { padding: 20px 12px; gap: 5px; }
.detail .empty__ic { width: 34px; height: 34px; }
.detail .empty__ic .ic { width: 18px; height: 18px; }
.detail__top { display: flex; align-items: flex-start; gap: 12px; }
.detail__v { font-size: 26px; font-weight: 600; letter-spacing: -0.03em; line-height: 1.15; }
.detail__vs { font-size: 12px; color: var(--ink-mute); margin-top: 3px; }
.detail__top .badge { margin-left: auto; flex: 0 0 auto; }
.detail__bar { display: flex; flex-wrap: wrap; gap: 6px; }
.detail__sec { display: flex; flex-direction: column; }
.detail__sec .sec-head { margin-bottom: 8px; }

.kvs { display: flex; flex-direction: column; }
.kvs .kv { border-bottom: 1px solid var(--line-2); padding: 7px 0; }
.kvs .kv:last-child { border-bottom: 0; }

/* --------------------------------------------------------------- today - */

.todo { display: flex; flex-direction: column; }
.todo__i {
  display: flex; align-items: center; gap: 11px;
  width: 100%; padding: 10px 16px;
  border: 0; border-bottom: 1px solid var(--line-2);
  background: none; cursor: pointer; text-align: left; font: inherit;
}
.todo li:last-child .todo__i { border-bottom: 0; }
.todo__i:hover { background: var(--surface-2); }
.todo__ic {
  width: 26px; height: 26px; border-radius: 8px; flex: 0 0 auto;
  display: grid; place-items: center;
  background: var(--surface-2); color: var(--ink-2);
}
.todo__ic--bad { background: var(--bad-soft); color: var(--bad); }
.todo__ic--warn { background: var(--warn-soft); color: var(--warn); }
.todo__ic--accent { background: var(--accent-soft); color: var(--accent-ink); }
.todo__ic--info { background: var(--info-soft); color: var(--info); }
.todo__t { flex: 1; min-width: 0; }
.todo__tt { display: block; font-size: 13px; font-weight: 600; color: var(--ink); }
.todo__ts { display: block; font-size: 11.5px; color: var(--ink-mute); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.todo__go { color: var(--ink-mute); flex: 0 0 auto; }

.crewtabs { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 2px; scrollbar-width: thin; }
.crewtab {
  flex: 1 1 0; min-width: 152px;
  display: flex; flex-direction: column; gap: 3px; align-items: flex-start;
  padding: 9px 12px 10px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); cursor: pointer; font: inherit; text-align: left;
  border: 1px solid var(--c-c, var(--accent));
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.crewtab:hover { box-shadow: var(--shadow-1); }
.crewtab.is-on { border-color: var(--accent); border-left-color: var(--c-c, var(--accent)); box-shadow: 0 0 0 1px var(--accent) inset; }
.crewtab__n { font-size: 13px; font-weight: 700; color: var(--ink); }
.crewtab__m { font: 500 11.5px var(--mono); color: var(--ink-mute); }

/* ---------------------------------------------------------- route board */

.rt {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.rt__head {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px 12px;
  border-bottom: 1px solid var(--line-2);
}
.rt__t { font-size: 15px; }
.rt__s { font-size: 12px; color: var(--ink-mute); margin-top: 3px; }
.rt__ha { margin-left: auto; flex: 0 0 auto; }

.rt__sum {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  padding: 11px 16px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line-2);
}
.rt__fig { display: flex; align-items: center; gap: 8px; }
.rt__figi {
  width: 26px; height: 26px; border-radius: 7px; flex: 0 0 auto;
  display: grid; place-items: center;
  background: var(--surface); color: var(--accent-ink); border: 1px solid var(--line);
}
.rt__figt { display: flex; flex-direction: column; }
.rt__figl { font-size: 10px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--ink-mute); }
.rt__figv { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.rt__opt { margin-left: auto; }
.rt__optok { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--ok); }

.rt__list { display: flex; flex-direction: column; position: relative; }

.rt__grp {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 16px 8px 14px;
  background: color-mix(in srgb, var(--accent) 5%, var(--surface));
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}
.rt__grp:first-child { border-top: 0; }
.rt__grpd {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); flex: 0 0 auto;
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.rt__grpn { font: 700 12.5px var(--display); letter-spacing: -0.01em; color: var(--ink); }
.rt__grpc { font-size: 11.5px; color: var(--ink-mute); }
.rt__grpk { margin-left: auto; font-size: 11px; color: var(--ink-mute); }
.rt__grp--end { background: var(--surface-2); }
.rt__grp--end .rt__grpd { background: var(--ink-mute); box-shadow: 0 0 0 3px var(--surface-3); }

.rt__stop {
  display: flex; align-items: center; gap: 11px;
  padding: 9px 16px 9px 12px;
  border-bottom: 1px solid var(--line-2);
  background: var(--surface);
  cursor: grab;
  touch-action: pan-y;
}
.rt__stop:last-child { border-bottom: 0; }
.rt__stop:hover { background: var(--surface-2); }
.rt__stop:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }
.rt__stop.is-done { background: color-mix(in srgb, var(--ok) 4%, var(--surface)); }
.rt__stop.is-skipped { opacity: 0.72; }
.rt__stop.is-dragging { opacity: 0.3; }
.rt__grip { color: var(--ink-mute); opacity: 0.55; flex: 0 0 auto; display: grid; }
.rt__stop:hover .rt__grip { opacity: 1; }
.rt__n {
  width: 22px; height: 22px; flex: 0 0 auto;
  display: grid; place-items: center;
  border-radius: 6px; background: var(--surface-3); color: var(--ink-2);
  font-size: 11px; font-weight: 700;
}
.rt__stop.is-done .rt__n { background: var(--ok-soft); color: var(--ok); }
.rt__time { flex: 0 0 66px; font-size: 12px; font-weight: 600; color: var(--ink-2); }
.rt__who { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.rt__name { font-size: 13px; font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rt__addr { font-size: 11.5px; color: var(--ink-mute); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rt__dur { flex: 0 0 44px; text-align: right; font-size: 11.5px; color: var(--ink-mute); }
.rt__price { flex: 0 0 60px; text-align: right; font-size: 12.5px; font-weight: 600; color: var(--ink); }
.rt__st { flex: 0 0 auto; display: flex; align-items: center; gap: 6px; }
.rt__why { font-size: 11px; color: var(--ink-mute); max-width: 150px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rt__go { flex: 0 0 auto; display: flex; gap: 3px; }

.rt__ghost {
  position: fixed; left: 0; top: 0; z-index: 200;
  pointer-events: none; list-style: none;
  border: 1px solid var(--accent); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-3); background: var(--surface);
  opacity: 0.96;
}
.rt__ph {
  border: 1px dashed var(--accent);
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  margin: 2px 10px;
}
body.rt-dragging { cursor: grabbing; user-select: none; }
body.rt-dragging * { cursor: grabbing !important; }

.rt__hint {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 16px; font-size: 11.5px; color: var(--ink-mute);
  border-top: 1px solid var(--line-2); background: var(--surface-2);
}

/* ----------------------------------------------------------- the round - */

.wklegend {
  display: flex; flex-wrap: wrap; gap: 6px 18px;
  padding: 11px 14px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
}
.wklegend__i { display: inline-flex; align-items: baseline; gap: 6px; font-size: 11.5px; color: var(--ink-2); }
.wklegend__i b { font-size: 10.5px; letter-spacing: 0.07em; text-transform: uppercase; color: var(--accent-ink); }
.wklegend__h { flex-basis: 100%; font-size: 11.5px; color: var(--ink-mute); }

.wk { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); position: relative; }
.wk__scroll { overflow: auto; max-height: min(720px, calc(100vh - 268px)); }
.wk__inner { display: flex; flex-direction: column; }
.wk__head { display: flex; position: sticky; top: 0; z-index: 3; background: var(--surface); border-bottom: 1px solid var(--line); }
.wk__corner {
  flex: 0 0 auto; padding: 9px 12px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--ink-mute);
  position: sticky; left: 0; z-index: 2; background: var(--surface);
  border-right: 1px solid var(--line);
}
.wk__dh { flex: 0 0 auto; padding: 7px 10px 8px; border-left: 1px solid var(--line-2); }
.wk__dh.is-today { background: var(--accent-soft); }
.wk__dhd { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--ink-mute); }
.wk__dhn { display: inline-block; font: 600 16px/1.1 var(--mono); color: var(--ink); }
.wk__dh.is-today .wk__dhn { color: var(--accent-ink); }
.wk__dhc { display: block; font: 500 10.5px var(--mono); color: var(--ink-mute); }

.wk__body { display: flex; flex-direction: column; }
.wk__row { display: flex; border-bottom: 1px solid var(--line-2); }
.wk__row:last-child { border-bottom: 0; }
.wk__lbl {
  flex: 0 0 auto; display: flex; align-items: center; gap: 9px;
  padding: 10px 12px;
  position: sticky; left: 0; z-index: 2;
  background: var(--surface);
  border-right: 1px solid var(--line);
  border: 1px solid var(--c-c, var(--accent));
}
.wk__lblt { min-width: 0; display: flex; flex-direction: column; }
.wk__name { font-size: 12.5px; font-weight: 700; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wk__sub { font-size: 11px; color: var(--ink-mute); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.wk__cell {
  flex: 0 0 auto; height: 150px;
  padding: 5px 5px 4px;
  border-left: 1px solid var(--line-2);
  display: flex; flex-direction: column;
  position: relative;
}
.wk__cellin {
  flex: 1; min-height: 0;
  overflow-y: auto; overscroll-behavior: contain;
  display: flex; flex-direction: column; gap: 3px;
  scrollbar-width: thin;
}
.wk__cellfoot { display: flex; align-items: center; gap: 6px; padding-top: 3px; }
.wk__cell.is-today { background: color-mix(in srgb, var(--accent) 4%, transparent); }
.wk__cell.is-off { background: var(--surface-2); }
.wk__cell.is-target { background: var(--accent-soft); box-shadow: inset 0 0 0 2px var(--accent); }
.wk__off { font-size: 11px; color: var(--ink-mute); }
.wk__cellsum { flex: 1; min-width: 0; font-size: 9.5px; color: var(--ink-mute); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.wk__add {
  flex: 0 0 auto;
  width: 20px; height: 20px; border-radius: 6px;
  display: grid; place-items: center;
  border: 1px dashed var(--line); background: transparent; color: var(--ink-mute);
  cursor: pointer; opacity: 0;
  transition: opacity var(--t-fast) var(--ease);
}
.wk__cell:hover .wk__add, .wk__add:focus-visible { opacity: 1; }
.wk__cell.is-off .wk__add { display: none; }
.wk__add:hover { border-color: var(--accent); color: var(--accent-ink); background: var(--accent-soft); }

.wk__chip {
  display: flex; flex-direction: column; gap: 0; align-items: flex-start;
  width: 100%; padding: 3px 6px 4px;
  border: 1px solid var(--c-c, var(--accent));
  border-radius: var(--radius-sm);
  background: var(--surface); cursor: grab; font: inherit; text-align: left;
  position: relative;
  touch-action: pan-y;
}
.wk__chip:hover { border-color: var(--ink-mute); box-shadow: var(--shadow-1); }
.wk__chip:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; }
.wk__chip.is-dragging { opacity: 0.35; }
.wk__chip.is-done { background: color-mix(in srgb, var(--ok) 7%, var(--surface)); }
.wk__chip.is-skipped { opacity: 0.6; text-decoration: line-through; text-decoration-thickness: 1px; }
.wk__chipt { font: 600 9.5px var(--mono); color: var(--ink-mute); max-width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wk__chipn { font-size: 11px; font-weight: 600; line-height: 1.3; color: var(--ink); max-width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wk__chips { font-size: 10px; color: var(--ink-mute); }
.wk__plan {
  position: absolute; top: 4px; right: 4px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--accent);
}

.roundfacts { display: flex; flex-direction: column; gap: 12px; }
.roundfacts p { font-size: 13px; color: var(--ink-2); line-height: 1.6; max-width: 74ch; }

/* ------------------------------------------------------ lists in drawers */

.sched { display: flex; flex-direction: column; border: 1px solid var(--line-2); border-radius: var(--radius-sm); overflow: hidden; }
.sched__i { display: flex; align-items: center; gap: 10px; padding: 8px 11px; border-bottom: 1px solid var(--line-2); }
.sched__i:last-child { border-bottom: 0; }
.sched__i.is-skipped { opacity: 0.7; background: var(--warn-soft); }
.sched__d { flex: 1; font-size: 12.5px; font-weight: 600; color: var(--ink); }
.sched__t { font-size: 11.5px; color: var(--ink-mute); }
.sched__c { font-size: 11.5px; color: var(--ink-mute); }

.hist { display: flex; flex-direction: column; }
.hist__i { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--line-2); }
.hist__i:last-child { border-bottom: 0; }
.hist__d { flex: 0 0 108px; font-size: 12px; font-weight: 600; color: var(--ink-2); }
.hist__t { flex: 1; min-width: 0; font-size: 12.5px; color: var(--ink-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hist__v { font-size: 12px; color: var(--ink); font-weight: 600; }
.card__body--flush .hist { padding: 4px 16px 10px; }

.planlist { display: flex; flex-direction: column; }
.planlist__i {
  display: flex; align-items: center; gap: 10px; width: 100%;
  padding: 9px 16px; border: 0; border-bottom: 1px solid var(--line-2);
  background: none; cursor: pointer; font: inherit; text-align: left;
}
.planlist li:last-child .planlist__i { border-bottom: 0; }
.planlist__i:hover { background: var(--surface-2); }
.planlist__i--flat { cursor: default; }
.planlist__i--flat:hover { background: none; }
.planlist__n { flex: 1; min-width: 0; font-size: 13px; font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.planlist__f { font-size: 11.5px; color: var(--ink-mute); }
.planlist__v { font-size: 12.5px; font-weight: 600; color: var(--ink); }

.msgs { display: flex; flex-direction: column; gap: 8px; padding: 4px 0; }
.card__body--flush .msgs { padding: 12px 16px; }
.msgs__i {
  border: 1px solid var(--line-2); border-radius: var(--radius-sm);
  padding: 8px 10px; background: var(--surface-2);
}
.msgs__i.is-out { background: var(--accent-soft); border-color: transparent; }
.msgs__b { font-size: 12.5px; color: var(--ink-2); line-height: 1.5; }
.msgs__m { font-size: 10.5px; color: var(--ink-mute); margin-top: 4px; }

.jcmini { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.jcmini p { font-size: 12.5px; color: var(--ink-2); }

/* ------------------------------------------------------------ job cards */

.jclist { display: flex; flex-direction: column; }
.jclist__i {
  display: flex; align-items: center; gap: 11px; width: 100%;
  padding: 10px 16px; border: 0; border-bottom: 1px solid var(--line-2);
  background: none; cursor: pointer; font: inherit; text-align: left;
}
.jclist li:last-child .jclist__i { border-bottom: 0; }
.jclist__i:hover { background: var(--surface-2); }
.jclist__ic {
  width: 28px; height: 28px; border-radius: 8px; flex: 0 0 auto;
  display: grid; place-items: center;
}
.jclist__ic--pest { background: var(--info-soft); color: var(--info); }
.jclist__ic--turf { background: var(--accent-soft); color: var(--accent-ink); }
.jclist__txt { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.jclist__t { font-size: 13px; font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.jclist__s { font-size: 11.5px; color: var(--ink-mute); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.jclist__p { font-size: 11.5px; color: var(--ink-mute); flex: 0 0 auto; }
.jclist__i .ic:last-child { color: var(--ink-mute); flex: 0 0 auto; }

.jc__tw { overflow-x: auto; border: 1px solid var(--line-2); border-radius: var(--radius-sm); }
.jc__t { width: 100%; border-collapse: separate; border-spacing: 0; min-width: 560px; }
.jc__t th {
  text-align: left; padding: 7px 10px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--ink-mute); background: var(--surface-2);
  border-bottom: 1px solid var(--line-2); white-space: nowrap;
}
.jc__t td { padding: 8px 10px; font-size: 12px; color: var(--ink-2); border-bottom: 1px solid var(--line-2); vertical-align: top; }
.jc__t tr:last-child td { border-bottom: 0; }
.jc__t .mono { font-family: var(--mono); font-variant-numeric: tabular-nums; font-size: 11.5px; }
.jc__pn { display: block; font-weight: 600; color: var(--ink); }
.jc__pa { display: block; font-size: 11px; color: var(--ink-mute); }
.jc__none { color: var(--ink-mute); font-style: normal; padding: 14px 10px; }
.jc__legal {
  display: flex; align-items: flex-start; gap: 7px;
  margin-top: 9px; font-size: 11.5px; color: var(--ink-mute); line-height: 1.5;
}
.jc__legal .ic { flex: 0 0 auto; margin-top: 1px; }

.jc__ba { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.jc__bacol { min-width: 0; }
.jc__bacol .photostrip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
  gap: 8px; overflow: visible;
}
.jc__balbl {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 6px;
}
.jc__bacol .phototile { width: 100%; max-width: none; }

.jc__find { display: flex; flex-direction: column; gap: 6px; }
.jc__find li { display: flex; align-items: flex-start; gap: 7px; font-size: 12.5px; color: var(--ink-2); line-height: 1.5; }
.jc__find .ic { flex: 0 0 auto; margin-top: 2px; color: var(--ink-mute); }
.jc__rec {
  display: flex; align-items: flex-start; gap: 7px;
  margin-top: 10px; padding: 9px 11px;
  background: var(--accent-soft); border-radius: var(--radius-sm);
  font-size: 12.5px; color: var(--accent-ink); line-height: 1.5;
}
.jc__rec .ic { flex: 0 0 auto; margin-top: 1px; }

.jc__sig {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 12px 14px; background: var(--surface-2);
}
.jc__sigp { font: 400 22px/1.2 var(--display); font-style: italic; color: var(--ink); }
.jc__sigm { font-size: 11.5px; color: var(--ink-mute); margin-top: 5px; }
.jc__sig--empty { border-style: dashed; background: transparent; }

/* --------------------------------------------------------------- portal */

.pt__top {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 14px 18px;
  background: linear-gradient(100deg, var(--accent-soft), var(--surface) 72%);
  border: 1px solid var(--line); border-radius: var(--radius);
}
[data-theme="dark"] .pt__top { background: linear-gradient(100deg, var(--accent-soft), var(--surface) 72%); }
.pt__brand { display: flex; align-items: center; gap: 10px; }
.pt__mark { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 9px; background: var(--accent); color: var(--accent-on); }
.pt__bn { font: 700 15px var(--display); letter-spacing: -0.015em; color: var(--ink); }
.pt__bs { font-size: 11.5px; color: var(--ink-mute); }
.pt__who { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.pt__wn { font-size: 13px; font-weight: 600; color: var(--ink); }
.pt__ws { font-size: 11.5px; color: var(--ink-mute); }

.portalpick { display: inline-flex; align-items: center; gap: 7px; }
.portalpick__l { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-mute); }

.pt__next {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  border: 1px solid var(--accent);
  padding: 16px 18px 18px;
}
.pt__nexth { display: flex; align-items: center; gap: 10px; }
.pt__nextl { flex: 1; font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); }
.pt__nextd { font: 700 24px/1.2 var(--display); letter-spacing: -0.025em; color: var(--ink); margin-top: 8px; }
.pt__nextt { font-size: 13px; color: var(--accent-ink); font-weight: 600; margin-top: 4px; }
.pt__nexts { font-size: 12.5px; color: var(--ink-mute); margin-top: 6px; }
.pt__nexta { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.pt__next--none { border-top-color: var(--line); }
.pt__pad { padding: 14px 16px; font-size: 12.5px; color: var(--ink-mute); }

.pt__slots { display: flex; flex-direction: column; gap: 6px; }
.pt__slot {
  display: flex; align-items: center; gap: 10px; width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--surface); cursor: pointer; font: inherit; text-align: left;
}
.pt__slot:hover { border-color: var(--accent); background: var(--accent-soft); }
.pt__slotd { flex: 1; font-size: 13px; font-weight: 600; color: var(--ink); }
.pt__slotm { font-size: 11.5px; color: var(--ink-mute); }

/* -------------------------------------------------------------- reports */

.chartscroll { overflow-x: auto; }
.chartscroll__in { min-width: 440px; }

.effrows { display: flex; flex-direction: column; }
.effrows__i { display: flex; align-items: center; gap: 10px; padding: 8px 16px; border-bottom: 1px solid var(--line-2); }
.effrows__i:last-child { border-bottom: 0; }
.effrows__d { flex: 0 0 54px; font-size: 11.5px; font-weight: 600; color: var(--ink-2); }
.effrows__n { flex: 0 0 54px; text-align: right; font-size: 12px; font-weight: 600; color: var(--ink); }
.effrows__s { flex: 0 0 106px; text-align: right; font-size: 10.5px; color: var(--ink-mute); }

.gap { display: flex; gap: 20px; align-items: flex-start; flex-wrap: wrap; }
.gap__fig {
  flex: 0 0 auto; min-width: 132px;
  padding: 14px 16px; border-radius: var(--radius);
  background: var(--accent-soft); color: var(--accent-ink);
}
.gap__v { font-size: 34px; font-weight: 600; letter-spacing: -0.03em; line-height: 1; }
.gap__l { font-size: 11.5px; margin-top: 6px; }
.gap__txt { flex: 1; min-width: 260px; display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.gap__txt p { font-size: 13px; color: var(--ink-2); line-height: 1.6; }

/* --------------------------------------------------------------- mobile */

@media (max-width: 900px) {
  .top__cta span { display: none; }
  .top__cta { padding: 0 9px; }
  .rt__sum { gap: 12px 16px; }
  .rt__opt { margin-left: 0; flex-basis: 100%; }
  .rt__head { flex-wrap: wrap; }
  .rt__ha { margin-left: 0; }
  .rt__stop { flex-wrap: wrap; row-gap: 5px; padding: 10px 12px; }
  .rt__who { flex: 1 1 100%; order: 4; }
  .rt__dur { display: none; }
  .rt__price { flex: 0 0 auto; margin-left: auto; }
  .rt__st { order: 5; }
  .rt__go { order: 6; margin-left: auto; }
  .rt__grpk { flex-basis: 100%; margin-left: 0; text-align: left; }
  .rt__grp { flex-wrap: wrap; row-gap: 2px; }

  .crewtab { min-width: 138px; }
  .wk__scroll { max-height: none; }
  .jc__ba { grid-template-columns: minmax(0, 1fr); }
  .pt__who { margin-left: 0; }
  .hist__i { flex-wrap: wrap; row-gap: 4px; }
  .hist__d { flex-basis: 100%; }
  .effrows__s { display: none; }
  .chartscroll__in { min-width: 420px; }
}
