/* app.css */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/lato-400.woff2) format("woff2");
}
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/fonts/lato-700.woff2) format("woff2");
}
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(/fonts/lato-900.woff2) format("woff2");
}
:root {
  --bg:#0A0B0E;
  --bg2:#0E1014;
  --panel:#161A22;
  --panel2:#101217;
  --elev:#0E1014;
  --ink:#F1F4F9;
  --muted:#AEB8C6;
  --faint:#6B7484;
  --accent:#DA291C;
  --accent2:#F2564A;
  --accent-ink:#ffffff;
  --link:#7CA3FF;
  --ok:#1FA97A;
  --warn:#f5b14c;
  --danger:#F0566A;
  --line:rgba(255,255,255,.065);
  --line2:rgba(255,255,255,.045);
  --line-strong:rgba(255,255,255,.12);
  --hl:inset 0 1px 0 rgba(255,255,255,.05);
  --surface-hover:rgba(255,255,255,.045);
  --sh-card:0 1px 0 rgba(255,255,255,.03) inset,0 6px 20px rgba(0,0,0,.22);
  --accent-soft:rgba(218,41,28,.10);
  --accent-border:rgba(218,41,28,.30);
  --link-soft:rgba(124,163,255,.12);
  --ok-border:rgba(31,169,122,.35);
  --dur-fast:.14s;
  --grad:var(--accent);
  --r-xs:8px;
  --r-sm:10px;
  --r-md:12px;
  --r-lg:16px;
  --r-xl:20px;
  --r-pill:999px;
  --r:14px;
  --sh-1:0 1px 2px rgba(0,0,0,.5);
  --sh-2:0 8px 24px rgba(0,0,0,.42),0 2px 6px rgba(0,0,0,.4);
  --sh-3:0 24px 60px rgba(0,0,0,.55),0 4px 12px rgba(0,0,0,.45);
  --ease:cubic-bezier(.2,.8,.2,1);
  --dur:.16s;
  --font:"Lato",system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  --mono:ui-monospace,Menlo,Consolas,monospace;
  --on-dark:#eef2f9;
}
:root[data-theme=light] {
  --bg:#ffffff;
  --bg2:#fafafd;
  --panel:#ffffff;
  --panel2:#f6f6fb;
  --elev:#f6f6fb;
  --ink:#1f1b4d;
  --muted:#4b4874;
  --faint:#84819f;
  --link:#1f4fd8;
  --link-soft:rgba(31,79,216,.08);
  --accent2:#B3211A;
  --ok:#0f8a5f;
  --ok-border:rgba(15,138,95,.30);
  --line:#e7e5f0;
  --line2:#f0eff6;
  --line-strong:#d4d1e4;
  --hl:inset 0 1px 0 rgba(255,255,255,.6);
  --sh-1:0 1px 2px rgba(31,27,77,.07);
  --sh-2:0 8px 24px rgba(31,27,77,.09),0 2px 6px rgba(31,27,77,.05);
  --sh-3:0 24px 60px rgba(31,27,77,.13),0 4px 12px rgba(31,27,77,.09);
  --surface-hover:#f4f3f9;
  --sh-card:0 1px 2px rgba(31,27,77,.05),0 6px 18px rgba(31,27,77,.06);
}
:root[data-theme=light] ::-webkit-scrollbar-thumb {
  background: #d4d1e4;
}
:root[data-theme=light] .topbar {
  background: rgba(255, 255, 255, .86);
}
:root[data-theme=light] .mobnav {
  background: rgba(255, 255, 255, .94);
}
:root[data-theme=light] .nav button:hover {
  background: var(--surface-hover);
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  margin: 0;
}
body {
  background: var(--bg);
  color: var(--ink);
  font: 14.5px/1.55 var(--font);
  -webkit-font-smoothing: antialiased;
}
a {
  color: var(--link);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -.01em;
}
code {
  font-family: var(--mono);
  font-size: .9em;
}
button {
  font: inherit;
  cursor: pointer;
}
input,
select,
textarea {
  width: 100%;
  background: var(--elev);
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent-border);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  margin: 14px 0 6px;
}
::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-thumb {
  background: #1d2c44;
  border-radius: 9px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 10px;
  padding: 11px 16px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  transition:
    transform var(--dur-fast) var(--ease),
    background var(--dur-fast) var(--ease),
    border-color var(--dur-fast) var(--ease),
    color var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) var(--ease);
}
.btn-primary {
  color: var(--accent-ink);
  border: 0;
  background: var(--accent);
  box-shadow: var(--sh-1);
}
.btn-primary:hover {
  transform: translateY(-1px);
  background: var(--accent2);
}
.btn-ghost {
  background: rgba(255, 255, 255, .045);
  border: 1px solid var(--line);
  color: var(--ink);
}
.btn-ghost:hover {
  border-color: var(--accent-border);
  color: var(--accent2);
}
.btn-danger {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--danger);
  padding: 7px 12px;
  font-size: 13px;
}
.btn-danger:hover {
  background: rgba(240, 85, 106, .1);
}
.btn {
  white-space: nowrap;
}
.btn-ico {
  width: 34px;
  height: 34px;
  padding: 0;
  justify-content: center;
  gap: 0;
  flex: none;
}
.btn-ico svg {
  width: 15px;
  height: 15px;
}
@media (max-width: 760px) {
  .btn-ico {
    width: 40px;
    height: 40px;
  }
}
.btn.full {
  width: 100%;
  justify-content: center;
}
.btn:focus-visible,
.nav button:focus-visible,
.tabbar button:focus-visible,
.modal-x:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 2px solid var(--accent-border);
  outline-offset: 2px;
  border-radius: 8px;
}
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 16px;
  box-shadow: var(--sh-card);
}
.muted {
  color: var(--muted);
}
.faint {
  color: var(--faint);
}
.pill {
  font-size: 11px;
  border-radius: 999px;
  padding: 3px 10px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 600;
}
.pill.ok {
  color: var(--ok);
  border-color: var(--ok-border);
}
.eyebrow {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--faint);
  font-weight: 700;
}
.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 3px solid var(--ok);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  font-size: 13.5px;
  box-shadow: var(--sh-2);
  max-width: 340px;
}
.toast.err {
  border-left-color: var(--danger);
}
.login {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
}
.login .brandside {
  padding: 56px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  background:
    radial-gradient(
      1100px 560px at 0% 0%,
      var(--link-soft),
      transparent 55%),
    linear-gradient(
      160deg,
      #0E1014,
      #0A0B0E);
}
.login .logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  font-size: 18px;
}
.login .logo .mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: none;
}
.login .brandside {
  --ink:var(--on-dark);
  --muted:#a9b2c6;
  color: var(--on-dark);
}
.login .brandside h1 {
  font-size: 30px;
  line-height: 1.2;
  max-width: 16ch;
  letter-spacing: -.02em;
}
.login .brandside p {
  color: var(--muted);
  font-size: 15px;
  max-width: 42ch;
  margin: 0;
}
.login .brandside ul {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.login .brandside li {
  display: flex;
  gap: 11px;
  color: var(--ink);
  font-size: 14px;
}
.login .brandside li .d {
  color: var(--accent);
}
.login .formside {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: var(--bg);
}
.login .formcard {
  width: 100%;
  max-width: 392px;
}
.login h3 {
  font-size: 20px;
  margin-bottom: 4px;
}
.social {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 8px 0 14px;
}
.social .sbtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--elev);
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 10px;
  padding: 11px;
  font-weight: 600;
}
.social .sbtn:hover {
  border-color: var(--accent-border);
}
.divider {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--faint);
  font-size: 12px;
  margin: 8px 0;
}
.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.linkrow {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
}
@media (max-width: 880px) {
  .login {
    grid-template-columns: 1fr;
  }
  .login .brandside {
    display: none;
  }
}
.app {
  display: grid;
  grid-template-columns: 236px 1fr;
  min-height: 100vh;
}
.side {
  background: var(--panel2);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 14px;
  position: sticky;
  top: 0;
  height: 100vh;
}
.side .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px 16px;
  font-weight: 800;
  font-size: 15px;
}
.side .brand .mark {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  flex: none;
}
.navlabel {
  font-size: 11px;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--faint);
  padding: 10px 10px 4px;
  font-weight: 700;
}
.nav button {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  text-align: left;
  background: transparent;
  color: var(--muted);
  border: 0;
  border-radius: 9px;
  padding: 9px 11px;
  font-weight: 550;
  font-size: 14px;
  transition:
    background var(--dur-fast) var(--ease),
    color var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) var(--ease);
}
.nav button:hover {
  background: var(--surface-hover);
  color: var(--ink);
}
.nav button.active {
  background: var(--link-soft);
  color: var(--link);
  font-weight: 650;
  box-shadow: inset 2px 0 0 var(--link);
}
.nav .nic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  flex: none;
}
.side .foot {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.side .who {
  font-size: 12.5px;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 8px;
}
.main {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 30px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: rgba(10, 16, 25, .82);
  backdrop-filter: blur(10px);
  z-index: 5;
}
.topbar h1 {
  font-size: 17px;
}
.topbrand {
  display: none;
}
.content {
  padding: 26px 30px 56px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 1100px;
}
.mobnav {
  display: none;
}
@media (max-width: 760px) {
  .app {
    grid-template-columns: 1fr;
  }
  .side {
    display: none;
  }
  .topbrand {
    display: inline-flex;
    align-items: center;
    color: var(--accent);
  }
  .topbar {
    padding: 12px 16px;
  }
  .topbar h1 {
    font-size: 19px;
    margin-right: auto;
  }
  .content {
    padding: 16px 14px calc(80px + env(safe-area-inset-bottom));
    gap: 14px;
    max-width: 100%;
  }
  .hero .big {
    padding: 22px;
  }
  .hero h2 {
    font-size: 21px;
  }
  .rowitem {
    flex-wrap: wrap;
  }
  .rowitem .actions {
    margin-left: auto;
  }
  .modal-backdrop {
    align-items: flex-end;
  }
  .modal-card {
    width: 100%;
    max-width: 100%;
    border-radius: 18px 18px 0 0;
    padding: 20px 18px calc(20px + env(safe-area-inset-bottom));
    animation: sheetup .24s var(--ease);
    max-height: 90vh;
    overflow: auto;
  }
  .mobnav {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    background: rgba(13, 18, 28, .92);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(12px);
    padding: 6px 2px calc(6px + env(safe-area-inset-bottom));
    justify-content: space-around;
    gap: 2px;
  }
  .mobnav button {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    background: transparent;
    border: 0;
    color: var(--muted);
    font-size: 10px;
    font-weight: 600;
    padding: 5px 1px;
    border-radius: 10px;
    min-height: 48px;
  }
  .mobnav button .nic {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
  }
  .mobnav button.active {
    color: var(--accent);
  }
  .mobnav button span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    white-space: nowrap;
  }
}
@keyframes sheetup {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
.mobmore-back {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(4, 6, 10, .55);
  display: flex;
  align-items: flex-end;
  animation: modalfade var(--dur) var(--ease);
}
.mobmore {
  width: 100%;
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-radius: 18px 18px 0 0;
  padding: 10px 12px calc(14px + env(safe-area-inset-bottom));
  box-shadow: 0 -12px 40px rgba(0, 0, 0, .5);
  animation: sheetup .24s var(--ease);
}
.mobmore > button {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  background: transparent;
  border: 0;
  color: var(--ink);
  padding: 14px 12px;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
}
.mobmore > button.active {
  color: var(--accent);
}
.mobmore-who {
  font-size: 12.5px;
  color: var(--faint);
  padding: 12px 12px 4px;
  border-top: 1px solid var(--line);
  margin-top: 6px;
}
.mobmore-out {
  color: var(--muted) !important;
}
.hero {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 14px;
  align-items: start;
}
.hero.solo {
  grid-template-columns: 1fr;
}
.hero .big {
  background:
    radial-gradient(
      600px 240px at 90% 0%,
      var(--link-soft),
      transparent 60%),
    linear-gradient(
      180deg,
      var(--panel),
      var(--panel2));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 20px 22px;
  box-shadow: var(--sh-card);
}
.hero h2 {
  font-size: 24px;
  letter-spacing: -.02em;
}
.hero .sub {
  color: var(--muted);
  margin: 8px 0 18px;
  font-size: 15px;
}
.hero .acts {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.joinbox {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.joinbox input {
  flex: 1;
}
.tiles {
  display: grid;
  gap: 10px;
}
.minitile {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  box-shadow: var(--sh-card);
}
.minitile .ic {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  display: grid;
  place-items: center;
  color: var(--accent);
}
.minitile a {
  color: var(--accent);
  font-weight: 600;
  transition: color var(--dur-fast) var(--ease);
}
.minitile a:hover {
  color: var(--accent2);
  text-decoration: none;
}
@media (max-width: 760px) {
  .hero {
    grid-template-columns: 1fr;
  }
}
.kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}
.kpi {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  box-shadow: var(--sh-card);
}
.kpi-n {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
}
.kpi-n small {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  margin-left: 1px;
}
.kpi-l {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 600;
}
.kpi-l em {
  color: var(--faint);
  font-style: normal;
  font-weight: 500;
}
.kpi-act {
  gap: 7px;
}
.kpi-act ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.kpi-act li {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  align-items: baseline;
}
.kpi-act li span {
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.kpi-act li em {
  color: var(--faint);
  font-style: normal;
  flex: none;
  font-size: 11px;
}
@media (max-width: 900px) {
  .kpis {
    grid-template-columns: 1fr 1fr;
  }
  .kpi-act {
    grid-column: 1 / -1;
  }
  .kpi:nth-child(3) {
    grid-column: 1 / -1;
  }
}
@media (max-width: 760px) {
  .kpis {
    gap: 8px;
  }
}
.tabbar {
  display: flex;
  gap: 2px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
  overflow-x: auto;
}
.tabbar button {
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  padding: 9px 14px;
  font-weight: 600;
  font-size: 13.5px;
  margin-bottom: -1px;
  white-space: nowrap;
}
.tabbar button:hover {
  color: var(--ink);
}
.tabbar button.active {
  color: var(--ink);
  border-bottom-color: var(--link);
}
.acard {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}
.spark {
  display: block;
  margin-top: 8px;
  max-width: 100%;
}
.spark rect {
  fill: var(--link);
}
.bylist {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}
.byrow {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  text-transform: capitalize;
}
.byrow b {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}
.atable {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.atable th {
  text-align: left;
  color: var(--muted);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
}
.atable td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.usebar {
  height: 8px;
  border-radius: 6px;
  background: var(--line);
  overflow: hidden;
  margin-top: 8px;
}
.usebar-fill {
  height: 100%;
  border-radius: 6px;
  background: var(--accent);
  transition: width .3s;
}
.badge-ok {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--ok,#3fb950);
  background: rgba(63, 185, 80, .12);
  border: 1px solid rgba(63, 185, 80, .35);
  border-radius: 20px;
  padding: 5px 10px;
  white-space: nowrap;
}
.tseg {
  display: flex;
  gap: 12px;
  padding: 7px 9px;
  border-radius: 8px;
  cursor: pointer;
  line-height: 1.5;
}
.tseg:hover {
  background: var(--elev,#0e1626);
}
.tseg-t {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  font-size: 12.5px;
  padding-top: 1px;
}
#transcript-modal mark {
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 3px;
  padding: 0 2px;
}
.atable tr:last-child td {
  border-bottom: 0;
}
.atable td:not(:first-child) {
  font-variant-numeric: tabular-nums;
}
.rowitem {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  box-shadow: var(--sh-card);
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.rowitem:hover {
  border-color: var(--line-strong);
  background: var(--surface-hover);
}
.live-badge {
  margin-left: 8px;
  color: #e5484d;
  font-weight: 700;
  font-size: 11.5px;
  font-variant-numeric: tabular-nums;
}
.live-dot {
  display: inline-block;
}
@keyframes livePulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .3;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .live-dot {
    animation: livePulse 1.6s ease-in-out infinite;
  }
}
.rowitem .actions .btn-ghost {
  background: transparent;
  border-color: transparent;
  color: var(--muted);
}
.rowitem .actions .btn-ghost:hover {
  background: var(--surface-hover);
  border-color: var(--line);
  color: var(--ink);
}
.rowitem + .rowitem {
  margin-top: 8px;
}
.rowitem .title {
  font-weight: 600;
}
.rowitem .meta {
  color: var(--faint);
  font-size: 12.5px;
}
.rowitem .actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.rowitem .actions .btn-primary + .btn-danger {
  position: relative;
  margin-left: 16px;
}
.rowitem .actions .btn-primary + .btn-danger::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 5px;
  bottom: 5px;
  width: 1px;
  background: var(--line-strong);
}
.listfilter {
  max-width: 240px;
  padding: 8px 11px;
  font-size: 13px;
}
.lf-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.lf-dates {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lf-date {
  padding: 7px 9px;
  font-size: 13px;
  max-width: 150px;
}
.lf-dash {
  color: var(--faint);
}
.lf-clear {
  border: 0;
  background: none;
  color: var(--faint);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
}
.lf-clear:hover {
  color: var(--ink);
}
@media (max-width: 760px) {
  .lf-dates {
    width: 100%;
  }
  .lf-date {
    flex: 1;
    max-width: none;
  }
}
.sec-h.wrap {
  flex-wrap: wrap;
}
.segtabs.kind {
  display: inline-flex;
  gap: 2px;
}
.segtabs.kind button {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 11px;
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
}
.segtabs.kind button:hover {
  color: var(--ink);
}
.segtabs.kind button.active {
  color: var(--ink);
  border-color: var(--accent);
}
.app.v2 .segtabs.kind {
  gap: 0;
}
.app.v2 .segtabs.kind button {
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  padding: 8px 2px 10px;
  margin: 0 14px -1px 0;
  font-size: 13px;
  font-weight: 700;
}
.app.v2 .segtabs.kind button.active {
  border-bottom-color: var(--accent);
}
@media (max-width: 760px) {
  .listfilter {
    max-width: none;
  }
}
.secret {
  background: var(--elev);
  border: 1px solid var(--ok-border);
  color: var(--ok);
  border-radius: 9px;
  padding: 10px 12px;
  font-family: var(--mono);
  font-size: 12.5px;
  word-break: break-all;
}
.empty {
  color: var(--muted);
  text-align: center;
  padding: 16px;
  border: 1px dashed var(--line);
  border-radius: 12px;
  font-size: 13.5px;
}
.sec-h {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 2px 0 6px;
}
.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 760px) {
  .grid2 {
    grid-template-columns: 1fr;
  }
}
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 8, 12, .72);
  backdrop-filter: blur(4px);
  animation: modalfade var(--dur) var(--ease);
}
.modal-card {
  width: min(420px, 92vw);
  max-height: 88vh;
  overflow: auto;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--sh-3), var(--hl);
  animation: modalpop .18s var(--ease);
}
#meeting-modal {
  width: min(460px, 94vw);
  max-height: 88vh;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
