:root {
  --ink: #14213d;
  --muted: #69758b;
  --line: #e3e8f0;
  --paper: #f5f7fb;
  --white: #ffffff;
  --navy: #0b1933;
  --navy-2: #102343;
  --indigo: #4b5ff7;
  --indigo-soft: #eef0ff;
  --teal: #11a99a;
  --teal-soft: #e7f8f5;
  --amber: #d88b14;
  --amber-soft: #fff5df;
  --rose: #d85668;
  --rose-soft: #fff0f2;
  --purple: #805ad5;
  --purple-soft: #f2edff;
  --shadow: 0 18px 45px rgba(22, 37, 66, .08);
  --radius: 18px;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); min-height: 100vh; }
button, input, select { font: inherit; }
button { cursor: pointer; }
a { color: inherit; }
.app-shell { min-height: 100vh; display: grid; grid-template-columns: 244px 1fr; }
.sidebar { background: linear-gradient(180deg, var(--navy) 0%, #0d1e39 58%, #11274a 100%); color: white; position: sticky; top: 0; height: 100vh; padding: 26px 18px 18px; display: flex; flex-direction: column; z-index: 30; }
.brand { display: flex; align-items: center; gap: 12px; padding: 0 8px 28px; }
.brand-mark { width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center; background: linear-gradient(135deg, #6c7cff, #22c7b7); box-shadow: 0 10px 24px rgba(73, 95, 247, .35); font-weight: 900; letter-spacing: -.5px; }
.brand strong { display: block; font-size: 15px; letter-spacing: .2px; }
.brand small { display: block; margin-top: 3px; color: #91a2bf; font-size: 11px; letter-spacing: .4px; }
.nav { display: grid; gap: 6px; }
.nav-item { appearance: none; border: 0; color: #9eacc3; background: transparent; width: 100%; display: grid; grid-template-columns: 27px 1fr auto; align-items: center; text-align: left; gap: 5px; border-radius: 11px; padding: 11px 12px; font-size: 13px; transition: .18s ease; }
.nav-item:hover { color: #fff; background: rgba(255,255,255,.06); }
.nav-item.active { color: #fff; background: linear-gradient(90deg, rgba(89,105,255,.28), rgba(89,105,255,.09)); box-shadow: inset 3px 0 #7180ff; }
.nav-icon { font-size: 17px; color: #7282a0; }
.nav-item.active .nav-icon { color: #aeb7ff; }
.nav-badge { border-radius: 999px; background: rgba(255,255,255,.1); padding: 2px 7px; font-size: 10px; }
.sidebar-footer { margin-top: auto; }
.status-card { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.07); border-radius: 13px; padding: 11px; }
.status-card strong, .status-card small { display: block; }
.status-card strong { font-size: 11px; }
.status-card small { color: #8fa0bd; font-size: 10px; margin-top: 3px; }
.pulse { width: 9px; height: 9px; border-radius: 50%; background: #4be1bf; box-shadow: 0 0 0 5px rgba(75,225,191,.1); }
.version { text-align: center; color: #72839e; font-size: 10px; margin-top: 12px; }
.main { min-width: 0; }
.topbar { height: 72px; position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.88); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(216,223,234,.8); display: flex; align-items: center; justify-content: space-between; padding: 0 30px; }
.breadcrumbs { display: flex; gap: 9px; align-items: center; font-size: 12px; color: #7b8799; }
.breadcrumbs b { color: #c1c9d5; }
.breadcrumbs strong { color: var(--ink); }
.top-actions { display: flex; align-items: center; gap: 12px; }
.search-wrap { width: 310px; height: 38px; border: 1px solid var(--line); border-radius: 11px; background: white; display: flex; align-items: center; gap: 8px; padding: 0 12px; position: relative; }
.search-wrap > span { color: #8c99ab; font-size: 18px; }
.search-wrap input { width: 100%; border: 0; outline: 0; color: var(--ink); font-size: 12px; }
.search-results { display: none; position: absolute; top: 45px; right: 0; width: 390px; max-height: 390px; overflow: auto; background: white; border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: 14px; padding: 8px; }
.search-results.open { display: block; }
.search-result { padding: 10px; border-radius: 9px; display: grid; gap: 3px; cursor: pointer; }
.search-result:hover { background: var(--paper); }
.search-result strong { font-size: 12px; }
.search-result small { color: var(--muted); font-size: 10px; }
.evidence-toggle { border: 1px solid var(--line); border-radius: 11px; background: white; color: var(--muted); padding: 9px 12px; display: flex; gap: 7px; align-items: center; font-size: 11px; }
.evidence-toggle .dot { width: 7px; height: 7px; background: var(--teal); border-radius: 50%; }
.evidence-toggle.active { color: var(--teal); background: var(--teal-soft); border-color: #c7ede7; }
.menu-button { display: none; border: 0; background: transparent; font-size: 19px; color: var(--ink); }
.page-container { padding: 28px 30px 56px; max-width: 1540px; margin: 0 auto; }
.page { display: none; animation: pageIn .26s ease; }
.page.active { display: block; }
@keyframes pageIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: none; } }
.page-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 24px; gap: 20px; }
.page-head h1 { margin: 2px 0 7px; font-size: 27px; letter-spacing: -.7px; }
.page-head p { margin: 0; color: var(--muted); font-size: 13px; max-width: 760px; line-height: 1.65; }
.eyebrow { text-transform: uppercase; letter-spacing: 1.35px; color: var(--indigo); font-weight: 800; font-size: 9px; }
.button { border: 1px solid var(--line); background: white; color: var(--ink); padding: 9px 12px; border-radius: 10px; font-size: 11px; font-weight: 700; }
.button:hover { border-color: #bdc6d5; }
.button.primary { background: var(--indigo); color: white; border-color: var(--indigo); box-shadow: 0 8px 22px rgba(75,95,247,.2); }
.hero { background: radial-gradient(circle at 83% 15%, rgba(89,112,255,.35), transparent 30%), linear-gradient(135deg, #0c1e3a 0%, #142d52 64%, #164b5b 100%); color: white; border-radius: 24px; padding: 32px 34px; min-height: 235px; position: relative; overflow: hidden; box-shadow: 0 24px 55px rgba(18,38,72,.18); }
.hero::after { content: ""; position: absolute; width: 230px; height: 230px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; right: -45px; bottom: -115px; box-shadow: 0 0 0 40px rgba(255,255,255,.03), 0 0 0 80px rgba(255,255,255,.02); }
.hero-grid { display: grid; grid-template-columns: 1.4fr .9fr; gap: 40px; position: relative; z-index: 1; }
.hero h1 { font-size: 34px; margin: 10px 0 12px; max-width: 760px; letter-spacing: -1px; line-height: 1.18; }
.hero p { color: #b9c8dc; max-width: 700px; line-height: 1.7; font-size: 13px; }
.hero-actions { display: flex; gap: 10px; margin-top: 22px; }
.hero .button.secondary { color: white; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); }
.hero-status { align-self: center; display: grid; gap: 13px; }
.hero-status-row { display: flex; justify-content: space-between; align-items: center; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.11); }
.hero-status-row:last-child { border-bottom: 0; }
.hero-status-row span { color: #9fb0c8; font-size: 11px; }
.hero-status-row strong { font-size: 12px; }
.metric-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; margin: 18px 0 22px; }
.metric-card { background: white; border: 1px solid var(--line); border-radius: 15px; padding: 18px; box-shadow: 0 7px 22px rgba(25,43,75,.04); }
.metric-card .metric-top { display: flex; justify-content: space-between; color: var(--muted); font-size: 10px; }
.metric-icon { width: 28px; height: 28px; border-radius: 9px; display: grid; place-items: center; background: var(--indigo-soft); color: var(--indigo); font-weight: 900; }
.metric-value { font-size: 28px; font-weight: 850; margin: 13px 0 5px; letter-spacing: -.8px; }
.metric-caption { color: var(--muted); font-size: 10px; }
.grid-2 { display: grid; grid-template-columns: 1.25fr .75fr; gap: 18px; }
.grid-equal { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.card { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 21px; box-shadow: 0 7px 24px rgba(25,43,75,.04); }
.card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 17px; gap: 14px; }
.card-head h2 { margin: 0; font-size: 15px; letter-spacing: -.2px; }
.card-head p { margin: 4px 0 0; color: var(--muted); font-size: 10px; }
.link-button { color: var(--indigo); border: 0; background: transparent; font-size: 10px; font-weight: 750; }
.progress-track { height: 7px; border-radius: 999px; background: #edf0f5; overflow: hidden; }
.progress-fill { height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--indigo), #7c8cff); }
.phase-list { display: grid; gap: 14px; }
.phase-row { display: grid; grid-template-columns: 74px 1fr 36px; gap: 12px; align-items: center; }
.phase-row strong { font-size: 10px; }
.phase-row small { color: var(--muted); font-size: 9px; text-align: right; }
.activity-list { display: grid; gap: 4px; }
.activity-item { display: grid; grid-template-columns: 11px 1fr auto; gap: 12px; align-items: start; padding: 10px 0; border-bottom: 1px solid #edf0f4; }
.activity-item:last-child { border: 0; }
.activity-dot { width: 9px; height: 9px; border-radius: 50%; margin-top: 5px; background: var(--indigo); box-shadow: 0 0 0 4px var(--indigo-soft); }
.activity-dot.deep { background: var(--teal); box-shadow: 0 0 0 4px var(--teal-soft); }
.activity-dot.evidence { background: var(--amber); box-shadow: 0 0 0 4px var(--amber-soft); }
.activity-dot.plan { background: var(--purple); box-shadow: 0 0 0 4px var(--purple-soft); }
.activity-item strong { font-size: 11px; }
.activity-item p { font-size: 10px; color: var(--muted); margin: 3px 0 0; line-height: 1.45; }
.activity-item time { color: #98a3b4; font-size: 9px; }
.filter-row { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 18px; }
.filter-chip { border: 1px solid var(--line); background: white; color: var(--muted); border-radius: 999px; padding: 7px 10px; font-size: 10px; }
.filter-chip.active { background: var(--ink); border-color: var(--ink); color: white; }
.org-groups { display: grid; gap: 22px; }
.org-group-title { display: flex; align-items: center; gap: 11px; margin: 0 0 12px; font-size: 12px; }
.org-group-title::after { content: ""; height: 1px; background: var(--line); flex: 1; }
.org-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.org-card { background: white; border: 1px solid var(--line); border-radius: 15px; padding: 17px; position: relative; transition: .18s ease; }
.org-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: #d1d9e6; }
.org-card h3 { font-size: 13px; margin: 12px 0 5px; }
.org-card .leader { color: var(--muted); font-size: 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.org-card .scope { font-size: 10px; line-height: 1.6; color: #526078; margin: 13px 0; height: 48px; overflow: hidden; }
.org-card footer { display: flex; justify-content: space-between; align-items: center; color: var(--muted); font-size: 9px; }
.badge { display: inline-flex; align-items: center; gap: 5px; border-radius: 999px; padding: 5px 8px; font-size: 9px; font-weight: 750; }
.badge.confirmed, .badge.green { background: var(--teal-soft); color: #087f73; }
.badge.partial, .badge.amber { background: var(--amber-soft); color: #a3690d; }
.badge.blue { background: var(--indigo-soft); color: var(--indigo); }
.badge.purple { background: var(--purple-soft); color: var(--purple); }
.badge.rose { background: var(--rose-soft); color: var(--rose); }
.team-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 10px; }
.team-tag { background: #f1f4f8; color: #657187; border-radius: 6px; font-size: 8px; padding: 4px 6px; }
.diagnosis-list { display: grid; gap: 12px; }
.diagnosis-card { display: grid; grid-template-columns: 44px 1fr auto; gap: 15px; align-items: start; background: white; border: 1px solid var(--line); border-radius: 15px; padding: 17px; }
.rank { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; background: var(--indigo-soft); color: var(--indigo); font-size: 13px; font-weight: 900; }
.diagnosis-card h3 { font-size: 13px; margin: 1px 0 6px; }
.diagnosis-card p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.6; }
.evidence-tags { display: flex; gap: 5px; flex-wrap: wrap; margin-top: 10px; }
.evidence-tag { font-size: 8px; background: #f2f4f7; color: #67758b; border-radius: 6px; padding: 4px 6px; }
.collection-summary { display: grid; grid-template-columns: 1fr 270px; gap: 18px; margin-bottom: 18px; }
.big-progress { display: flex; align-items: center; gap: 20px; }
.progress-ring { --p: 0; width: 84px; height: 84px; border-radius: 50%; background: conic-gradient(var(--teal) calc(var(--p)*1%), #edf1f5 0); display: grid; place-items: center; position: relative; }
.progress-ring::before { content:""; width: 64px; height: 64px; background: white; border-radius: 50%; position: absolute; }
.progress-ring strong { z-index: 1; font-size: 17px; }
.collection-table { background: white; border: 1px solid var(--line); border-radius: 15px; overflow: hidden; }
.collection-row { display: grid; grid-template-columns: 32px 56px 110px 1.45fr 1fr 110px; gap: 10px; align-items: center; padding: 12px 14px; border-bottom: 1px solid #edf0f4; font-size: 10px; }
.collection-row.header { color: #8995a7; text-transform: uppercase; letter-spacing: .6px; font-size: 8px; background: #fafbfd; }
.collection-row:last-child { border: 0; }
.collection-row.done { background: #f7fcfb; }
.collection-row.done .collection-title { text-decoration: line-through; color: #849189; }
.check { width: 17px; height: 17px; accent-color: var(--teal); }
.priority { font-weight: 850; }
.priority.最高优先 { color: var(--rose); }
.priority.高优先 { color: var(--amber); }
.priority.一般优先 { color: var(--indigo); }
.collection-title { font-weight: 650; line-height: 1.45; }
.collection-owner, .collection-form { color: var(--muted); }
.status-select { border: 1px solid var(--line); border-radius: 8px; padding: 5px 6px; font-size: 9px; color: var(--muted); background: white; max-width: 100%; }
.chart-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 14px; }
.chart-card { background: white; border: 1px solid var(--line); border-radius: 15px; padding: 17px; }
.chart-card .number { font-size: 27px; font-weight: 850; margin: 11px 0 4px; }
.chart-card small { color: var(--muted); font-size: 9px; }
.bar-list { display: grid; gap: 13px; }
.bar-row { display: grid; grid-template-columns: 130px 1fr 42px; gap: 12px; align-items: center; font-size: 9px; }
.bar { height: 8px; background: #edf0f5; border-radius: 999px; overflow: hidden; }
.bar > span { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--indigo), #8190ff); }
.bar.teal > span { background: linear-gradient(90deg, var(--teal), #43cdbc); }
.evidence-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.evidence-card { border: 1px solid var(--line); background: white; border-radius: 15px; padding: 18px; }
.evidence-card h3 { font-size: 12px; margin: 11px 0 7px; }
.evidence-card p { color: var(--muted); font-size: 10px; line-height: 1.6; margin: 0; }
.evidence-count { font-size: 26px; font-weight: 850; margin-top: 13px; }
.channel-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.channel-card { background: white; border: 1px solid var(--line); border-radius: 15px; padding: 17px; cursor: pointer; transition: .18s ease; }
.channel-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.channel-card .channel-number { color: #9aa5b5; font-size: 9px; }
.channel-card h3 { margin: 8px 0 6px; font-size: 13px; }
.channel-card p { color: var(--muted); font-size: 9px; line-height: 1.55; min-height: 42px; }
.channel-stats { display: flex; gap: 8px; margin-top: 12px; }
.channel-stat { flex: 1; background: #f7f8fb; border-radius: 8px; padding: 7px; text-align: center; }
.channel-stat strong { display: block; font-size: 13px; }
.channel-stat small { color: var(--muted); font-size: 7px; }
.flow { display: flex; align-items: stretch; gap: 8px; overflow-x: auto; padding: 8px 2px 12px; }
.flow-step { min-width: 125px; background: white; border: 1px solid var(--line); border-radius: 12px; padding: 12px; font-size: 9px; text-align: center; display: grid; place-items: center; line-height: 1.45; }
.flow-arrow { display: grid; place-items: center; color: #9aa5b5; }
.timeline { position: relative; display: grid; gap: 22px; }
.timeline::before { content:""; position:absolute; left: 91px; top: 18px; bottom: 18px; width: 1px; background: var(--line); }
.timeline-item { display: grid; grid-template-columns: 72px 20px 1fr; gap: 12px; position: relative; }
.timeline-phase { font-size: 10px; font-weight: 850; color: var(--indigo); padding-top: 4px; text-align: right; }
.timeline-dot { width: 13px; height: 13px; border-radius: 50%; background: white; border: 3px solid var(--indigo); margin-top: 2px; z-index: 1; }
.timeline-card { background: white; border: 1px solid var(--line); border-radius: 15px; padding: 18px; }
.timeline-card h3 { font-size: 13px; margin: 0 0 10px; }
.timeline-card ul { margin: 0; padding-left: 17px; display: grid; gap: 7px; color: var(--muted); font-size: 10px; }
.library-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.doc-card { background: white; border: 1px solid var(--line); border-radius: 15px; padding: 17px; display: grid; grid-template-columns: 38px 1fr; gap: 12px; text-decoration: none; transition: .18s ease; cursor: pointer; }
.doc-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.doc-icon { width: 38px; height: 44px; border-radius: 8px; background: var(--indigo-soft); color: var(--indigo); display: grid; place-items: center; font-weight: 850; font-size: 9px; }
.doc-card h3 { font-size: 11px; margin: 1px 0 5px; }
.doc-card p { color: var(--muted); font-size: 9px; line-height: 1.5; margin: 0; }
.doc-meta { margin-top: 9px; display: flex; justify-content: space-between; color: #97a2b1; font-size: 8px; }
.callout { border-left: 3px solid var(--indigo); background: var(--indigo-soft); color: #3f4e80; border-radius: 0 12px 12px 0; padding: 13px 15px; font-size: 10px; line-height: 1.6; }
.modal-backdrop { position: fixed; inset: 0; background: rgba(7,17,34,.55); backdrop-filter: blur(5px); z-index: 100; display: none; align-items: center; justify-content: center; padding: 24px; }
.modal-backdrop.open { display: flex; }
.modal { width: min(760px, 100%); max-height: 86vh; overflow: hidden; background: white; border-radius: 20px; box-shadow: 0 40px 100px rgba(0,0,0,.25); display: flex; flex-direction: column; }
.modal-header { display: flex; justify-content: space-between; align-items: start; padding: 22px 24px 17px; border-bottom: 1px solid var(--line); }
.modal-header h2 { margin: 5px 0 0; font-size: 19px; }
.modal-header button { border: 0; background: #f2f4f7; border-radius: 9px; width: 31px; height: 31px; font-size: 20px; color: var(--muted); }
.modal-body { padding: 22px 24px 28px; overflow: auto; color: #44526a; font-size: 11px; line-height: 1.75; }
.modal-body h1,.modal-body h2,.modal-body h3 { color: var(--ink); }
.modal-body table { border-collapse: collapse; width: 100%; font-size: 9px; }
.modal-body th,.modal-body td { border: 1px solid var(--line); padding: 7px; text-align: left; vertical-align: top; }
.modal-body code { background: #f1f3f7; border-radius: 5px; padding: 2px 4px; }
.detail-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; margin-bottom:16px; }
.detail-box { background:#f7f9fc; border-radius:11px; padding:12px; }
.detail-box small { display:block; color:var(--muted); font-size:8px; margin-bottom:5px; }
.detail-box strong { font-size:11px; }
.toast { position: fixed; right: 24px; bottom: 24px; background: var(--navy); color: white; border-radius: 11px; padding: 11px 14px; font-size: 10px; box-shadow: var(--shadow); opacity: 0; transform: translateY(10px); pointer-events: none; transition: .22s ease; z-index: 120; }
.toast.show { opacity: 1; transform: none; }
.evidence-mode .hypothesis { outline: 1px dashed var(--purple); outline-offset: 2px; }
.evidence-mode .confirmed { outline: 1px solid rgba(17,169,154,.3); }
@media (max-width: 1180px) {
  .metric-grid, .chart-grid { grid-template-columns: repeat(2,1fr); }
  .org-grid, .channel-grid, .library-grid { grid-template-columns: repeat(2,1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .search-wrap { width: 240px; }
}
@media (max-width: 820px) {
  .app-shell { display: block; }
  .sidebar { position: fixed; left: -260px; transition: .22s ease; width: 244px; }
  .sidebar.open { left: 0; box-shadow: 30px 0 60px rgba(0,0,0,.2); }
  .menu-button { display: block; }
  .topbar { padding: 0 16px; }
  .breadcrumbs { display: none; }
  .search-wrap { width: min(62vw,310px); }
  .evidence-toggle { display: none; }
  .page-container { padding: 20px 16px 40px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-status { display: none; }
  .hero h1 { font-size: 27px; }
  .collection-summary { grid-template-columns: 1fr; }
  .collection-row { grid-template-columns: 28px 44px 1fr 90px; }
  .collection-row > :nth-child(3), .collection-row > :nth-child(5) { display: none; }
  .evidence-grid, .grid-equal { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .metric-grid, .chart-grid, .org-grid, .channel-grid, .library-grid, .grid-3 { grid-template-columns: 1fr; }
  .top-actions { width: 100%; justify-content: end; }
  .search-wrap { width: 78%; }
  .search-results { width: 90vw; right: -6px; }
  .hero { padding: 24px; }
  .page-head { align-items: start; flex-direction: column; }
  .diagnosis-card { grid-template-columns: 40px 1fr; }
  .diagnosis-card > .badge { grid-column: 2; justify-self: start; }
}

.account-chip { height: 40px; display: flex; align-items: center; gap: 8px; padding: 4px 6px 4px 5px; border: 1px solid var(--line); border-radius: 12px; background: white; }
.account-avatar { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 9px; color: white; background: linear-gradient(135deg, #6f7cf9, #4b5cf2); font-size: 10px; font-weight: 850; }
.account-copy { min-width: 55px; display: grid; line-height: 1.1; }
.account-copy small { color: #9aa5b5; font-size: 7px; text-transform: uppercase; letter-spacing: .55px; }
.account-copy strong { max-width: 80px; margin-top: 3px; overflow: hidden; text-overflow: ellipsis; color: #465269; font-size: 9px; font-weight: 750; }
.account-chip button { height: 27px; padding: 0 8px; border: 0; border-left: 1px solid #edf0f4; color: #8692a5; background: transparent; font-size: 9px; cursor: pointer; }
.account-chip button:hover { color: var(--indigo); }
@media (max-width: 860px) { .account-copy { display: none; } .account-chip { padding-right: 4px; } }
@media (max-width: 620px) { .account-chip { display: none; } }
