/* ============================================================
   MATCHPOINT — Dashboard shell + components (talent & company)
   ============================================================ */
body.dash-body { overflow: hidden; }
.dash {
  display: grid;
  grid-template-columns: 264px 1fr;
  height: 100dvh;
}

/* ============================ SIDEBAR ============================ */
.side {
  position: relative; z-index: 30;
  display: flex; flex-direction: column;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.018), transparent 40%), var(--bg);
  padding: 20px 16px;
}
.side__logo { padding: 6px 8px 22px; }
.side__nav { display: flex; flex-direction: column; gap: 3px; overflow-y: auto; flex: 1; }
.side__group { margin: 16px 8px 8px; }
.side__item {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 12px; border-radius: var(--r-md);
  color: var(--text-2); font-size: 0.92rem; position: relative;
  transition: background var(--t-fast) var(--e-out), color var(--t-fast);
  cursor: pointer; border: 1px solid transparent;
}
.side__item .ic { width: 19px; height: 19px; flex: none; }
.side__item:hover { background: rgba(255,255,255,0.035); color: var(--text); }
.side__item.is-active {
  color: var(--text);
  background: linear-gradient(90deg, var(--blue-12), rgba(160,107,255,0.06));
  border-color: var(--line);
}
.side__item.is-active::before {
  content: ""; position: absolute; left: -16px; top: 50%; transform: translateY(-50%);
  width: 3px; height: 22px; border-radius: 0 3px 3px 0; background: var(--grad);
}
.side__item .badge {
  margin-left: auto; font-family: var(--font-mono); font-size: 0.62rem;
  background: var(--blue); color: #050810; border-radius: 999px; padding: 2px 7px; font-weight: 600;
}
.side__foot { margin-top: 12px; padding-top: 14px; border-top: 1px solid var(--line); }
.usercard { display: flex; align-items: center; gap: 11px; padding: 8px; border-radius: var(--r-md); cursor: pointer; transition: background var(--t-fast); }
.usercard:hover { background: rgba(255,255,255,0.035); }
.usercard .meta { min-width: 0; flex: 1; }
.usercard .meta b { display: block; font-size: 0.86rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.usercard .meta span { font-size: 0.72rem; color: var(--text-3); }
.usercard .logout { color: var(--text-3); width: 34px; height: 34px; border-radius: 8px; display: grid; place-items: center; flex: none; }
.usercard .logout:hover { color: var(--danger); background: var(--danger-12); }

/* ============================ MAIN ============================ */
.main { display: flex; flex-direction: column; min-width: 0; height: 100dvh; }
.topbar {
  display: flex; align-items: center; gap: 16px;
  padding: 14px clamp(18px, 3vw, 36px);
  border-bottom: 1px solid var(--line); background: rgba(6,7,13,0.7);
  backdrop-filter: blur(12px); position: sticky; top: 0; z-index: 20; flex: none;
}
.topbar__menu { display: none; width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line-2); align-items: center; justify-content: center; color: var(--text); }
.topbar__title { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.topbar__title .crumb { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); }
.topbar__title h1 { font-size: 1.3rem; font-weight: 600; letter-spacing: -0.02em; }
.topbar__spacer { flex: 1; }
.search {
  display: flex; align-items: center; gap: 9px; width: min(320px, 34vw);
  padding: 9px 14px; border-radius: var(--r-pill); border: 1px solid var(--line-2); background: var(--surface);
}
.search .ic { color: var(--text-3); width: 17px; height: 17px; }
.search input { flex: 1; background: none; border: none; font-size: 0.88rem; color: var(--text); min-width: 0; }
.search input:focus { outline: none; }
.search kbd { font-family: var(--font-mono); font-size: 0.6rem; color: var(--text-4); border: 1px solid var(--line-2); border-radius: 5px; padding: 2px 5px; }
.icon-btn { position: relative; width: 40px; height: 40px; border-radius: var(--r-pill); border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--text-2); transition: all var(--t-fast) var(--e-out); }
.icon-btn:hover { color: var(--text); border-color: var(--line-strong); background: rgba(255,255,255,0.04); }
.icon-btn .dot { position: absolute; top: 9px; right: 10px; width: 7px; height: 7px; border-radius: 50%; background: var(--danger); border: 2px solid var(--bg); }
.topbar .btn--cta { white-space: nowrap; }