#meeting-modal .mform-head {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--panel);
  z-index: 1;
}
#meeting-modal .mform-body {
  overflow: auto;
  padding: 14px 16px;
  min-height: 0;
}
#meeting-modal .mform-foot {
  position: sticky;
  bottom: 0;
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  padding: 11px 16px;
  border-top: 1px solid var(--line);
  background: var(--panel);
}
.modal-x {
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  padding: 5px 9px;
  border-radius: 8px;
}
.modal-x:hover {
  background: var(--elev);
  color: var(--ink);
}
@keyframes modalfade {
  from {
    opacity: 0;
  }
}
@keyframes modalpop {
  from {
    opacity: 0;
    transform: translateY(8px) scale(.98);
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
  .btn-primary:hover {
    transform: none;
  }
}
.app.v2 {
  --accent:#2563EB;
  --accent2:#1D4ED8;
  --accent-ink:#ffffff;
  --accent-text:#7CA3FF;
  --accent-soft:rgba(77,134,255,.14);
  --accent-border:rgba(77,134,255,.45);
  --hover:rgba(255,255,255,.045);
  --selected:rgba(124,163,255,.14);
  --ok:#1FA97A;
  --ok-dot:#2EC27E;
  --danger:#F0566A;
  --violet:#9D8FFF;
  --bar-muted:rgba(255,255,255,.18);
  --chip-bg:rgba(255,255,255,.06);
  --hero-g2:#151C30;
  --art-bg:#12172A;
  --art-b1:rgba(77,134,255,.35);
  --art-b2:rgba(139,124,255,.30);
  --tile-g:linear-gradient(
      160deg,rgba(255,255,255,.14),rgba(255,255,255,.06));
  --tile-line:rgba(255,255,255,.14);
  --tile-hl:rgba(255,255,255,.12);
  --promo-g1:rgba(157,143,255,.14);
  --promo-g2:rgba(77,134,255,.10);
  --focus:var(--link);
  --attn-border:rgba(124,163,255,.22);
  --attn-item:rgba(255,255,255,.05);
  --danger-soft:rgba(240,86,106,.14);
  --danger-text:#FF7B8A;
  --ok-soft:rgba(31,169,122,.16);
  --violet-soft:rgba(157,143,255,.16);
  --thumb-g1:#2563EB;
  --thumb-g2:#6D5EF8;
  --faint:#8A94A6;
  --blob-1:rgba(77,134,255,.16);
  --blob-2:rgba(139,124,255,.14);
  --side-bg:rgba(255,255,255,.025);
  --glass:rgba(14,16,20,.86);
  --backdrop:rgba(4,6,10,.62);
  --empty-g1:#12172A;
  --empty-g2:#0E1220;
  --danger-border:rgba(240,86,106,.4);
  --r-xs:8px;
  --r-sm:10px;
  --r-md:14px;
  --r-lg:18px;
  --r-xl:24px;
  --dur-fast:.12s;
  --dur:.18s;
  --dur-slow:.24s;
  --sp-1:4px;
  --sp-2:8px;
  --sp-3:12px;
  --sp-4:16px;
  --sp-5:24px;
  --sp-6:32px;
  --sp-7:40px;
  background: var(--bg);
}
:root[data-theme=light] .app.v2 {
  --bg:#F8FAFF;
  --bg2:#F8FAFF;
  --panel:#FFFFFF;
  --panel2:#F4F6FB;
  --elev:#FBFCFF;
  --ink:#0F172A;
  --muted:#475467;
  --faint:#667085;
  --line:#E7ECF3;
  --line2:#EEF2F7;
  --line-strong:#D9E0EA;
  --accent:#145CFF;
  --accent2:#0F4FE0;
  --accent-text:#0F4FE0;
  --accent-soft:#EAF1FF;
  --accent-border:rgba(20,92,255,.35);
  --link:#145CFF;
  --link-soft:rgba(20,92,255,.10);
  --hover:rgba(20,92,255,.05);
  --selected:rgba(20,92,255,.10);
  --surface-hover:rgba(20,92,255,.05);
  --ok:#067647;
  --ok-dot:#12B76A;
  --danger:#D92D20;
  --violet:#6D5EF8;
  --bar-muted:#98A2B3;
  --chip-bg:#F4F6FB;
  --hero-g2:#EEF3FF;
  --art-bg:#F3F6FF;
  --art-b1:rgba(20,92,255,.28);
  --art-b2:rgba(109,94,248,.26);
  --tile-g:linear-gradient(
      160deg,rgba(255,255,255,.85),rgba(255,255,255,.55));
  --tile-line:rgba(255,255,255,.7);
  --tile-hl:rgba(255,255,255,.8);
  --promo-g1:#F3EEFF;
  --promo-g2:#EAF1FF;
  --focus:var(--accent);
  --attn-border:#DFE8FF;
  --attn-item:rgba(255,255,255,.72);
  --danger-soft:#FEE4E2;
  --danger-text:#B42318;
  --ok-soft:#DCFAE6;
  --violet-soft:#EEEBFF;
  --thumb-g1:#145CFF;
  --thumb-g2:#6D5EF8;
  --blob-1:rgba(20,92,255,.12);
  --blob-2:rgba(109,94,248,.12);
  --side-bg:rgba(15,23,42,.012);
  --glass:rgba(255,255,255,.86);
  --backdrop:rgba(15,23,42,.45);
  --empty-g1:#FFFFFF;
  --empty-g2:#F1F5FF;
  --danger-border:rgba(217,45,32,.35);
  --sh-1:0 1px 2px rgba(16,24,40,.04);
  --sh-2:0 6px 20px rgba(16,24,40,.06);
  --sh-3:0 12px 32px rgba(16,24,40,.08);
  --sh-card:var(--sh-1);
}
.app.v2 .btn {
  border-radius: var(--r-sm);
  font-weight: 700;
}
.app.v2 .btn-primary {
  background: var(--accent);
  box-shadow: var(--sh-1);
}
.app.v2 .btn-primary:hover {
  background: var(--accent2);
  transform: none;
}
.app.v2 .btn-ghost {
  background: var(--panel);
  border-color: var(--line);
  color: var(--ink);
}
.app.v2 .btn-ghost:hover {
  border-color: var(--line-strong);
  color: var(--ink);
  background: var(--hover);
}
.app.v2 .btn-outline {
  background: var(--panel);
  border: 1px solid var(--line-strong);
  color: var(--ink);
}
.app.v2 .btn-outline:hover {
  border-color: var(--accent-border);
  color: var(--accent-text);
}
.app.v2 .btn:disabled,
.app.v2 [aria-disabled=true] {
  opacity: .5;
  cursor: not-allowed;
  box-shadow: none;
}
.app.v2 .btn:disabled:hover {
  transform: none;
  background: inherit;
}
.app.v2 .btn:focus-visible,
.app.v2 .nav button:focus-visible,
.app.v2 .tabbar button:focus-visible,
.app.v2 .segtabs button:focus-visible,
.app.v2 .rail-card.qa button:focus-visible,
.app.v2 .menu .mi:focus-visible,
.app.v2 .avatar:focus-visible,
.app.v2 .hv2-link:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}
.app.v2 .menu .mi:focus-visible,
.app.v2 .rail-card.qa button:focus-visible {
  outline-offset: -2px;
}
.app.v2 input:focus,
.app.v2 select:focus,
.app.v2 textarea:focus {
  border-color: var(--accent-border);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.app.v2 .live-badge {
  color: var(--danger);
}
.app.v2 .side {
  background: var(--panel2);
  padding: 20px 14px;
}
.app.v2 .side .brand {
  font-size: 16px;
  padding-bottom: 2px;
}
.app.v2 .tagline {
  font-size: 11.5px;
  color: var(--faint);
  padding: 0 8px 14px 44px;
}
.app.v2 .nav button {
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 9px 11px;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
}
.app.v2 .nav button:hover {
  background: var(--hover);
  color: var(--ink);
}
.app.v2 .nav button.active {
  background: var(--selected);
  color: var(--accent-text);
  border-color: var(--accent-border);
  box-shadow: none;
  font-weight: 700;
}
.app.v2 .side .foot {
  gap: 10px;
}
.app.v2 .usercard {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  min-width: 0;
}
.app.v2 .usercard .av,
.app.v2 .avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-text);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 13px;
  flex: none;
}
.app.v2 .usercard .uc-txt {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.app.v2 .usercard b {
  font-size: 13.5px;
  line-height: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.app.v2 .usercard span {
  font-size: 12px;
  line-height: 16px;
  color: var(--faint);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.app.v2 .topbar {
  height: 56px;
  padding: 0 24px;
  border-bottom: 1px solid var(--line2);
}
:root[data-theme=light] .app.v2 .topbar {
  background: rgba(247, 248, 252, .86);
}
.app.v2 .topbar .crumb {
  font-size: 13px;
  line-height: 18px;
  color: var(--muted);
  font-weight: 700;
}
.app.v2 .topbar .crumb .sep {
  color: var(--faint);
  margin: 0 6px;
  font-weight: 400;
}
.app.v2 .avatar {
  border: 1px solid var(--line);
  cursor: pointer;
  margin-left: auto;
}
.app.v2 .avatar:hover {
  border-color: var(--accent-border);
}
.app.v2 .content {
  padding: 24px 32px 64px;
}
.app.v2 .content.wide {
  max-width: 1280px;
}
.app.v2 .mv2-head {
  align-items: flex-start;
  margin: 0 0 24px;
}
.app.v2 .mv2-head h1 {
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
  letter-spacing: -.02em;
}
.app.v2 .mv2-head .sub {
  color: var(--muted);
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 22px;
}
.app.v2 .split {
  display: inline-flex;
  flex: none;
}
.app.v2 .split .split-main {
  border-radius: var(--r-sm) 0 0 var(--r-sm);
  padding: 9px 16px;
}
.app.v2 .split .chev {
  width: 36px;
  padding: 0;
  justify-content: center;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  border-left: 1px solid rgba(255, 255, 255, .28);
}
.app.v2 .mv2-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 24px;
}
.app.v2 .tabbar.seg {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  overflow: visible;
  margin: 0;
  box-shadow: var(--sh-1);
}
.app.v2 .tabbar.seg button {
  border: 0;
  border-radius: 999px;
  padding: 7px 14px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  font-size: 13.5px;
  line-height: 18px;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.app.v2 .tabbar.seg button:hover {
  background: var(--hover);
  color: var(--ink);
}
.app.v2 .tabbar.seg button.active {
  background: var(--accent);
  color: var(--accent-ink);
  border-bottom-color: transparent;
}
.app.v2 .lf {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 0;
}
.app.v2 .lf svg {
  position: absolute;
  left: 12px;
  color: var(--faint);
  pointer-events: none;
}
.app.v2 .listfilter {
  height: 36px;
  max-width: none;
  width: 240px;
  padding: 0 12px 0 34px;
  border-radius: var(--r-sm);
  background: var(--panel);
  font-size: 13px;
}
.app.v2 .mv2-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  align-items: start;
}
.app.v2 .hero-pmi {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(220px, 2fr);
  gap: 24px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background:
    linear-gradient(
      135deg,
      var(--panel) 0%,
      var(--hero-g2) 100%);
  box-shadow: var(--sh-2);
}
.app.v2 .hero-pmi.skel {
  min-height: 220px;
}
.app.v2 .hero-pmi .eyebrow {
  color: var(--faint);
  margin-bottom: 8px;
}
.app.v2 .hero-pmi h2 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
  letter-spacing: -.015em;
}
.app.v2 .hero-pmi .status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  color: var(--ok);
  font-weight: 700;
  font-size: 13px;
  line-height: 18px;
}
.app.v2 .hero-pmi .status .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok-dot);
  display: inline-block;
}
.app.v2 .hero-pmi .status .live-badge {
  margin: 0;
}
.app.v2 .hero-pmi .sub {
  color: var(--muted);
  margin: 10px 0 16px;
  font-size: 14px;
  line-height: 22px;
  max-width: 52ch;
}
.app.v2 .linkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 12px;
  padding: 0 4px 0 12px;
  font-family: var(--mono);
  font-size: 13px;
  max-width: 460px;
}
.app.v2 .linkbox .url {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--ink);
}
.app.v2 .linkbox .btn-ico {
  width: 32px;
  height: 32px;
  border-color: transparent;
  background: transparent;
}
.app.v2 .hero-pmi .acts {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
  align-items: center;
}
.app.v2 .hero-pmi .acts .btn-danger {
  margin-left: 6px;
}
.app.v2 .hero-art {
  position: relative;
  isolation: isolate;
  min-height: 220px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--art-bg);
}
.app.v2 .hero-art::before,
.app.v2 .hero-art::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
  z-index: -1;
}
.app.v2 .hero-art::before {
  width: 240px;
  height: 240px;
  right: -40px;
  top: -60px;
  background: var(--art-b1);
}
.app.v2 .hero-art::after {
  width: 200px;
  height: 200px;
  left: -30px;
  bottom: -50px;
  background: var(--art-b2);
}
.app.v2 .hero-art .tile {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  border-radius: 26px;
  background: var(--tile-g);
  border: 1px solid var(--tile-line);
  backdrop-filter: blur(10px) saturate(1.4);
  -webkit-backdrop-filter: blur(10px) saturate(1.4);
  box-shadow: var(--sh-3), inset 0 1px 0 var(--tile-hl);
  display: grid;
  place-items: center;
  color: var(--accent-text);
}
@media (prefers-reduced-motion: no-preference) {
  .app.v2 .hero-art .tile {
    animation: mv2float 6s ease-in-out infinite;
  }
}
@keyframes mv2float {
  0%, 100% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(-50%, calc(-50% - 6px));
  }
}
.app.v2 .mv2-listhead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 32px 0 16px;
  border-bottom: 1px solid var(--line2);
}
.app.v2 .segtabs {
  display: flex;
}
.app.v2 .segtabs button {
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 8px 2px 10px;
  margin: 0 20px -1px 0;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.app.v2 .segtabs button:hover {
  color: var(--ink);
}
.app.v2 .segtabs button.active {
  color: var(--ink);
  border-bottom-color: var(--accent);
}
.app.v2 .mv2-group {
  margin-bottom: 24px;
}
.app.v2 .mv2-group h3 {
  font-size: 15px;
  line-height: 22px;
  font-weight: 700;
  margin: 0 0 8px;
}
.app.v2 .rowitem {
  border-radius: var(--r-md);
}
.app.v2 .mv2-row {
  position: relative;
  padding: 14px 16px 14px 20px;
  border-radius: var(--r-md);
  gap: 16px;
  --bar:var(--bar-muted);
}
.app.v2 .mv2-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--bar);
}
.app.v2 .mv2-row.tone-live {
  --bar:var(--ok-dot);
}
.app.v2 .mv2-row.tone-webinar {
  --bar:var(--violet);
}
.app.v2 .mv2-row.tone-e2ee {
  --bar:var(--ink);
}
.app.v2 .mv2-row.tone-sched {
  --bar:var(--accent);
}
.app.v2 .mv2-row:hover {
  border-color: var(--line-strong);
  background: var(--hover);
  box-shadow: var(--sh-2);
}
.app.v2 .mv2-row .when {
  width: 96px;
  flex: none;
  display: flex;
  flex-direction: column;
}
.app.v2 .mv2-row .when b {
  font-size: 15px;
  line-height: 22px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.app.v2 .mv2-row .when span {
  font-size: 12px;
  line-height: 18px;
  color: var(--faint);
}
.app.v2 .mv2-row .body {
  flex: 1 1 220px;
  min-width: 0;
}
.app.v2 .mv2-row .title {
  font-size: 15px;
  line-height: 22px;
  font-weight: 700;
}
.app.v2 .mv2-row .meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
  margin-top: 2px;
}
.app.v2 .rid {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--faint);
}
.app.v2 .chip {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--chip-bg);
  border: 1px solid var(--line);
  color: var(--muted);
}
.app.v2 .mv2-row .actions .btn-primary,
.app.v2 .mv2-row .actions .btn-outline {
  padding: 7px 14px;
  font-size: 13px;
  height: 34px;
}
.app.v2 .rowitem .actions .btn-ghost {
  background: transparent;
  border-color: transparent;
  color: var(--faint);
}
.app.v2 .rowitem .actions .btn-ghost:hover {
  background: var(--hover);
  border-color: var(--line);
  color: var(--ink);
}
.app.v2 .menuwrap {
  position: relative;
  display: inline-flex;
}
.app.v2 .menu {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  min-width: 220px;
  z-index: 30;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-3);
  padding: 6px;
  animation: mv2menu var(--dur-fast) var(--ease);
}
.app.v2 .menu.up {
  top: auto;
  bottom: calc(100% + 6px);
}
@keyframes mv2menu {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
}
.app.v2 .menu .mi {
  display: flex;
  gap: 10px;
  align-items: center;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: var(--r-sm);
  padding: 9px 10px;
  color: var(--ink);
  font-weight: 400;
  font-size: 13.5px;
  line-height: 20px;
  white-space: nowrap;
}
.app.v2 .menu .mi svg {
  color: var(--faint);
}
.app.v2 .menu .mi:hover,
.app.v2 .menu .mi:focus-visible {
  background: var(--hover);
}
.app.v2 .menu .mi-grp {
  border-top: 1px solid var(--line);
  margin-top: 4px;
  padding-top: 4px;
}
.app.v2 .menu .mi.danger,
.app.v2 .menu .mi.danger svg {
  color: var(--danger);
}
.app.v2 .menu .mi.danger:hover {
  background: var(--accent-soft);
}
.app.v2 .btn-ico[aria-expanded=true] {
  background: var(--selected);
  color: var(--accent-text);
}
.app.v2 .rail-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--panel);
  box-shadow: var(--sh-1);
  margin-bottom: 16px;
}
.app.v2 .rail-card h3 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}
.app.v2 .rail-card p {
  margin: 6px 0 0;
  font-size: 13.5px;
  line-height: 20px;
  color: var(--muted);
}
.app.v2 .rail-card .bul {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13.5px;
  line-height: 20px;
  margin-top: 12px;
}
.app.v2 .rail-card .ic {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--accent-soft);
  color: var(--accent-text);
  display: grid;
  place-items: center;
  flex: none;
}
.app.v2 .rail-card.qa button {
  display: flex;
  gap: 10px;
  align-items: center;
  width: 100%;
  height: 40px;
  background: transparent;
  border: 0;
  padding: 0 6px;
  margin-top: 4px;
  border-radius: var(--r-sm);
  color: var(--ink);
  font-weight: 400;
  font-size: 13.5px;
  text-align: left;
}
.app.v2 .rail-card.qa button:hover {
  background: var(--hover);
}
.app.v2 .rail-card.promo {
  background:
    linear-gradient(
      135deg,
      var(--promo-g1),
      var(--promo-g2));
  border-color: transparent;
}
.app.v2 .rail-card.promo .promo-h {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--accent-text);
}
.app.v2 .rail-card.promo a {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-text);
}
.app.v2 .rail-card.quote {
  color: var(--ink);
}
.app.v2 .rail-card.quote .ic {
  margin-bottom: 10px;
}
.app.v2 .rail-card.quote p {
  font-size: 13.5px;
  line-height: 21px;
  color: var(--ink);
}
.app.v2 .rail-card.quote .who {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  color: var(--faint);
}
.app.v2 .mv2-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--r-lg);
  padding: 40px 24px;
  box-shadow: var(--sh-1);
  color: var(--muted);
}
.app.v2 .mv2-empty .ic {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-text);
  display: grid;
  place-items: center;
  margin-bottom: 4px;
}
.app.v2 .mv2-empty b {
  font-size: 15px;
  line-height: 22px;
  color: var(--ink);
}
.app.v2 .mv2-empty .btn {
  margin-top: 10px;
}
.app.v2 .empty {
  border-style: solid;
  border-radius: var(--r-lg);
  background: var(--panel);
}
.app.v2 .skel-row {
  height: 72px;
  border-radius: var(--r-md);
  background: var(--panel);
  border: 1px solid var(--line2);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}