/* scroll area */
.view { overflow-y: auto; padding: clamp(20px, 3vw, 34px); flex: 1; }
.view__intro { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; flex-wrap: wrap; margin-bottom: 22px; }
.view__intro h2 { font-size: clamp(1.4rem, 1.1rem + 1vw, 1.9rem); letter-spacing: -0.02em; }
.view__intro p { color: var(--text-2); font-size: 0.92rem; margin-top: 4px; }

/* entrance */
.view > * { animation: viewIn var(--t-slow) var(--e-out) both; }
@keyframes viewIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .view > * { animation: none; } }

/* ============================ LAYOUT HELPERS ============================ */
.row { display: grid; gap: 16px; }
.row--kpi { grid-template-columns: repeat(4, 1fr); }
.row--2 { grid-template-columns: 1fr 1fr; }
.row--3 { grid-template-columns: repeat(3, 1fr); }
.row--32 { grid-template-columns: 1.7fr 1fr; }
.row--23 { grid-template-columns: 1fr 1.7fr; }
.mt { margin-top: 16px; }

/* ============================ CARDS ============================ */
.panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.022), rgba(255,255,255,0.006));
  border: 1px solid var(--line); border-radius: var(--r-lg); padding: 20px;
}
.panel--pad0 { padding: 0; overflow: hidden; }
.panel__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.panel__title { font-size: 1rem; font-weight: 600; letter-spacing: -0.01em; }
.panel__sub { font-size: 0.78rem; color: var(--text-3); margin-top: 2px; }
.panel__action { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue-bright); display: inline-flex; align-items: center; gap: 5px; }
.panel__action:hover { color: var(--text); }

/* KPI */
.kpi { position: relative; overflow: hidden; }
.kpi__top { display: flex; align-items: center; justify-content: space-between; }
.kpi__icon { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; color: var(--blue-bright); background: var(--blue-12); border: 1px solid var(--blue-20); }
.kpi--v .kpi__icon { color: var(--violet-bright); background: var(--violet-12); border-color: var(--violet-20); }
.kpi__label { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); margin: 16px 0 8px; }
.kpi__val { font-family: var(--font-display); font-size: 1.85rem; font-weight: 600; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; line-height: 1; }
.kpi__foot { display: flex; align-items: center; gap: 8px; margin-top: 12px; }
.delta { display: inline-flex; align-items: center; gap: 4px; font-size: 0.76rem; font-weight: 500; }
.delta .ic { width: 14px; height: 14px; }
.delta--up { color: var(--ok); }
.delta--down { color: var(--danger); }
.delta--down .ic { transform: scaleY(-1); }
.kpi__foot .vs { font-size: 0.74rem; color: var(--text-4); }
.kpi__spark { position: absolute; right: 14px; bottom: 14px; width: 92px; height: 34px; opacity: 0.85; }

/* ============================ CHARTS ============================ */
.chart { width: 100%; }
.chart-area { height: 210px; position: relative; }
.chart-area svg { width: 100%; height: 100%; display: block; }
.chart-grid line { stroke: var(--line); stroke-dasharray: 3 5; }
.chart-x { display: flex; justify-content: space-between; margin-top: 8px; padding: 0 2px; }
.chart-x span { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.04em; color: var(--text-3); }
.chart-legend { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 6px; }
.chart-legend span { display: inline-flex; align-items: center; gap: 7px; font-size: 0.76rem; color: var(--text-2); }
.chart-legend i { width: 10px; height: 10px; border-radius: 3px; }
.spark-draw { stroke-dasharray: 600; stroke-dashoffset: 600; animation: draw 1.6s var(--e-out) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.bar-row { display: flex; flex-direction: column; gap: 14px; }
.bar { display: grid; grid-template-columns: 110px 1fr 60px; align-items: center; gap: 12px; font-size: 0.82rem; }
.bar__label { color: var(--text-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bar__track { height: 9px; border-radius: 999px; background: var(--surface-3); overflow: hidden; }
.bar__fill { height: 100%; border-radius: 999px; background: var(--grad); width: 0; transition: width 1s var(--e-out); }
.bar__val { text-align: right; font-family: var(--font-mono); font-size: 0.76rem; color: var(--text); }

/* donut */
.donut-wrap { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.donut { position: relative; width: 150px; height: 150px; flex: none; }
.donut svg { transform: rotate(-90deg); }
.donut__center { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; }
.donut__center b { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; letter-spacing: -0.02em; }
.donut__center span { font-size: 0.68rem; color: var(--text-3); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.08em; }
.donut-legend { display: flex; flex-direction: column; gap: 11px; flex: 1; min-width: 140px; }
.donut-legend li { display: flex; align-items: center; gap: 10px; font-size: 0.84rem; }
.donut-legend i { width: 10px; height: 10px; border-radius: 3px; flex: none; }
.donut-legend .v { margin-left: auto; font-family: var(--font-mono); font-size: 0.78rem; color: var(--text-2); }

/* ============================ TABLE ============================ */
.table-wrap { overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; }
.table thead th {
  text-align: left; font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-3); font-weight: 500; padding: 14px 16px; white-space: nowrap;
  border-bottom: 1px solid var(--line); position: sticky; top: 0; background: var(--surface); cursor: pointer; user-select: none;
}
.table thead th .ic { width: 12px; height: 12px; opacity: 0.5; vertical-align: middle; }
.table tbody td { padding: 14px 16px; font-size: 0.88rem; border-bottom: 1px solid var(--line); vertical-align: middle; }
.table tbody tr { transition: background var(--t-fast); }
.table tbody tr:hover { background: rgba(255,255,255,0.025); }
.table tbody tr:last-child td { border-bottom: none; }
.cell-strong { font-weight: 600; }
.cell-mono { font-family: var(--font-mono); font-size: 0.8rem; }
.cell-name { display: flex; align-items: center; gap: 11px; }
.cell-name .meta b { display: block; font-size: 0.88rem; }
.cell-name .meta span { font-size: 0.72rem; color: var(--text-3); }
.cell-amt { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

/* status pills */
.pill { display: inline-flex; align-items: center; gap: 6px; padding: 4px 11px; border-radius: 999px; font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.04em; text-transform: uppercase; white-space: nowrap; }
.pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.pill--ok { color: var(--ok); background: var(--ok-12); }
.pill--warn { color: var(--warn); background: var(--warn-12); }
.pill--danger { color: var(--danger); background: var(--danger-12); }
.pill--info { color: var(--blue-bright); background: var(--blue-12); }
.pill--muted { color: var(--text-3); background: rgba(255,255,255,0.05); }
.pill--violet { color: var(--violet-bright); background: var(--violet-12); }

/* row actions */
.rowbtn { width: 32px; height: 32px; border-radius: 8px; display: grid; place-items: center; color: var(--text-3); border: 1px solid transparent; }
.rowbtn:hover { color: var(--text); background: rgba(255,255,255,0.05); border-color: var(--line); }

/* ============================ LISTS / FEED ============================ */
.tlist { display: flex; flex-direction: column; }
.tlist li { display: flex; align-items: center; gap: 13px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.tlist li:last-child { border-bottom: none; }
.tlist .ti { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; flex: none; }
.tlist .ti--in { color: var(--ok); background: var(--ok-12); }
.tlist .ti--out { color: var(--violet-bright); background: var(--violet-12); }
.tlist .meta { flex: 1; min-width: 0; }
.tlist .meta b { display: block; font-size: 0.88rem; font-weight: 600; }
.tlist .meta span { font-size: 0.74rem; color: var(--text-3); }
.tlist .amt { font-family: var(--font-mono); font-size: 0.86rem; font-variant-numeric: tabular-nums; }
.tlist .amt--in { color: var(--ok); }

.feed { display: flex; flex-direction: column; gap: 2px; }
.feed li { display: flex; gap: 13px; padding: 12px 0; position: relative; }
.feed .fi { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; flex: none; color: var(--blue-bright); background: var(--blue-12); }
.feed .meta b { font-weight: 600; }
.feed .meta p { font-size: 0.82rem; color: var(--text-2); margin-top: 2px; }
.feed .meta time { font-size: 0.7rem; color: var(--text-4); font-family: var(--font-mono); }

/* ============================ TALENT ROSTER (company) ============================ */
.roster { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px; }
.tcard2 { padding: 18px; border: 1px solid var(--line); border-radius: var(--r-lg); background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent); transition: transform var(--t-mid) var(--e-out), border-color var(--t-mid), box-shadow var(--t-mid); }
.tcard2:hover { transform: translateY(-4px); border-color: var(--blue-40); box-shadow: 0 26px 50px -30px rgba(79,123,255,0.45); }
.tcard2__top { display: flex; align-items: center; gap: 12px; }
.tcard2__top .meta b { display: block; font-weight: 600; }
.tcard2__top .meta span { font-size: 0.74rem; color: var(--text-3); }
.tcard2__match { margin-left: auto; font-family: var(--font-mono); font-size: 0.72rem; color: var(--ok); }
.tcard2__skills { display: flex; flex-wrap: wrap; gap: 6px; margin: 14px 0; }
.tcard2__stat { display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--text-2); padding: 8px 0; border-top: 1px solid var(--line); }
.tcard2__foot { display: flex; gap: 8px; margin-top: 14px; }

/* filters bar */
.toolbar { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.toolbar .search { width: min(360px, 50vw); }
.fbtn { display: inline-flex; align-items: center; gap: 7px; padding: 9px 14px; border-radius: var(--r-pill); border: 1px solid var(--line-2); font-size: 0.82rem; color: var(--text-2); background: var(--surface); }
.fbtn:hover, .fbtn.is-on { color: var(--text); border-color: var(--line-strong); }
.fbtn.is-on { background: var(--blue-12); border-color: var(--blue-40); color: var(--blue-bright); }

/* ============================ MESSAGES ============================ */
.msgs { display: grid; grid-template-columns: 300px 1fr; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; height: calc(100dvh - 200px); min-height: 460px; }
.conv-list { border-right: 1px solid var(--line); overflow-y: auto; background: rgba(255,255,255,0.008); }
.conv { display: flex; gap: 12px; padding: 14px 16px; border-bottom: 1px solid var(--line); cursor: pointer; transition: background var(--t-fast); }
.conv:hover { background: rgba(255,255,255,0.03); }
.conv.is-active { background: var(--blue-12); }
.conv .meta { flex: 1; min-width: 0; }
.conv .meta b { font-size: 0.86rem; font-weight: 600; display: flex; justify-content: space-between; gap: 8px; }
.conv .meta b time { font-size: 0.68rem; color: var(--text-4); font-weight: 400; font-family: var(--font-mono); }
.conv .meta p { font-size: 0.78rem; color: var(--text-3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.conv .unread { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); align-self: center; flex: none; }
.thread { display: flex; flex-direction: column; min-width: 0; }
.thread__head { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.thread__head .meta b { display: block; font-size: 0.92rem; font-weight: 600; }
.thread__head .meta span { font-size: 0.72rem; color: var(--ok); }
.thread__body { flex: 1; overflow-y: auto; padding: 20px 18px; display: flex; flex-direction: column; gap: 12px; }
.bubble { max-width: 74%; padding: 11px 15px; border-radius: 16px; font-size: 0.88rem; line-height: 1.45; }
.bubble time { display: block; font-size: 0.64rem; margin-top: 5px; opacity: 0.6; font-family: var(--font-mono); }
.bubble--in { align-self: flex-start; background: var(--surface-2); border: 1px solid var(--line); border-bottom-left-radius: 5px; }
.bubble--out { align-self: flex-end; background: var(--grad); color: #08101f; border-bottom-right-radius: 5px; }
.bubble--out time { color: #08101f; }
.thread__compose { display: flex; gap: 10px; padding: 14px; border-top: 1px solid var(--line); }
.thread__compose input { flex: 1; padding: 12px 15px; border-radius: var(--r-pill); border: 1px solid var(--line-2); background: var(--surface); color: var(--text); }
.thread__compose input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-12); }
.thread__compose button { width: 46px; flex: none; border-radius: 50%; background: var(--grad); color: #050810; display: grid; place-items: center; }

/* ============================ PROFILE ============================ */
.profile-head { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.profile-head .avatar { width: 84px; height: 84px; font-size: 1.9rem; }
.profile-head .meta h2 { font-size: 1.5rem; }
.profile-head .meta .sub { color: var(--text-2); margin-top: 4px; }
.profile-head .meta .pills { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.meter { margin-top: 18px; }
.meter__bar { height: 8px; border-radius: 999px; background: var(--surface-3); overflow: hidden; }
.meter__fill { height: 100%; background: var(--grad); border-radius: 999px; transition: width 1s var(--e-out); }
.meter__row { display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--text-2); margin-bottom: 8px; }
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
.gallery .tile { aspect-ratio: 4/5; border-radius: var(--r-md); border: 1px solid var(--line); position: relative; overflow: hidden; display: grid; place-items: center; color: rgba(255,255,255,0.5); }
.gallery .tile .ic { width: 26px; height: 26px; }
.gallery .tile.add { border-style: dashed; cursor: pointer; color: var(--text-3); }
.gallery .tile.add:hover { color: var(--blue-bright); border-color: var(--blue-40); }
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.stat-strip > div { padding: 16px; border-right: 1px solid var(--line); }
.stat-strip > div:last-child { border-right: none; }
.stat-strip b { display: block; font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; letter-spacing: -0.02em; }
.stat-strip span { font-size: 0.72rem; color: var(--text-3); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.06em; }

/* ============================ SETTINGS / forms ============================ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .field.col-2 { grid-column: 1 / -1; }
.switch-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.switch-row:last-child { border-bottom: none; }
.switch-row .meta b { font-weight: 600; font-size: 0.92rem; }
.switch-row .meta p { font-size: 0.8rem; color: var(--text-3); margin-top: 2px; }
.switch { width: 46px; height: 26px; border-radius: 999px; background: var(--surface-3); border: 1px solid var(--line-2); position: relative; cursor: pointer; flex: none; transition: background var(--t-fast); }
.switch::after { content: ""; position: absolute; top: 2px; left: 2px; width: 20px; height: 20px; border-radius: 50%; background: #fff; transition: transform var(--t-mid) var(--e-spring); }
.switch.is-on { background: var(--grad); border-color: transparent; }
.switch.is-on::after { transform: translateX(20px); }

.settings-tabs { display: flex; gap: 4px; margin-bottom: 22px; border-bottom: 1px solid var(--line); }
.settings-tabs button { padding: 12px 16px; font-size: 0.88rem; color: var(--text-3); border-bottom: 2px solid transparent; margin-bottom: -1px; }
.settings-tabs button.is-on { color: var(--text); border-color: var(--blue); }

/* empty state */
.empty { text-align: center; padding: 50px 20px; color: var(--text-3); }
.empty .ic { width: 38px; height: 38px; color: var(--text-4); margin: 0 auto 14px; }
.empty b { display: block; color: var(--text); font-size: 1rem; margin-bottom: 6px; }

/* toast */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px); z-index: var(--z-toast); background: var(--surface-2); border: 1px solid var(--line-2); border-radius: var(--r-pill); padding: 13px 20px; display: flex; align-items: center; gap: 10px; font-size: 0.88rem; box-shadow: var(--shadow-lg); opacity: 0; transition: all var(--t-mid) var(--e-out); pointer-events: none; }
.toast.is-show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast .ic { color: var(--ok); width: 18px; height: 18px; }

/* mobile drawer backdrop */
.scrim { position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 29; opacity: 0; visibility: hidden; transition: opacity var(--t-mid); backdrop-filter: blur(2px); }
.scrim.is-show { opacity: 1; visibility: visible; }

/* ============================ RESPONSIVE ============================ */
@media (max-width: 1180px) {
  .row--kpi { grid-template-columns: repeat(2, 1fr); }
  .row--32, .row--23 { grid-template-columns: 1fr; }
}
@media (max-width: 980px) {
  .dash { grid-template-columns: 1fr; }
  .side {
    position: fixed; inset: 0 auto 0 0; width: 272px;
    transform: translateX(-100%); transition: transform var(--t-mid) var(--e-out);
    box-shadow: var(--shadow-lg);
  }
  .side.is-open { transform: none; }
  .topbar__menu { display: inline-flex; }
  .row--2, .row--3 { grid-template-columns: 1fr; }
  .msgs { grid-template-columns: 1fr; }
  .msgs.show-thread .conv-list { display: none; }
  .msgs:not(.show-thread) .thread { display: none; }
  .search { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .stat-strip > div:nth-child(2) { border-right: none; }
}
@media (max-width: 560px) {
  .row--kpi { grid-template-columns: 1fr; }
  .topbar .btn--cta span.lbl { display: none; }
}