.app.v2 .sk {
  display: block;
  height: 12px;
  border-radius: 6px;
  background:
    linear-gradient(
      90deg,
      var(--line2),
      var(--line) 50%,
      var(--line2));
  background-size: 200% 100%;
  animation: mv2sheen 1.4s linear infinite;
}
.app.v2 .sk.w1 {
  width: 38%;
}
.app.v2 .sk.w2 {
  width: 62%;
}
.app.v2 .sk.w3 {
  width: 24%;
}
@keyframes mv2sheen {
  to {
    background-position: -200% 0;
  }
}
.app.v2 .sr {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
@media (max-width: 1200px) {
  .app.v2 .hero-art .tile {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 1024px) {
  .app.v2 .mv2-grid {
    grid-template-columns: 1fr;
  }
  .app.v2 .mv2-rail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .app.v2 .rail-card {
    margin-bottom: 0;
  }
  .app.v2 .hero-pmi {
    padding: 24px;
  }
}
@media (max-width: 900px) {
  .app.v2 .hero-pmi {
    grid-template-columns: 1fr;
  }
  .app.v2 .hero-art {
    display: none;
  }
}
@media (max-width: 760px) {
  .app.v2 .mv2-rail {
    grid-template-columns: 1fr;
  }
  .app.v2 .hero-pmi {
    padding: 20px;
  }
  .app.v2 .mv2-head h1 {
    font-size: 24px;
    line-height: 32px;
  }
  .app.v2 .mv2-toolbar {
    flex-wrap: wrap;
  }
  .app.v2 .listfilter {
    width: 100%;
  }
  .app.v2 .lf {
    width: 100%;
  }
  .app.v2 .content {
    padding: 16px 14px calc(80px + env(safe-area-inset-bottom));
  }
}
@media (max-width: 600px) {
  .app.v2 .mv2-row {
    display: grid;
    grid-template-areas: "when" "body" "acts";
    gap: 8px;
  }
  .app.v2 .mv2-row .when {
    width: auto;
    flex-direction: row;
    gap: 6px;
    align-items: baseline;
  }
  .app.v2 .mv2-row .actions {
    grid-area: acts;
    width: 100%;
  }
  .app.v2 .mv2-row .actions .btn-primary,
  .app.v2 .mv2-row .actions .btn-outline {
    flex: 1;
  }
}
.app.v2 .hv2 {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.app.v2 .hv2 p {
  margin: 0;
}
.app.v2 .hv2-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.app.v2 .hv2-head h1 {
  font-size: 30px;
  line-height: 38px;
  font-weight: 700;
  letter-spacing: -.4px;
}
.app.v2 .hv2-head .sub {
  margin: 4px 0 0;
  font-size: 15px;
  line-height: 22px;
  color: var(--muted);
}
.app.v2 .hv2-head-r {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.app.v2 .hv2-date {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--panel);
  box-shadow: var(--sh-1);
}
.app.v2 .hv2-date .ic {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--accent-soft);
  color: var(--accent-text);
  display: grid;
  place-items: center;
  flex: none;
}
.app.v2 .hv2-date time {
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
  white-space: nowrap;
}
.app.v2 .hv2-row {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(320px, 2fr);
  gap: 24px;
  align-items: stretch;
}
.app.v2 .hv2-card {
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  box-shadow: var(--sh-1);
  min-width: 0;
}
.app.v2 .hv2-card.hv2-attn {
  background:
    linear-gradient(
      135deg,
      var(--promo-g1),
      var(--promo-g2));
  border-color: var(--attn-border);
}
.app.v2 .hv2-sec-h {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 14px;
}
.app.v2 .hv2-sec-h h2 {
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
}
.app.v2 .hv2-sec-h p {
  margin: 2px 0 0;
  font-size: 13px;
  line-height: 18px;
  color: var(--muted);
}
.app.v2 .hv2-link {
  background: transparent;
  border: 0;
  padding: 0;
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
  color: var(--accent-text);
  border-radius: 4px;
  white-space: nowrap;
  transition: color var(--dur-fast);
}
.app.v2 .hv2-link:hover {
  color: var(--accent2);
  text-decoration: underline;
}
.app.v2 .hv2-card .mv2-empty {
  background: transparent;
  box-shadow: none;
  border-style: dashed;
  border-radius: var(--r-md);
  padding: 28px 16px;
}
.app.v2 .hv2-today-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 64px;
  padding: 12px 16px 12px 20px;
  border: 1px solid var(--line2);
  border-radius: var(--r-md);
  --bar:var(--accent);
  transition: background var(--dur-fast), border-color var(--dur-fast);
}
.app.v2 .hv2-today-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--bar);
}
.app.v2 .hv2-today-row.live {
  --bar:var(--ok-dot);
  border-color: var(--accent-border);
}
.app.v2 .hv2-today-row[data-kind=webinar] {
  --bar:var(--violet);
}
.app.v2 .hv2-today-row + .hv2-today-row {
  margin-top: 8px;
}
.app.v2 .hv2-today-row:hover {
  background: var(--hover);
  border-color: var(--line);
}
.app.v2 .hv2-today-row .when {
  width: 88px;
  flex: none;
  display: flex;
  flex-direction: column;
}
.app.v2 .hv2-today-row .when b {
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.app.v2 .hv2-today-row .when span {
  font-size: 12px;
  line-height: 18px;
  color: var(--accent-text);
  font-weight: 700;
}
.app.v2 .hv2-today-row .when span.now {
  color: var(--ok);
}
.app.v2 .hv2-today-row .body {
  flex: 1 1 174px;
  min-width: 0;
}
.app.v2 .hv2-today-row .title {
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.app.v2 .hv2-today-row .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 6px;
  margin-top: 4px;
}
.app.v2 .chip.live {
  background: var(--danger-soft);
  border-color: transparent;
  color: var(--danger-text);
}
.app.v2 .hv2-today-row .actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: none;
}
.app.v2 .hv2-today-row .actions .btn-primary,
.app.v2 .hv2-today-row .actions .btn-outline {
  padding: 7px 14px;
  font-size: 13px;
  height: 34px;
}
.app.v2 .hv2-today-row .actions .btn-ghost {
  background: transparent;
  border-color: transparent;
  color: var(--faint);
}
.app.v2 .hv2-today-row .actions .btn-ghost:hover {
  background: var(--hover);
  border-color: var(--line);
  color: var(--ink);
}
.app.v2 .hv2-join {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line2);
}
.app.v2 .hv2-join .lbl {
  font-size: 12px;
  line-height: 18px;
  color: var(--faint);
  white-space: nowrap;
}
.app.v2 .hv2-join input {
  flex: 1;
  min-width: 0;
  height: 36px;
  padding: 0 12px;
  font-size: 13px;
  border-radius: var(--r-sm);
}
.app.v2 .hv2-join .btn {
  height: 36px;
  padding: 0 14px;
  font-size: 13px;
}
.app.v2 .hv2-join-err {
  color: var(--danger);
  font-size: 12.5px;
  line-height: 18px;
  margin: 6px 0 0;
}
.app.v2 .hv2-join-err:empty {
  display: none;
}
.app.v2 .hv2-attn-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--attn-item);
  border: 1px solid var(--line);
  transition: border-color var(--dur-fast);
}
.app.v2 .hv2-attn-item + .hv2-attn-item {
  margin-top: 8px;
}
.app.v2 .hv2-attn-item:hover {
  border-color: var(--line-strong);
}
.app.v2 .hv2-attn-item .ic {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex: none;
  background: var(--accent-soft);
  color: var(--accent-text);
}
.app.v2 .hv2-attn-item.tone-violet .ic {
  background: var(--violet-soft);
  color: var(--violet);
}
.app.v2 .hv2-attn-item.tone-ok .ic {
  background: var(--ok-soft);
  color: var(--ok);
}
.app.v2 .hv2-attn-item.tone-danger .ic {
  background: var(--danger-soft);
  color: var(--danger);
}
.app.v2 .hv2-attn-item .txt {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.app.v2 .hv2-attn-item b {
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
}
.app.v2 .hv2-attn-item span {
  font-size: 12px;
  line-height: 18px;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.app.v2 .hv2-attn-item .btn {
  padding: 6px 12px;
  font-size: 13px;
  height: 32px;
  flex: none;
}
.app.v2 .hv2-out-row {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  padding: 12px 14px;
  border: 1px solid var(--line2);
  border-radius: var(--r-md);
  transition: background var(--dur-fast), border-color var(--dur-fast);
}
.app.v2 .hv2-out-row + .hv2-out-row {
  margin-top: 8px;
}
.app.v2 .hv2-out-row:hover {
  background: var(--hover);
  border-color: var(--line);
}
.app.v2 .hv2-out-row .thumb {
  width: 72px;
  height: 52px;
  flex: none;
  border-radius: 10px;
  background:
    linear-gradient(
      135deg,
      var(--thumb-g1),
      var(--thumb-g2));
  color: var(--accent-ink);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.app.v2 .hv2-out-row .body {
  flex: 1;
  min-width: 0;
}
.app.v2 .hv2-out-row .title {
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.app.v2 .hv2-out-row .meta {
  font-size: 12px;
  line-height: 18px;
  color: var(--muted);
}
.app.v2 .hv2-out-row .badges {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 6px;
  margin-top: 6px;
}
.app.v2 .hv2-out-row .btn {
  padding: 7px 14px;
  font-size: 13px;
  height: 34px;
  flex: none;
}
.app.v2 .hv2-kpis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.app.v2 .hv2-kpi {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-height: 110px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--panel2);
}
.app.v2 .hv2-kpi .ic {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--accent-soft);
  color: var(--accent-text);
  display: grid;
  place-items: center;
  margin-bottom: 8px;
}
.app.v2 .hv2-kpi .n {
  font-size: 28px;
  line-height: 34px;
  font-weight: 700;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.app.v2 .hv2-kpi .n small {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  margin-left: 2px;
}
.app.v2 .hv2-kpi .l {
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
}
.app.v2 .hv2-kpi .c {
  font-size: 12px;
  line-height: 18px;
  color: var(--muted);
}
.app.v2 .hv2-act-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px 16px;
}
.app.v2 .hv2-act {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 4px;
  min-width: 0;
}
.app.v2 .hv2-act .ic {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--chip-bg);
  border: 1px solid var(--line);
  color: var(--muted);
  display: grid;
  place-items: center;
  flex: none;
}
.app.v2 .hv2-act .txt {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.app.v2 .hv2-act b {
  font-size: 13.5px;
  line-height: 18px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.app.v2 .hv2-act span {
  font-size: 12px;
  line-height: 18px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.app.v2 .hv2-act em {
  font-style: normal;
  font-size: 12px;
  line-height: 18px;
  color: var(--muted);
  flex: none;
}
.app.v2 .hv2-quiet {
  font-size: 14px;
  line-height: 21px;
  color: var(--muted);
}
@media (min-width: 901px) {
  .app.v2 .hv2-act + .hv2-act {
    border-left: 1px solid var(--line2);
    padding-left: 16px;
  }
}
@media (max-width: 1200px) {
  .app.v2 .hv2,
  .app.v2 .hv2-row {
    gap: 20px;
  }
}
@media (max-width: 1024px) {
  .app.v2 .hv2-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .app.v2 .hv2-act-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .app.v2 .hv2-act:nth-child(even) {
    border-left: 1px solid var(--line2);
    padding-left: 16px;
  }
}
@media (max-width: 760px) {
  .app.v2 .hv2-head h1 {
    font-size: 24px;
    line-height: 32px;
  }
  .app.v2 .hv2-head-r {
    width: 100%;
    justify-content: space-between;
  }
  .app.v2 .hv2-card {
    padding: 16px;
  }
}
@media (max-width: 600px) {
  .app.v2 .hv2-today-row {
    display: grid;
    grid-template-areas: "when" "body" "acts";
    gap: 8px;
  }
  .app.v2 .hv2-today-row .when {
    width: auto;
    flex-direction: row;
    gap: 8px;
    align-items: baseline;
  }
  .app.v2 .hv2-today-row .actions {
    grid-area: acts;
    width: 100%;
  }
  .app.v2 .hv2-today-row .actions .btn-primary,
  .app.v2 .hv2-today-row .actions .btn-outline {
    flex: 1;
  }
  .app.v2 .hv2-out-row {
    flex-wrap: wrap;
  }
  .app.v2 .hv2-out-row .btn {
    margin-left: auto;
  }
  .app.v2 .hv2-kpis,
  .app.v2 .hv2-act-grid {
    grid-template-columns: 1fr;
  }
  .app.v2 .hv2-act {
    border-left: 0 !important;
    padding-left: 4px !important;
  }
  .app.v2 .hv2-join {
    flex-wrap: wrap;
  }
  .app.v2 .hv2-join input {
    flex-basis: 100%;
  }
}
.app.v2 {
  background: transparent;
  isolation: isolate;
}
.app.v2::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(
      640px 640px at 2% 104%,
      var(--blob-1),
      transparent 70%),
    radial-gradient(
      560px 560px at 101% 46%,
      var(--blob-2),
      transparent 70%),
    var(--bg);
}
.app.v2 .side {
  background: var(--side-bg);
  border-right: 1px solid var(--line);
}
.app.v2 .nav button.active {
  border-color: transparent;
  box-shadow: inset 3px 0 0 var(--accent);
}
.app.v2 .navlabel {
  font-size: 11px;
  line-height: 16px;
  letter-spacing: .08em;
  font-weight: 700;
  color: var(--faint);
  padding: 8px 10px 4px;
}
.app.v2 .topbar:has(> h1),
:root[data-theme=light] .app.v2 .topbar:has(> h1) {
  position: static;
  height: auto;
  min-height: 0;
  padding: 24px 32px 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  flex-wrap: wrap;
  row-gap: 0;
}
.app.v2 .topbar:has(> h1) > .avatar,
.topbar:has(> h1) > .themetog,
.app.v2 .topbar:has(> h1) > .topbrand {
  order: -1;
}
.app.v2 .topbar > h1 {
  flex: 0 0 100%;
  margin: 36px 0 0;
  font-size: 30px;
  line-height: 38px;
  font-weight: 700;
  letter-spacing: -.4px;
}
.app.v2 .main:has(> .topbar > h1) > .content {
  padding-top: 8px;
  max-width: 1280px;
}
.app.v2 .content > p.muted[style] {
  margin: -4px 0 6px !important;
  font-size: 15px !important;
  line-height: 22px;
}
.app.v2 .content > div:has(> .sec-h[style*=flex-end] + p.muted) {
  display: flex;
  flex-direction: column;
  position: relative;
}
.app.v2 .content > div > .sec-h[style*=flex-end] + p.muted {
  order: -1;
  margin: -4px 0 24px !important;
  padding-right: 56px;
  font-size: 15px !important;
  line-height: 22px;
}
.app.v2 .content > div:not(.card) > .sec-h > h3,
.app.v2 .content.wide > div > div > .sec-h > h3 {
  font-size: 15px;
  line-height: 22px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0;
}
.app.v2 .content > div:not(.card) > .sec-h > h3:has(> a) {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  color: var(--ink);
}
.app.v2 .sec-h[style*=flex-end] {
  height: 0;
  margin: 0;
  overflow: visible;
}
.app.v2 .sec-h[style*=flex-end] .btn-ico {
  position: absolute;
  right: 0;
  top: -51px;
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--sh-2);
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
}
.app.v2 .sec-h[style*=flex-end] .btn-ico:hover {
  border-color: var(--line-strong);
  background: var(--hover);
  color: var(--accent-text);
}
.app.v2 .sec-h:not(.mv2-head) {
  margin: 0 0 12px;
}
.app.v2 .sec-h h3 {
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
}
.app.v2 .card,
.app.v2 .acard {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  box-shadow: var(--sh-1);
}
.app.v2 .content > .card[style*=margin-top] {
  margin-top: 0 !important;
}
.app.v2 .card > h3,
.app.v2 .card .sec-h h3,
.app.v2 .modal-card h3 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}
.app.v2 .card > h3 + label,
.app.v2 .mform-body > label:first-child {
  margin-top: 10px;
}
.app.v2 .acard .sec-h strong {
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
}
.app.v2 .grid2 {
  gap: 16px;
}
.app.v2 .rowitem {
  border-radius: var(--r-md);
  border-color: var(--line);
  background: var(--panel);
}
.app.v2 .rowitem:not(.mv2-row) {
  padding: 14px 16px;
  box-shadow: var(--sh-1);
}
.app.v2 .rowitem:hover {
  background: var(--hover);
  border-color: var(--line-strong);
}
.app.v2 .rowitem:not(.mv2-row) .title {
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
}
.app.v2 .rowitem:not(.mv2-row) .meta {
  font-size: 12.5px;
  line-height: 18px;
  color: var(--muted);
  margin-top: 2px;
}
.app.v2 .rowitem .actions .btn-primary,
.app.v2 .rowitem .actions .btn-danger:not(.btn-ico),
.app.v2 .rowitem > .btn {
  height: 34px;
}
.app.v2 .rowitem > .btn {
  flex: none;
  margin-left: auto;
}
.app.v2 .btn-danger {
  background: var(--panel);
  border: 1px solid var(--danger-border);
  color: var(--danger-text);
}
.app.v2 .btn-danger:hover {
  background: var(--danger-soft);
}
.app.v2 .pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--chip-bg);
  border: 1px solid var(--line);
  color: var(--muted);
}
.app.v2 .pill.ok {
  background: var(--ok-soft);
  border-color: transparent;
  color: var(--ok);
}
.app.v2 .pill.err {
  background: var(--danger-soft);
  border-color: transparent;
  color: var(--danger-text);
}
.app.v2 .badge-ok {
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  color: var(--ok);
  background: var(--ok-soft);
  border: 1px solid transparent;
}
.app.v2 .secret {
  background: var(--panel2);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  border-radius: var(--r-md);
  padding: 12px 14px;
  font-size: 12.5px;
  line-height: 18px;
}
.app.v2 code:not(.rid) {
  font-family: var(--mono);
  font-size: .9em;
  background: var(--chip-bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1px 5px;
}
.app.v2 .content > div:has(> .sec-h[style*=flex-end] + p.muted) > .empty,
.app.v2 .content.wide > div > div > .empty,
.app.v2 .content > div:not(.card):not(.acard):not(:has(> .tabbar)) > .empty {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
  color: var(--ink);
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  min-height: 200px;
  padding: 60px 24px;
  background:
    radial-gradient(
      480px 480px at 8% 110%,
      var(--blob-1),
      transparent 70%),
    radial-gradient(
      520px 520px at 94% -12%,
      var(--blob-2),
      transparent 70%),
    linear-gradient(
      180deg,
      var(--empty-g1),
      var(--empty-g2));
}
.app.v2 .content > div:has(> .sec-h[style*=flex-end] + p.muted) > .empty,
.app.v2 .content.wide > div > div > .empty {
  min-height: 376px;
  padding: 252px 24px 96px;
  background:
    linear-gradient(var(--accent), var(--accent)) calc(50% - 104px) 100px/12px 2px no-repeat,
    linear-gradient(var(--accent), var(--accent)) calc(50% - 104px) 95px/2px 12px no-repeat,
    linear-gradient(var(--accent), var(--accent)) calc(50% + 108px) 210px/10px 2px no-repeat,
    linear-gradient(var(--accent), var(--accent)) calc(50% + 108px) 206px/2px 10px no-repeat,
    radial-gradient(
      circle,
      var(--accent-border) 3px,
      transparent 3.5px) calc(50% + 100px) 88px/8px 8px no-repeat,
    radial-gradient(
      circle,
      var(--accent-border) 2.5px,
      transparent 3px) calc(50% - 96px) 214px/6px 6px no-repeat,
    radial-gradient(
      circle,
      var(--accent-border) 2px,
      transparent 2.5px) calc(50% + 124px) 150px/5px 5px no-repeat,
    radial-gradient(
      480px 480px at 8% 110%,
      var(--blob-1),
      transparent 70%),
    radial-gradient(
      520px 520px at 94% -12%,
      var(--blob-2),
      transparent 70%),
    linear-gradient(
      180deg,
      var(--empty-g1),
      var(--empty-g2));
}
.app.v2 .content > div:has(> .sec-h[style*=flex-end] + p.muted) > .empty::before,
.app.v2 .content.wide > div > div > .empty::before {
  content: "";
  position: absolute;
  box-sizing: border-box;
  left: 50%;
  top: 94px;
  width: 132px;
  height: 132px;
  margin-left: -66px;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--sh-2);
  background:
    radial-gradient(
      circle at 50% 46px,
      var(--accent) 24px,
      transparent 25px),
    linear-gradient(var(--bar-muted), var(--bar-muted)) 50% 86px/64px 8px no-repeat,
    linear-gradient(var(--line-strong), var(--line-strong)) 50% 102px/44px 8px no-repeat,
    var(--tile-g);
  background-color: var(--panel);
}
.app.v2 .content > div:has(> .sec-h[style*=flex-end] + p.muted) > .empty::after,
.app.v2 .content.wide > div > div > .empty::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 133px;
  margin-left: -6px;
  width: 14px;
  height: 16px;
  background: var(--accent-ink);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media (prefers-reduced-motion: no-preference) {
  .app.v2 .content > div:has(> .sec-h[style*=flex-end] + p.muted) > .empty::before,
  .app.v2 .content > div:has(> .sec-h[style*=flex-end] + p.muted) > .empty::after,
  .app.v2 .content.wide > div > div > .empty::before,
  .app.v2 .content.wide > div > div > .empty::after {
    animation: v2float 5s ease-in-out infinite;
  }
}
@keyframes v2float {
  50% {
    transform: translateY(-5px);
  }
}
.app.v2 .content > div:has(> .tabbar) > .empty,
.app.v2 .card .empty,
.app.v2 .acard .empty,
.app.v2 .grid2 > div > .empty {
  padding: 14px;
  font-size: 13px;
  line-height: 20px;
  font-weight: 400;
  color: var(--muted);
  border-style: dashed;
  border-radius: var(--r-md);
  background: transparent;
  box-shadow: none;
  min-height: 0;
}
.app.v2 .tabbar {
  display: flex;
  width: max-content;
  max-width: 100%;
  flex-wrap: wrap;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  overflow: visible;
  margin: 0 0 16px;
  box-shadow: var(--sh-1);
}
.app.v2 .content > .tabbar {
  margin-bottom: 0;
}
.app.v2 .tabbar button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  border-bottom: 0;
  border-radius: 999px;
  padding: 7px 14px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  font-size: 13.5px;
  line-height: 18px;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.app.v2 .tabbar button:hover {
  background: var(--hover);
  color: var(--ink);
}
.app.v2 .tabbar button.active {
  background: var(--accent);
  color: var(--accent-ink);
}
.app.v2 .kpis {
  gap: 12px;
  margin-bottom: 12px;
}
.app.v2 .kpi {
  padding: 14px 16px;
  gap: 2px;
  min-height: 96px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--sh-1);
}
.app.v2 .kpi-n {
  font-size: 28px;
  line-height: 34px;
  font-weight: 700;
  letter-spacing: -.02em;
}
.app.v2 .kpi-n small {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  margin-left: 2px;
}
.app.v2 .kpi-l {
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: var(--ink);
}
.app.v2 .kpi-l em,
.app.v2 .kpi-act li em {
  font-weight: 400;
  color: var(--muted);
}
.app.v2 .kpi-act li {
  font-size: 12.5px;
  line-height: 18px;
}
.app.v2 .spark {
  margin-top: 10px;
}
.app.v2 .spark rect {
  fill: var(--accent);
}
.app.v2 .bylist {
  gap: 8px;
  margin-top: 10px;
}
.app.v2 .byrow {
  font-size: 13.5px;
  line-height: 20px;
}
.app.v2 .atable {
  font-size: 13.5px;
}
.app.v2 .atable th {
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--panel2);
  padding: 12px 16px;
}
.app.v2 .atable td {
  padding: 12px 16px;
  line-height: 20px;
}
.app.v2 .usebar {
  height: 8px;
  border-radius: 999px;
  background: var(--line2);
}
.app.v2 .usebar-fill {
  border-radius: 999px;
  background: var(--accent);
}
.app.v2 :where(input:not([type=checkbox], [type=radio], [type=file]), select) {
  height: 40px;
  padding: 0 12px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 14px;
  color: var(--ink);
}
.app.v2 :where(textarea) {
  padding: 10px 12px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 14px;
  color: var(--ink);
  resize: vertical;
}
.app.v2 input[readonly] {
  background: var(--panel2);
  color: var(--muted);
}
.app.v2 label:not(.lf):not(:has(input)) {
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 14px 0 6px;
}
.app.v2 .sec-h label:has(input) {
  white-space: nowrap;
}
.app.v2 .toast {
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 3px solid var(--ok);
  border-radius: var(--r-md);
  box-shadow: var(--sh-3);
  padding: 12px 16px;
  font-size: 13.5px;
  line-height: 20px;
  color: var(--ink);
}
.app.v2 .toast.err {
  border-left-color: var(--danger);
}
.app.v2 .modal-backdrop,
.app.v2 .mobmore-back {
  background: var(--backdrop);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.app.v2 .modal-card {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-3);
}
.app.v2 .modal-card:has(> .mform-head) {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.app.v2 .modal-card > .mform-head,
.app.v2 #meeting-modal .mform-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}
.app.v2 .modal-card > .mform-head h3 {
  font-weight: 700 !important;
}
.app.v2 .modal-card > .mform-body,
.app.v2 #meeting-modal .mform-body {
  padding: 16px 20px;
  overflow: auto;
  min-height: 0;
}
.app.v2 .modal-card > .mform-foot,
.app.v2 #meeting-modal .mform-foot {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  padding: 12px 20px;
  border-top: 1px solid var(--line);
  background: var(--panel2);
}
.app.v2 .modal-x {
  width: 32px;
  height: 32px;
  padding: 0;
  display: grid;
  place-items: center;
  border-radius: var(--r-sm);
  font-size: 14px;
  color: var(--muted);
}
.app.v2 .modal-x:hover {
  background: var(--hover);
  color: var(--ink);
}
.app.v2 .tseg {
  padding: 8px 10px;
  border-radius: var(--r-sm);
}
.app.v2 .tseg:hover {
  background: var(--hover);
}
.app.v2 .tseg-t {
  min-width: 40px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-text);
}
.app.v2 #transcript-modal mark {
  background: var(--accent-soft);
  color: var(--accent-text);
  font-weight: 700;
  border-radius: 4px;
  padding: 0 3px;
}
.app.v2 #notes-panel h3 {
  font-size: 18px;
  line-height: 26px;
}
.app.v2 #notes-panel > div > strong {
  display: block;
  color: var(--ink);
  line-height: 20px;
}
.app.v2 #notes-panel ul li {
  margin: 3px 0;
  line-height: 20px;
}
.app.v2 .mobnav {
  background: var(--glass);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.app.v2 .mobnav button.active,
.app.v2 .mobmore > button.active {
  color: var(--accent-text);
}
.app.v2 .mobmore {
  background: var(--panel);
  border-top: 1px solid var(--line);
  box-shadow: var(--sh-3);
}
.app.v2 ::-webkit-scrollbar-thumb {
  background: var(--line-strong);
  border-radius: 9px;
}
.app.v2 .joinbox {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}
.app.v2 .joinbox input {
  flex: 1;
  min-width: 0;
  height: 36px;
  padding: 0 12px;
  font-size: 13px;
  border-radius: var(--r-sm);
}
.app.v2 .joinbox .btn {
  height: 36px;
  padding: 0 14px;
  font-size: 13px;
}
@media (max-width: 1100px) {
  .app.v2 .tabbar,
  .app.v2 .tabbar button {
    border-radius: var(--r-md);
  }
}
@media (max-width: 760px) {
  .app.v2 .topbar:has(> h1),
  :root[data-theme=light] .app.v2 .topbar:has(> h1) {
    padding: 14px 14px 0;
  }
  .app.v2 .topbar > h1 {
    margin-top: 20px;
    font-size: 24px;
    line-height: 32px;
  }
  .app.v2 .sec-h[style*=flex-end] .btn-ico {
    top: -46px;
    width: 44px;
    height: 44px;
  }
  .app.v2 .card,
  .app.v2 .acard {
    padding: 16px;
  }
  .app.v2 .kpi-n {
    font-size: 24px;
    line-height: 30px;
  }
  .app.v2 .tabbar,
  .app.v2 .tabbar.seg {
    border: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
    gap: 6px;
  }
  .app.v2 .tabbar button {
    border: 1px solid var(--line);
    background: var(--panel);
  }
  .app.v2 .tabbar button.active {
    border-color: transparent;
  }
  .app.v2 .toast {
    left: 12px;
    right: 12px;
    max-width: none;
    bottom: calc(76px + env(safe-area-inset-bottom));
  }
  .app.v2 .modal-card {
    border-radius: 18px 18px 0 0;
  }
}
@media print {
  .app.v2::before {
    display: none;
  }
}
@media (forced-colors: active) {
  .app.v2 .empty::before,
  .app.v2 .empty::after {
    display: none;
  }
}
