:root{
      --bg:#070b14;
      --panel:#10192b;
      --panel-2:#16233a;
      --soft:#0b1220;
      --soft-2:#0f182b;
      --border:rgba(163,184,255,.12);
      --border-strong:rgba(163,184,255,.22);
      --text:#eef4ff;
      --muted:#8fa1c6;
      --muted-2:#6f81a8;
      --accent:#66a3ff;
      --accent2:#4dd0e1;
      --scrollbar-track:rgba(255,255,255,.04);
      --scrollbar-thumb-flat:rgba(120,145,255,.88);
      --scrollbar-thumb:linear-gradient(180deg, rgba(128,152,255,.94), rgba(94,203,255,.88));
      --scrollbar-thumb-hover:linear-gradient(180deg, rgba(164,182,255,.96), rgba(118,222,255,.94));
      --scrollbar-border:rgba(7,12,22,.7);
      --green:#22c55e;
      --yellow:#f59e0b;
      --red:#ef4444;
      --shadow:0 24px 80px rgba(2,6,14,.46);
      --shadow-soft:0 16px 42px rgba(2,6,14,.26);
      --radius:22px;
      --radius-sm:16px;
    }

    html,
    .sidebar,
    .main,
    .incident-panel,
    .identity-lane-list,
    .login-overlay{
      scrollbar-width:thin;
      scrollbar-color:var(--scrollbar-thumb-flat) var(--scrollbar-track);
    }

    html::-webkit-scrollbar,
    .sidebar::-webkit-scrollbar,
    .main::-webkit-scrollbar,
    .incident-panel::-webkit-scrollbar,
    .identity-lane-list::-webkit-scrollbar,
    .login-overlay::-webkit-scrollbar{
      width:10px;
      height:10px;
    }

    html::-webkit-scrollbar-track,
    .sidebar::-webkit-scrollbar-track,
    .main::-webkit-scrollbar-track,
    .incident-panel::-webkit-scrollbar-track,
    .identity-lane-list::-webkit-scrollbar-track,
    .login-overlay::-webkit-scrollbar-track{
      background:var(--scrollbar-track);
      border-radius:999px;
    }

    html::-webkit-scrollbar-thumb,
    .sidebar::-webkit-scrollbar-thumb,
    .main::-webkit-scrollbar-thumb,
    .incident-panel::-webkit-scrollbar-thumb,
    .identity-lane-list::-webkit-scrollbar-thumb,
    .login-overlay::-webkit-scrollbar-thumb{
      background:var(--scrollbar-thumb);
      border-radius:999px;
      border:1px solid var(--scrollbar-border);
    }

    html::-webkit-scrollbar-thumb:hover,
    .sidebar::-webkit-scrollbar-thumb:hover,
    .main::-webkit-scrollbar-thumb:hover,
    .incident-panel::-webkit-scrollbar-thumb:hover,
    .identity-lane-list::-webkit-scrollbar-thumb:hover,
    .login-overlay::-webkit-scrollbar-thumb:hover{
      background:var(--scrollbar-thumb-hover);
    }

    *{box-sizing:border-box}

    html,body{
      margin:0;
      padding:0;
      color:var(--text);
      font-family:"Segoe UI Variable Text","Segoe UI",Inter,Arial,sans-serif;
      background:
        linear-gradient(180deg, rgba(255,255,255,.015), transparent 28%),
        radial-gradient(circle at top left, rgba(102,163,255,.14), transparent 24%),
        radial-gradient(circle at 88% 0%, rgba(77,208,225,.1), transparent 22%),
        radial-gradient(circle at 50% 100%, rgba(34,197,94,.06), transparent 28%),
        var(--bg);
      min-height:100vh;
    }

    html{
      scrollbar-width:thin;
      scrollbar-color:rgba(128,152,255,.84) rgba(255,255,255,.04);
    }

    html::-webkit-scrollbar{
      width:10px;
      height:10px;
    }

    html::-webkit-scrollbar-track{
      background:rgba(255,255,255,.04);
      border-radius:999px;
    }

    html::-webkit-scrollbar-thumb{
      background:linear-gradient(180deg, rgba(128,152,255,.94), rgba(94,203,255,.86));
      border-radius:999px;
      border:1px solid rgba(7,12,22,.7);
    }

    html::-webkit-scrollbar-thumb:hover{
      background:linear-gradient(180deg, rgba(164,182,255,.96), rgba(118,222,255,.92));
    }

    body{
      display:flex;
      position:relative
    }

    body::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      background:
        linear-gradient(rgba(255,255,255,.016) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.016) 1px, transparent 1px);
      background-size:56px 56px;
      mask-image:linear-gradient(180deg, rgba(0,0,0,.28), transparent 88%);
      opacity:.22;
    }

    .sidebar{
      width:258px;
      height:100vh;
      padding:18px 16px;
      background:linear-gradient(180deg, rgba(6,10,18,.96), rgba(8,12,22,.92));
      border-right:1px solid rgba(163,184,255,.08);
      position:sticky;
      top:0;
      align-self:flex-start;
      backdrop-filter:blur(18px);
      overflow-y:auto;
      overflow-x:hidden;
      scrollbar-width:thin;
      scrollbar-color:rgba(102,163,255,.55) rgba(255,255,255,.04)
    }

    .sidebar::-webkit-scrollbar{
      width:8px;
    }

    .sidebar::-webkit-scrollbar-track{
      background:rgba(255,255,255,.04);
      border-radius:999px;
    }

    .sidebar::-webkit-scrollbar-thumb{
      background:linear-gradient(180deg, rgba(128,152,255,.92), rgba(88,106,205,.92));
      border-radius:999px;
      border:1px solid rgba(17,24,39,.55);
    }

    .brand{
      display:flex;
      gap:12px;
      align-items:center;
      margin-bottom:24px;
      padding:6px 6px 16px;
      border-bottom:1px solid rgba(163,184,255,.08)
    }

    .logo img,
    .footer-brand-mark img{
      display:block;
      width:100%;
      height:100%;
      object-fit:contain;
      object-position:center;
      border-radius:inherit;
    }

    .brand h1{
      margin:0;
      font-size:21px;
      font-family:"Segoe UI Variable Display","Segoe UI",Inter,Arial,sans-serif;
      letter-spacing:-.02em
    }
    .brand p{margin:4px 0 0;color:var(--muted);font-size:12px}

    .nav{
      display:flex;
      flex-direction:column;
      gap:6px;
      margin-bottom:18px
    }

    .nav button{
      width:100%;
      text-align:left;
      padding:12px 14px;
      border-radius:14px;
      border:1px solid transparent;
      background:transparent;
      color:var(--muted);
      cursor:pointer;
      font-weight:600;
      transition:background .18s ease,border-color .18s ease,color .18s ease,transform .18s ease
    }

    .nav button:hover,.nav button.active{
      background:linear-gradient(90deg, rgba(102,163,255,.18), rgba(77,208,225,.08));
      color:var(--text);
      border-color:rgba(102,163,255,.24);
      transform:translateX(2px)
    }

    .box{
      background:linear-gradient(180deg, rgba(16,25,43,.88), rgba(10,16,28,.88));
      border:1px solid rgba(163,184,255,.1);
      border-radius:18px;
      padding:14px;
      margin-bottom:16px
    }

    .box h3{
      margin:0 0 10px;
      font-size:13px;
      color:var(--muted);
      text-transform:uppercase;
      letter-spacing:.08em
    }

    .box p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.5
    }

    .main{
      flex:1;
      padding:22px 24px 28px;
      min-width:0;
      position:relative;
      scrollbar-width:thin;
      scrollbar-color:rgba(128,152,255,.84) rgba(255,255,255,.04);
    }

    .main::-webkit-scrollbar{
      width:10px;
      height:10px;
    }

    .main::-webkit-scrollbar-track{
      background:rgba(255,255,255,.04);
      border-radius:999px;
    }

    .main::-webkit-scrollbar-thumb{
      background:linear-gradient(180deg, rgba(128,152,255,.94), rgba(94,203,255,.86));
      border-radius:999px;
      border:1px solid rgba(7,12,22,.7);
    }

    .main::-webkit-scrollbar-thumb:hover{
      background:linear-gradient(180deg, rgba(164,182,255,.96), rgba(118,222,255,.92));
    }

    .topbar{
      display:flex;
      justify-content:space-between;
      gap:20px;
      align-items:center;
      margin-bottom:22px;
      flex-wrap:wrap;
      position:sticky;
      top:14px;
      z-index:12;
      padding:14px 16px;
      border-radius:22px;
      border:1px solid rgba(163,184,255,.1);
      background:linear-gradient(180deg, rgba(10,16,28,.88), rgba(10,16,28,.72));
      backdrop-filter:blur(16px);
      box-shadow:var(--shadow-soft)
    }

    .title h2{
      margin:0;
      font-size:40px;
      line-height:1;
      font-weight:900;
      letter-spacing:-.035em;
      font-family:"Segoe UI Variable Display","Segoe UI",Inter,Arial,sans-serif
    }

    .title p{
      margin:8px 0 0;
      color:var(--muted);
      font-size:14px;
      max-width:720px
    }

    .panel{
      background:linear-gradient(180deg, rgba(19,31,53,.9), rgba(11,18,32,.96));
      border:1px solid rgba(163,184,255,.1);
      border-radius:var(--radius);
      box-shadow:var(--shadow);
      position:relative;
      overflow:hidden
    }

    .panel::before{
      content:"";
      position:absolute;
      inset:0 0 auto 0;
      height:1px;
      background:linear-gradient(90deg, transparent, rgba(255,255,255,.16), transparent);
      opacity:.7;
      pointer-events:none
    }

    .section{
      padding:18px 18px 20px;
      margin-bottom:22px
    }

    .section-header{
      display:flex;
      justify-content:space-between;
      gap:12px;
      align-items:center;
      margin-bottom:18px;
      flex-wrap:wrap
    }

    .section-header h3{
      margin:0;
      font-size:18px;
      font-weight:850;
      letter-spacing:-.02em
    }

    .section-header p{
      margin:6px 0 0;
      color:var(--muted);
      font-size:13px
    }

    .grid-stats{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:16px;
      margin-bottom:22px
    }

    .stat{padding:18px}

    .stat h4{
      margin:0 0 12px;
      color:var(--muted-2);
      font-size:13px;
      text-transform:uppercase;
      letter-spacing:.08em
    }

    .stat .value{
      font-size:28px;
      font-weight:800;
      margin-bottom:8px
    }

    .stat .sub{
      color:var(--muted);
      font-size:13px
    }

    .analytics-toolbar{
      gap:10px;
      align-items:center
    }

    .analytics-summary{
      display:grid;
      grid-template-columns:repeat(5,minmax(0,1fr));
      gap:10px;
      margin-bottom:14px
    }

    .analytics-card{
      padding:10px 12px;
      border-radius:14px;
      background:linear-gradient(180deg, rgba(15,24,42,.78), rgba(10,16,28,.92));
      border:1px solid rgba(163,184,255,.08)
    }

    .analytics-card small{
      display:block;
      color:var(--muted);
      margin-bottom:6px
    }

    .analytics-card strong{
      display:block;
      font-size:20px
    }

    .analytics-trend-strip{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:10px
    }

    .mini-bar{
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(163,184,255,.08);
      background:linear-gradient(180deg, rgba(13,20,36,.86), rgba(9,14,24,.96))
    }

    .mini-bar-fill{
      height:8px;
      border-radius:999px;
      background:linear-gradient(90deg, rgba(94,203,255,.88), rgba(75,140,255,.88));
      margin:10px 0 8px;
      width:var(--fill, 0%);
      min-width:8px
    }

    .mini-bar-meta{
      display:flex;
      justify-content:space-between;
      gap:8px;
      color:var(--muted);
      font-size:11px
    }

    #notificationDrawerBackdrop .drawer-head{
      padding:18px 18px 14px;
      border-bottom:1px solid rgba(148,163,184,.12);
      background:linear-gradient(180deg, rgba(15,24,39,.92), rgba(10,16,28,.55));
    }

    #notificationDrawerBackdrop .drawer-head h3{
      font-size:24px;
      letter-spacing:-.04em;
    }

    #notificationDrawerBackdrop .drawer-head .muted{
      max-width:320px;
      line-height:1.55;
    }

    .chart-total{
      display:flex;
      align-items:baseline;
      gap:10px;
      margin-bottom:16px
    }

    .chart-total strong{
      font-size:32px;
      color:#eef4ff
    }

    .chart-total span{
      color:var(--muted);
      font-size:13px
    }

    .bar-chart{
      display:grid;
      gap:12px
    }

    .bar-row{
      display:grid;
      grid-template-columns:92px 1fr auto;
      gap:12px;
      align-items:center
    }

    .bar-label{
      color:#cfe0ff;
      font-size:13px;
      font-weight:700;
      text-transform:uppercase;
      letter-spacing:.05em
    }

    .bar-track{
      position:relative;
      height:12px;
      border-radius:999px;
      background:rgba(255,255,255,.06);
      overflow:hidden
    }

    .bar-fill{
      height:100%;
      border-radius:999px;
      background:linear-gradient(90deg, #60a5fa, #8b5cf6);
      box-shadow:0 0 20px rgba(96,165,250,.2)
    }

    .bar-value{
      color:#eef4ff;
      font-size:13px;
      font-weight:800;
      min-width:28px;
      text-align:right
    }

    .guild-rank{
      display:grid;
      gap:10px;
      margin-top:8px
    }

    .guild-rank-row{
      display:flex;
      justify-content:space-between;
      gap:12px;
      padding:10px 12px;
      border-radius:12px;
      background:rgba(255,255,255,.03);
      border:1px solid rgba(255,255,255,.06)
    }

    .guild-rank-row strong{
      color:#eef4ff;
      font-size:13px
    }

    .guild-rank-row span{
      color:var(--muted);
      font-size:12px
    }

    .signal-list,.recommendation-list{
      display:grid;
      gap:10px
    }

    .signal-item,.recommendation-item{
      border:1px solid rgba(255,255,255,.07);
      border-radius:14px;
      padding:12px;
      background:rgba(7,10,25,.34)
    }

    .signal-item strong,.recommendation-item strong{
      display:block;
      color:#eef4ff;
      font-size:12px;
      margin-bottom:6px
    }

    .signal-item span,.recommendation-item span{
      display:block;
      color:#b9cae9;
      font-size:12px;
      line-height:1.5
    }

    .signal-level{
      display:inline-flex;
      margin-bottom:8px;
      border-radius:999px;
      padding:5px 9px;
      font-size:10px;
      font-weight:800;
      text-transform:uppercase;
      letter-spacing:.08em
    }

    .signal-level.low{background:rgba(46,204,113,.14);color:#7df0ab}
    .signal-level.medium{background:rgba(245,158,11,.14);color:#ffd27c}
    .signal-level.high{background:rgba(249,115,22,.16);color:#ffb27a}
    .signal-level.critical{background:rgba(239,68,68,.16);color:#ff9b9b}

    .insight-pills{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:8px
    }

    .timeline-item{
      position:relative;
      padding-left:16px
    }

    .timeline-item::before{
      content:"";
      position:absolute;
      left:0;
      top:16px;
      width:8px;
      height:8px;
      border-radius:50%;
      background:#60a5fa;
      box-shadow:0 0 0 4px rgba(96,165,250,.12)
    }

    .timeline-meta{
      margin-top:6px;
      color:var(--muted);
      font-size:11px;
      text-transform:uppercase;
      letter-spacing:.08em
    }

    .compact-table td,.compact-table th{
      padding:10px 11px;
      font-size:12px
    }

    .signature-footer{
      margin-top:18px;
      padding:12px 0 2px;
      text-align:center;
      color:var(--muted);
      font-size:12px;
      letter-spacing:.06em
    }

    .signature-footer strong{
      color:#eef4ff;
      font-weight:800
    }

    .pulse-strip{
      display:grid;
      grid-template-columns:auto 1fr auto;
      gap:12px;
      align-items:center;
      padding:12px 14px;
      margin-bottom:14px;
      border-radius:16px;
      border:1px solid rgba(255,255,255,.08);
      background:
        radial-gradient(circle at left center, rgba(239,68,68,.10), transparent 18%),
        linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.02));
    }

    .pulse-label{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:#eef4ff;
      font-size:12px;
      font-weight:800;
      letter-spacing:.06em;
      text-transform:uppercase;
    }

    .pulse-dot{
      width:9px;
      height:9px;
      border-radius:999px;
      background:#fb7185;
      box-shadow:0 0 18px rgba(251,113,133,.6);
      animation:pulseBlink 1.6s ease-in-out infinite;
    }

    @keyframes pulseBlink{
      0%,100%{transform:scale(1);opacity:1}
      50%{transform:scale(.72);opacity:.55}
    }

    .pulse-marquee{
      overflow:hidden;
      position:relative;
      min-height:22px;
    }

    .pulse-track{
      display:inline-flex;
      gap:10px;
      white-space:nowrap;
      min-width:max-content;
      animation:pulseScroll 28s linear infinite;
      will-change:transform;
    }

    .pulse-track:hover{
      animation-play-state:paused;
    }

    @keyframes pulseScroll{
      0%{transform:translateX(0)}
      100%{transform:translateX(-50%)}
    }

    .pulse-item{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:6px 10px;
      border-radius:999px;
      background:rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.06);
      color:#dce8ff;
      font-size:12px;
    }

    .pulse-item strong{
      color:#fff;
      font-size:12px;
    }

    .pulse-tail{
      color:#8ea6d7;
      font-size:11px;
    }

    .server-pulse-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:10px;
      margin-bottom:12px;
    }

    .server-pulse-item{
      padding:10px 12px;
      border-radius:14px;
      background:rgba(7,10,25,.34);
      border:1px solid rgba(255,255,255,.06);
    }

    .server-pulse-item small,
    .trust-meter-card small{
      display:block;
      color:var(--muted);
      font-size:10px;
      text-transform:uppercase;
      letter-spacing:.08em;
      margin-bottom:6px;
    }

    .server-pulse-item strong{
      display:block;
      color:#eef4ff;
      font-size:18px;
    }

    .server-pulse-item span{
      display:block;
      color:#9fb2d8;
      font-size:11px;
      margin-top:4px;
    }

    .trust-meter-card{
      padding:12px;
      border-radius:14px;
      background:rgba(7,10,25,.34);
      border:1px solid rgba(255,255,255,.06);
    }

    .trust-meter-head{
      display:flex;
      justify-content:space-between;
      gap:12px;
      align-items:center;
      margin-bottom:8px;
    }

    .trust-meter-head strong{
      color:#eef4ff;
      font-size:16px;
    }

    .trust-meter{
      height:10px;
      border-radius:999px;
      overflow:hidden;
      background:rgba(255,255,255,.06);
      margin-bottom:8px;
    }

    .trust-meter-fill{
      height:100%;
      width:0%;
      border-radius:999px;
      background:linear-gradient(90deg,#ef4444,#f59e0b,#22c55e);
    }

    .heat-list{
      display:grid;
      gap:8px;
    }

    .heat-row{
      display:flex;
      justify-content:space-between;
      gap:10px;
      align-items:center;
      padding:9px 10px;
      border-radius:12px;
      background:rgba(7,10,25,.34);
      border:1px solid rgba(255,255,255,.06);
    }

    .heat-row strong{
      color:#eef4ff;
      font-size:12px;
    }

    .heat-row span{
      color:#9fb2d8;
      font-size:11px;
    }

    .scene-mode-active .panel{
      background:
        radial-gradient(circle at top right, rgba(96,165,250,.14), transparent 28%),
        radial-gradient(circle at bottom left, rgba(239,68,68,.08), transparent 24%),
        linear-gradient(180deg, rgba(22,28,47,.97), rgba(8,11,22,.98));
      box-shadow:0 24px 50px rgba(0,0,0,.42);
    }

    .today-grid{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:8px
    }

    .today-mini{
      padding:8px 10px;
      border-radius:12px;
      background:rgba(7,10,25,.34);
      border:1px solid rgba(255,255,255,.06)
    }

    .today-mini small{
      display:block;
      color:var(--muted);
      font-size:10px;
      margin-bottom:6px;
      text-transform:uppercase;
      letter-spacing:.08em
    }

    .today-mini strong{
      display:block;
      font-size:16px
    }

    .quick-action-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      align-content:start;
      gap:12px
    }

    .quick-action-btn{
      display:grid;
      gap:6px;
      padding:14px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.07);
      background:rgba(7,10,25,.34);
      color:#eef4ff;
      text-align:left;
      cursor:pointer;
      transition:transform .16s ease,border-color .16s ease,background .16s ease
    }

    .quick-action-btn:hover{
      transform:translateY(-1px);
      border-color:rgba(122,146,255,.26);
      background:rgba(255,255,255,.05)
    }

    .quick-action-btn strong{
      font-size:14px
    }

    .quick-action-btn span{
      color:#b9cae9;
      font-size:12px;
      line-height:1.4
    }

    .severity-strip{
      display:grid;
      gap:10px
    }

    .severity-card{
      padding:12px 13px;
      border-radius:16px;
      border:1px solid rgba(163,184,255,.1);
      background:rgba(255,255,255,.03)
    }

    .severity-card small{
      display:block;
      color:var(--muted);
      margin-bottom:8px;
      text-transform:uppercase;
      letter-spacing:.08em;
      font-size:11px
    }

    .severity-card strong{
      display:block;
      font-size:14px;
      margin-bottom:6px
    }

    .severity-card.status-clear{border-color:rgba(34,197,94,.24); box-shadow:inset 0 0 0 1px rgba(34,197,94,.08)}
    .severity-card.status-watch{border-color:rgba(245,158,11,.24); box-shadow:inset 0 0 0 1px rgba(245,158,11,.08)}
    .severity-card.status-review{border-color:rgba(249,115,22,.24); box-shadow:inset 0 0 0 1px rgba(249,115,22,.08)}
    .severity-card.status-critical{border-color:rgba(239,68,68,.24); box-shadow:inset 0 0 0 1px rgba(239,68,68,.08)}

    .filter-chip-row{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin:14px 0 0
    }

    .filter-chip{
      border:none;
      cursor:pointer;
      border-radius:999px;
      padding:8px 12px;
      font-size:12px;
      font-weight:700;
      color:#b9cae9;
      background:rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.08)
    }

    .filter-chip.active{
      background:rgba(91,140,255,.16);
      color:#eef4ff;
      border-color:rgba(91,140,255,.24)
    }

    .incident-strip{
      display:grid;
      gap:12px
    }

    .incident-row{
      display:grid;
      grid-template-columns:minmax(0,1fr) auto;
      gap:14px;
      align-items:start;
      min-height:96px;
      padding:14px;
      border:1px solid rgba(255,255,255,.08);
      border-radius:18px;
      background:linear-gradient(180deg, rgba(16,24,42,.72), rgba(10,15,28,.82));
      box-shadow:inset 0 1px 0 rgba(255,255,255,.04);
    }

    .incident-row:last-child{border-bottom:1px solid rgba(255,255,255,.08)}

    .incident-type{
      min-width:74px;
      text-align:center;
      border-radius:999px;
      padding:4px 9px;
      font-size:10px;
      font-weight:800;
      text-transform:uppercase;
      letter-spacing:.08em;
      align-self:center;
      justify-self:center
    }

    .incident-type.blacklist{background:rgba(239,68,68,.14);color:#ffb1b1}
    .incident-type.warning{background:rgba(245,158,11,.14);color:#ffd27c}
    .incident-type.wl{background:rgba(96,165,250,.14);color:#b8d2ff}

    .incident-row strong{
      display:block;
      margin-bottom:2px;
      color:#eef4ff;
      font-size:12px
    }

    .incident-row span{
      display:block;
      color:var(--muted);
      font-size:10px;
      line-height:1.3
    }

    .incident-copy{
      min-width:0;
      display:block;
    }

    .incident-user-block{
      width:100%;
      max-width:none;
      padding:0;
      border-radius:0;
      border:none;
      background:transparent;
      box-shadow:none;
      display:grid;
      gap:4px;
    }

    .incident-user-main{
      display:flex;
      align-items:center;
      gap:9px;
      min-width:0;
    }

    .incident-user-title{
      color:#eef4ff;
      font-size:12px;
      font-weight:800;
      line-height:1.2;
      text-transform:none;
    }

    .incident-user-meta{
      min-width:0;
      max-width:270px;
      display:flex;
      flex-direction:column;
      gap:2px;
    }

    .incident-user-foot{
      color:#9fb2d8;
      font-size:10px;
      line-height:1.35;
      padding-top:0;
      margin-top:-2px;
      margin-left:52px;
      border-top:none;
      opacity:.94;
    }

    .incident-side{
      display:grid;
      justify-items:end;
      align-content:start;
      gap:10px;
      min-width:108px;
      padding-top:2px;
    }

    .incident-panel{
      flex:1;
      min-height:0;
      overflow:auto;
      padding-right:6px;
      scrollbar-width:thin;
      scrollbar-color:rgba(122,146,255,.55) rgba(255,255,255,.04)
    }

    .incident-panel::-webkit-scrollbar{
      width:8px;
    }

    .incident-panel::-webkit-scrollbar-track{
      background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.05));
      border-radius:999px;
    }

    .incident-panel::-webkit-scrollbar-thumb{
      background:linear-gradient(180deg, rgba(128,152,255,.92), rgba(88,106,205,.92));
      border-radius:999px;
      border:1px solid rgba(17,24,39,.55);
    }

    .incident-panel::-webkit-scrollbar-thumb:hover{
      background:linear-gradient(180deg, rgba(140,164,255,.88), rgba(97,117,214,.95));
    }

    .incident-panel .user-avatar{
      width:40px;
      height:40px;
      min-width:40px;
      padding:2px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      overflow:hidden;
      border-radius:50%;
      background:
        radial-gradient(circle at 30% 25%, rgba(255,255,255,.34), transparent 24%),
        linear-gradient(180deg, rgba(125,156,255,.34), rgba(77,208,225,.18));
      box-shadow:
        0 0 0 1px rgba(255,255,255,.1),
        0 10px 22px rgba(2,6,14,.28);
    }

    .incident-panel .user-avatar img{
      display:block;
      width:100%;
      height:100%;
      object-fit:cover;
      border-radius:50%;
      border:1px solid rgba(170,191,255,.34);
      background:linear-gradient(180deg, #111827, #0b1220);
    }

    .incident-panel .user-name{
      font-size:12px;
      max-width:220px;
    }

    .incident-panel .user-sub,
    .incident-panel .user-id{
      font-size:11px;
      line-height:1.2;
    }

    @media (max-width: 860px){
      .lookup-ticket-panel{
        padding:18px;
      }

      .lookup-ticket-viewer{
        padding:16px;
      }

      .lookup-ticket-meta{
        grid-template-columns:1fr;
      }

      .lookup-ticket-card{
        width:210px;
        min-width:210px;
      }

      .lookup-ticket-transcript pre{
        min-height:180px;
      }
    }

    @media (max-width: 1320px){
      #tab-lookup .lookup-layout{
        grid-template-columns:1fr;
      }

      #tab-lookup .lookup-sidebar{
        position:static;
      }
    }

    @media (max-width: 1180px){
      #tab-lookup .lookup-stage-primary{
        grid-template-columns:1fr;
      }
    }

    .state-pill{
      display:inline-flex;
      align-items:center;
      padding:8px 12px;
      border-radius:999px;
      font-size:11px;
      font-weight:800;
      text-transform:uppercase;
      letter-spacing:.08em;
      border:1px solid rgba(255,255,255,.08)
    }

    .state-pill.clear{background:rgba(34,197,94,.14);color:#86efac}
    .state-pill.watch{background:rgba(245,158,11,.14);color:#ffd27c}
    .state-pill.review{background:rgba(249,115,22,.16);color:#ffbf8f}
    .state-pill.escalate,.state-pill.critical{background:rgba(239,68,68,.16);color:#ffb1b1}

    .action-rail{
      display:grid;
      gap:12px
    }

    .action-rail .btn{
      width:100%;
      justify-content:center
    }

    .network-graph{
      display:grid;
      gap:16px
    }

    .network-stage{
      display:grid;
      grid-template-columns:minmax(0,.95fr) minmax(220px,1.02fr) minmax(0,.95fr);
      gap:16px;
      align-items:stretch
    }

    .network-center{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:12px;
      align-items:center
    }

    .network-hub{
      grid-column:2;
      text-align:center;
      padding:15px;
      border-radius:18px;
      background:linear-gradient(180deg, rgba(91,140,255,.16), rgba(255,255,255,.03));
      border:1px solid rgba(91,140,255,.22)
    }

    .network-hub strong,.network-node strong{
      display:block;
      margin-bottom:6px;
      font-size:13px
    }

    .network-node{
      padding:11px 12px;
      border-radius:16px;
      border:1px solid rgba(255,255,255,.08);
      background:rgba(255,255,255,.03);
      cursor:pointer
    }

    .network-node span,.network-hub span{
      font-size:11px;
      line-height:1.45
    }

    .network-node.id{border-color:rgba(34,197,94,.24)}
    .network-node.alt{border-color:rgba(245,158,11,.22)}

    .network-cluster{
      display:grid;
      gap:12px;
      align-content:start
    }

    .network-cluster-head{
      color:var(--muted);
      font-size:11px;
      text-transform:uppercase;
      letter-spacing:.08em;
      margin-bottom:2px
    }

    .network-hub.large{
      display:flex;
      flex-direction:column;
      justify-content:center;
      gap:8px;
      min-height:170px;
      position:relative
    }

    .network-hub.large::before,
    .network-hub.large::after{
      content:"";
      position:absolute;
      top:50%;
      width:34px;
      height:1px;
      background:rgba(255,255,255,.12)
    }

    .network-hub.large::before{left:-34px}
    .network-hub.large::after{right:-34px}

    .identity-dossier{
      display:grid;
      gap:14px;
      min-width:0;
    }

    .identity-focus-band{
      display:grid;
      grid-template-columns:minmax(0,1fr) minmax(260px,.34fr);
      gap:14px;
      align-items:stretch;
    }

    .identity-focus-card,
    .identity-score-card,
    .identity-lane{
      min-width:0;
      border-radius:22px;
      border:1px solid rgba(119,220,255,.1);
      background:
        radial-gradient(circle at top right, rgba(94,203,255,.1), transparent 28%),
        linear-gradient(180deg, rgba(14,22,38,.92), rgba(7,11,21,.98));
      box-shadow:inset 0 1px 0 rgba(255,255,255,.04);
    }

    .identity-focus-card,
    .identity-score-card{
      padding:16px;
    }

    .identity-profile-head{
      display:flex;
      gap:14px;
      align-items:center;
      min-width:0;
    }

    .identity-avatar{
      width:68px;
      height:68px;
      border-radius:20px;
      overflow:hidden;
      border:1px solid rgba(94,203,255,.22);
      background:rgba(94,203,255,.08);
      box-shadow:0 12px 24px rgba(0,0,0,.18);
      flex:0 0 auto;
    }

    .identity-avatar img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
    }

    .identity-copy{
      min-width:0;
    }

    .identity-kicker{
      margin-bottom:6px;
      color:#8fb4e8;
      font-size:10px;
      font-weight:800;
      letter-spacing:.16em;
      text-transform:uppercase;
    }

    .identity-copy strong{
      display:block;
      color:#f7fbff;
      font-size:20px;
      line-height:1.08;
      word-break:break-word;
    }

    .identity-copy span{
      display:block;
      margin-top:5px;
      color:#9fb4d6;
      font-size:12px;
      line-height:1.45;
      word-break:break-word;
    }

    .identity-summary{
      margin-top:14px;
      color:#d7e4fb;
      font-size:13px;
      line-height:1.6;
    }

    .identity-pill-row{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:14px;
    }

    .identity-mini-pill{
      display:inline-flex;
      align-items:center;
      gap:6px;
      min-height:34px;
      padding:8px 11px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.08);
      background:rgba(255,255,255,.04);
      color:#dfe9fb;
      font-size:11px;
      font-weight:700;
      line-height:1.4;
      max-width:100%;
    }

    .identity-mini-pill strong{
      color:#f7fbff;
      font-weight:800;
    }

    .identity-score-card{
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      gap:14px;
    }

    .identity-score-head{
      display:flex;
      justify-content:space-between;
      gap:12px;
      align-items:flex-start;
    }

    .identity-score-kicker{
      color:#8ea5ca;
      font-size:10px;
      font-weight:800;
      letter-spacing:.14em;
      text-transform:uppercase;
    }

    .identity-score-value{
      font-size:54px;
      font-weight:900;
      line-height:.9;
      color:#f8fbff;
      text-align:right;
      letter-spacing:-.04em;
    }

    .identity-score-card p{
      margin:0;
    }

    .identity-score-meta{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      color:#a9bddc;
      font-size:12px;
    }

    .identity-score-meter{
      width:100%;
      height:8px;
      border-radius:999px;
      background:rgba(96,165,250,.14);
      overflow:hidden;
      box-shadow:inset 0 1px 0 rgba(255,255,255,.05);
    }

    .identity-score-fill{
      height:100%;
      border-radius:inherit;
      background:linear-gradient(90deg, #2dd4bf 0%, #60a5fa 54%, #f59e0b 100%);
      box-shadow:0 0 18px rgba(96,165,250,.26);
    }

    .identity-stat-strip{
      display:grid;
      grid-template-columns:repeat(5, minmax(0,1fr));
      gap:10px;
    }

    .identity-stat{
      min-width:0;
      padding:12px 13px;
      border-radius:16px;
      border:1px solid rgba(255,255,255,.08);
      background:rgba(255,255,255,.03);
    }

    .identity-stat small{
      display:block;
      margin-bottom:6px;
      color:#8ea5ca;
      font-size:10px;
      font-weight:800;
      letter-spacing:.12em;
      text-transform:uppercase;
    }

    .identity-stat strong{
      display:block;
      color:#eff6ff;
      font-size:18px;
      line-height:1.2;
      word-break:break-word;
    }

    .identity-stat span{
      display:block;
      margin-top:4px;
      color:#9fb4d6;
      font-size:12px;
      line-height:1.45;
    }

    .identity-lane-grid{
      display:grid;
      grid-template-columns:repeat(2, minmax(0,1fr));
      gap:12px;
    }

    .identity-lane{
      padding:14px;
      display:flex;
      flex-direction:column;
      gap:12px;
    }

    .identity-lane-head{
      display:flex;
      justify-content:space-between;
      gap:10px;
      align-items:flex-start;
    }

    .identity-lane-head strong{
      display:block;
      color:#eff6ff;
      font-size:14px;
      line-height:1.25;
    }

    .identity-lane-head span{
      color:#8ea5ca;
      font-size:11px;
      font-weight:700;
      letter-spacing:.08em;
      text-transform:uppercase;
      white-space:nowrap;
    }

    .identity-lane-list{
      display:grid;
      gap:10px;
      max-height:286px;
      overflow:auto;
      padding-right:4px;
      scrollbar-width:thin;
      scrollbar-color:rgba(128,152,255,.92) rgba(255,255,255,.04);
    }

    .identity-lane-list::-webkit-scrollbar{
      width:8px;
    }

    .identity-lane-list::-webkit-scrollbar-track{
      background:rgba(255,255,255,.04);
      border-radius:999px;
    }

    .identity-lane-list::-webkit-scrollbar-thumb{
      background:linear-gradient(180deg, rgba(128,152,255,.92), rgba(88,106,205,.92));
      border-radius:999px;
      border:1px solid rgba(17,24,39,.55);
    }

    .identity-card{
      min-width:0;
      padding:11px 12px;
      border-radius:16px;
      border:1px solid rgba(255,255,255,.08);
      background:rgba(4,8,18,.32);
      color:inherit;
    }

    .identity-card small{
      display:block;
      margin-bottom:5px;
      color:#8ea5ca;
      font-size:10px;
      font-weight:800;
      letter-spacing:.1em;
      text-transform:uppercase;
    }

    .identity-card strong{
      display:block;
      color:#eef6ff;
      font-size:13px;
      line-height:1.4;
      word-break:break-word;
    }

    .identity-card span{
      display:block;
      margin-top:4px;
      color:#a7bad8;
      font-size:12px;
      line-height:1.55;
      word-break:break-word;
    }

    .identity-code{
      font-family:ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
      color:#d2e6ff;
      font-size:12px;
      line-height:1.45;
      word-break:break-all;
    }

    .identity-alert-card.critical{
      border-color:rgba(239,68,68,.26);
      background:rgba(239,68,68,.08);
    }

    .identity-alert-card.high{
      border-color:rgba(249,115,22,.24);
      background:rgba(249,115,22,.07);
    }

    .identity-alert-card.medium{
      border-color:rgba(245,158,11,.22);
      background:rgba(245,158,11,.06);
    }

    .identity-alt-card{
      cursor:pointer;
      width:100%;
      text-align:left;
      transition:transform .18s ease, border-color .18s ease, background .18s ease;
    }

    .identity-alt-card:hover{
      transform:translateY(-2px);
      border-color:rgba(94,203,255,.26);
      background:rgba(94,203,255,.07);
    }

    .identity-alt-meta{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:8px;
    }

    .identity-alt-meta span{
      margin-top:0;
      padding:6px 9px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.08);
      background:rgba(255,255,255,.03);
      color:#d9e7fb;
      font-size:11px;
      line-height:1.35;
    }

    .identity-empty{
      padding:16px;
      border-radius:16px;
      border:1px dashed rgba(255,255,255,.12);
      background:rgba(255,255,255,.02);
      color:#9eb3d4;
      text-align:center;
      line-height:1.55;
    }

    .download-card,
    .download-guide-card{
      min-width:0;
      padding:18px;
      border-radius:22px;
      border:1px solid rgba(119,220,255,.1);
      background:
        radial-gradient(circle at top right, rgba(94,203,255,.08), transparent 26%),
        linear-gradient(180deg, rgba(14,22,38,.94), rgba(8,13,24,.98));
      box-shadow:0 18px 40px rgba(3,8,18,.16);
    }

    .download-card.available{
      background:
        radial-gradient(circle at top right, rgba(94,203,255,.16), transparent 30%),
        radial-gradient(circle at bottom left, rgba(45,212,191,.08), transparent 24%),
        linear-gradient(180deg, rgba(16,26,44,.96), rgba(8,13,24,.99));
    }

    .download-card-head{
      display:flex;
      justify-content:space-between;
      gap:12px;
      align-items:flex-start;
      margin-bottom:10px;
    }

    .download-card h4,
    .download-guide-card h4{
      margin:0 0 8px;
      font-size:20px;
      font-weight:800;
      letter-spacing:-.02em;
      color:#f4f8ff;
    }

    .download-card p,
    .download-guide-card p{
      margin:0;
      color:#a9bddc;
      font-size:13px;
      line-height:1.65;
    }

    .download-badge-row{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:14px;
    }

    .download-badge{
      display:inline-flex;
      align-items:center;
      min-height:30px;
      padding:6px 10px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.08);
      background:rgba(255,255,255,.04);
      color:#dce8fb;
      font-size:11px;
      font-weight:700;
      letter-spacing:.02em;
    }

    .download-badge.available{
      border-color:rgba(52,211,153,.2);
      background:rgba(16,185,129,.14);
      color:#8df2bf;
    }

    .download-badge.soon{
      border-color:rgba(245,158,11,.18);
      background:rgba(245,158,11,.1);
      color:#f8d18b;
    }

    .download-feature-list{
      margin:16px 0 0;
      padding-left:18px;
      display:grid;
      gap:8px;
      color:#d6e2f8;
      font-size:13px;
      line-height:1.6;
    }

    .download-card-actions{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:18px;
    }

    .download-guide-head,
    .integration-header-actions{
      display:flex;
      justify-content:space-between;
      gap:12px;
      align-items:flex-start;
      flex-wrap:wrap;
    }

    .download-snippet{
      margin:16px 0 0;
      padding:14px 16px;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.08);
      background:rgba(4,8,18,.48);
      color:#d3e7ff;
      font-size:12px;
      line-height:1.7;
      overflow:auto;
      white-space:pre-wrap;
      word-break:break-word;
    }

    .download-note-list{
      display:grid;
      gap:10px;
      margin-top:14px;
    }

    .download-note-item{
      padding:12px 13px;
      border-radius:16px;
      border:1px solid rgba(255,255,255,.08);
      background:rgba(255,255,255,.03);
    }

    .download-note-item strong{
      display:block;
      color:#eff6ff;
      font-size:13px;
      margin-bottom:4px;
    }

    .download-note-item span{
      display:block;
      color:#a5bad8;
      font-size:12px;
      line-height:1.55;
      word-break:break-word;
    }

    .network-graph-shell{
      display:grid;
      grid-template-columns:minmax(0,1.18fr) minmax(270px,.82fr);
      gap:16px;
      align-items:start;
    }

    .network-orbit-stage{
      position:relative;
      min-height:280px;
      border-radius:22px;
      border:1px solid rgba(255,255,255,.08);
      background:
        radial-gradient(circle at center, rgba(96,165,250,.13), transparent 22%),
        linear-gradient(180deg, rgba(8,13,24,.9), rgba(4,7,14,.96));
      overflow:hidden;
      perspective:1400px;
      box-shadow:inset 0 1px 0 rgba(255,255,255,.04), 0 16px 34px rgba(0,0,0,.16);
    }

    .network-orbit-stage::before{
      content:"";
      position:absolute;
      inset:18px;
      border-radius:18px;
      background:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
      background-size:32px 32px;
      opacity:.35;
      mask:radial-gradient(circle at center, #000 35%, transparent 92%);
      -webkit-mask:radial-gradient(circle at center, #000 35%, transparent 92%);
      transform:rotateX(64deg) translateY(42px);
      transform-origin:center;
    }

    .network-ring{
      position:absolute;
      left:50%;
      top:50%;
      border-radius:999px;
      border:1px solid rgba(132,170,255,.16);
      transform:translate(-50%,-50%) rotateX(72deg);
      transform-style:preserve-3d;
      box-shadow:0 0 0 1px rgba(255,255,255,.02) inset;
    }

    .network-ring.ring-a{width:180px;height:180px}
    .network-ring.ring-b{width:280px;height:280px;border-color:rgba(92,217,255,.14)}
    .network-ring.ring-c{width:390px;height:390px;border-color:rgba(245,158,11,.12)}

    .network-hub.large{
      position:absolute;
      left:50%;
      top:50%;
      transform:translate(-50%,-50%) translateZ(24px);
      width:min(250px, calc(100% - 56px));
      min-height:164px;
      display:flex;
      flex-direction:column;
      justify-content:center;
      gap:8px;
      text-align:center;
      padding:18px 16px;
      border-radius:26px;
      background:
        radial-gradient(circle at 50% 18%, rgba(255,255,255,.16), transparent 24%),
        linear-gradient(180deg, rgba(91,140,255,.2), rgba(11,16,31,.92));
      border:1px solid rgba(120,153,255,.26);
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,.08),
        0 18px 40px rgba(20,30,65,.34),
        0 0 52px rgba(96,165,250,.18);
      z-index:3;
    }

    .network-hub.large::before{
      content:"";
      position:absolute;
      inset:-18px;
      border-radius:30px;
      background:radial-gradient(circle, rgba(96,165,250,.2), transparent 68%);
      opacity:.55;
      filter:blur(8px);
      z-index:-1;
    }

    .network-pills{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      justify-content:center
    }

    .network-pill{
      display:inline-flex;
      align-items:center;
      border-radius:999px;
      padding:7px 10px;
      font-size:11px;
      font-weight:700;
      background:rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.08)
    }

    .network-satellite{
      position:absolute;
      left:var(--x);
      top:var(--y);
      width:130px;
      padding:10px 11px;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.08);
      background:linear-gradient(180deg, rgba(21,31,56,.92), rgba(8,12,22,.95));
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,.05),
        0 12px 28px rgba(0,0,0,.22);
      transform:translate(-50%,-50%) translateZ(0) rotateX(12deg);
      z-index:2;
      animation:networkFloat calc(7.4s + var(--delay, 0s)) ease-in-out infinite;
    }

    .network-satellite.id{border-color:rgba(34,197,94,.22)}
    .network-satellite.alt{
      border-color:rgba(245,158,11,.24);
      background:linear-gradient(180deg, rgba(52,33,10,.92), rgba(10,12,22,.96));
      cursor:pointer;
    }

    .network-satellite strong{
      display:block;
      margin-bottom:5px;
      font-size:12px;
      color:#f1f5ff;
    }

    .network-satellite span{
      display:block;
      color:#bfd0ef;
      font-size:11px;
      line-height:1.4;
      word-break:break-word;
    }

    .network-legend-grid{
      display:grid;
      gap:12px;
      min-height:0;
      align-content:start;
    }

    .network-cluster.compact{
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.08);
      background:rgba(255,255,255,.028);
      align-content:start;
      max-height:248px;
      overflow:auto;
      padding-right:8px;
    }

    .network-cluster.compact .network-node,
    .network-cluster.compact .network-empty{
      margin-top:10px;
    }

    .network-empty{
      padding:14px;
      border-radius:16px;
      border:1px dashed rgba(255,255,255,.12);
      color:var(--muted);
      text-align:center
    }

    .network-row{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:12px
    }

    .quick-status-inline{
      margin-top:12px;
      padding-top:12px;
      border-top:1px solid rgba(255,255,255,.08);
    }

    .quick-status-inline h5{
      margin:0 0 10px;
      color:#eef4ff;
      font-size:13px;
      font-weight:800;
    }

    @keyframes networkFloat{
      0%,100%{transform:translate(-50%,-50%) translateY(0) rotateX(12deg)}
      50%{transform:translate(-50%,-50%) translateY(-8px) rotateX(12deg)}
    }

    .preview-modal-card{
      width:min(460px, calc(100vw - 24px));
      border-radius:20px;
      border:1px solid rgba(255,255,255,.08);
      background:linear-gradient(180deg, rgba(18,26,48,.98), rgba(9,13,24,.98));
      padding:18px;
      box-shadow:var(--shadow)
    }

    .preview-header{
      display:flex;
      gap:14px;
      align-items:center;
      margin-bottom:16px
    }

    .preview-header img{
      width:58px;
      height:58px;
      border-radius:16px;
      object-fit:cover
    }

    .preview-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:10px
    }

    .preview-metric{
      padding:12px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.07);
      background:rgba(255,255,255,.03)
    }

    .preview-metric small{
      display:block;
      color:var(--muted);
      font-size:11px;
      margin-bottom:6px
    }

    .preview-metric strong{
      font-size:15px
    }

    .quick-lookup-shell,
    .drawer-hero{
      position:relative;
      overflow:hidden;
      padding:18px;
      border-radius:22px;
      border:1px solid rgba(163,184,255,.12);
      background:linear-gradient(180deg, rgba(17,27,44,.96), rgba(9,14,24,.98));
      box-shadow:var(--shadow-soft);
    }

    .quick-lookup-shell::before,
    .drawer-hero::before{
      content:"";
      position:absolute;
      inset:0 auto auto 0;
      width:100%;
      height:2px;
      background:linear-gradient(90deg, rgba(56,189,248,.95), rgba(96,165,250,.12));
      opacity:.9;
    }

    .quick-lookup-shell.band-medium::before,
    .drawer-hero.band-medium::before{
      background:linear-gradient(90deg, rgba(245,158,11,.98), rgba(245,158,11,.12));
    }

    .quick-lookup-shell.band-high::before,
    .drawer-hero.band-high::before{
      background:linear-gradient(90deg, rgba(249,115,22,.98), rgba(249,115,22,.12));
    }

    .quick-lookup-shell.band-critical::before,
    .drawer-hero.band-critical::before{
      background:linear-gradient(90deg, rgba(239,68,68,.98), rgba(239,68,68,.12));
    }

    .quick-lookup-head,
    .drawer-hero-top{
      display:flex;
      justify-content:space-between;
      gap:16px;
      align-items:flex-start;
    }

    .quick-lookup-user,
    .drawer-hero-user{
      display:flex;
      gap:14px;
      min-width:0;
      flex:1;
    }

    .quick-lookup-avatar,
    .drawer-hero-avatar{
      width:60px;
      height:60px;
      border-radius:18px;
      overflow:hidden;
      border:1px solid rgba(148,163,184,.16);
      background:rgba(15,23,42,.72);
      display:flex;
      align-items:center;
      justify-content:center;
      flex-shrink:0;
    }

    .quick-lookup-avatar img,
    .drawer-hero-avatar img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
    }

    .quick-lookup-copy,
    .drawer-hero-copy{
      display:grid;
      gap:5px;
      min-width:0;
    }

    .quick-lookup-copy small,
    .drawer-hero-copy small{
      color:var(--muted2);
      font-size:11px;
      letter-spacing:.16em;
      text-transform:uppercase;
    }

    .quick-lookup-copy strong,
    .drawer-hero-copy strong{
      color:#eef6ff;
      font-size:22px;
      letter-spacing:-.04em;
      line-height:1.05;
    }

    .quick-lookup-copy p,
    .drawer-hero-copy p{
      margin:0;
      color:#a9b9d1;
      line-height:1.6;
      word-break:break-word;
    }

    .quick-lookup-side,
    .drawer-hero-side{
      display:grid;
      gap:10px;
      min-width:156px;
      justify-items:end;
    }

    .quick-lookup-side .state-pill,
    .drawer-hero-side .state-pill{
      min-width:unset;
    }

    .quick-lookup-chip-row,
    .drawer-hero-chip-row{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:14px;
    }

    .quick-lookup-chip,
    .drawer-hero-chip{
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(148,163,184,.12);
      background:rgba(15,23,42,.72);
      color:#c7d5ea;
      font-size:11px;
      line-height:1;
    }

    .quick-lookup-grid{
      margin-top:14px;
    }

    .quick-lookup-note,
    .drawer-hero-note{
      margin-top:14px;
      padding:13px 14px;
      border-radius:16px;
      border:1px solid rgba(148,163,184,.12);
      background:rgba(255,255,255,.035);
    }

    .quick-lookup-note small,
    .drawer-hero-note small{
      display:block;
      margin-bottom:6px;
      color:var(--muted2);
      font-size:11px;
      letter-spacing:.14em;
      text-transform:uppercase;
    }

    .quick-lookup-note strong,
    .drawer-hero-note strong{
      display:block;
      color:#eef6ff;
      line-height:1.6;
      font-size:14px;
    }

    .quick-lookup-card{
      padding:18px;
    }

    .wl-lookup-summary{
      display:grid;
      grid-template-columns:minmax(0,1.14fr) minmax(320px,.86fr);
      gap:14px;
      align-items:start;
    }

    .wl-lookup-summary.is-single{
      grid-template-columns:minmax(0,1fr);
    }

    .wl-lookup-summary > *{
      min-width:0;
    }

    .wl-history-stack{
      display:grid;
      gap:14px;
      min-width:0;
      align-content:start;
    }

    .wl-modal-scene{
      display:grid;
      gap:16px;
    }

    .wl-modal-scene.enter-from-left{
      animation:wlModalSceneEnterFromLeft .34s cubic-bezier(.22,1,.36,1);
    }

    .wl-modal-scene.enter-from-right{
      animation:wlModalSceneEnterFromRight .34s cubic-bezier(.22,1,.36,1);
    }

    @keyframes wlModalSceneEnterFromLeft{
      0%{
        opacity:.55;
        transform:translate3d(-42px, 0, 0) scale(.988);
      }
      100%{
        opacity:1;
        transform:translate3d(0, 0, 0) scale(1);
      }
    }

    @keyframes wlModalSceneEnterFromRight{
      0%{
        opacity:.55;
        transform:translate3d(42px, 0, 0) scale(.988);
      }
      100%{
        opacity:1;
        transform:translate3d(0, 0, 0) scale(1);
      }
    }

    .wl-history-card{
      position:relative;
      overflow:hidden;
      display:grid;
      gap:14px;
      align-content:start;
      min-width:0;
      padding:18px;
      border-radius:22px;
      border:1px solid rgba(163,184,255,.12);
      background:linear-gradient(180deg, rgba(15,23,38,.96), rgba(8,13,24,.98));
      box-shadow:var(--shadow-soft);
    }

    .wl-history-card::before{
      content:"";
      position:absolute;
      inset:0 auto auto 0;
      width:100%;
      height:2px;
      background:linear-gradient(90deg, rgba(129,140,248,.95), rgba(129,140,248,.08));
      opacity:.92;
    }

    .wl-history-card.is-forward::before{
      background:linear-gradient(90deg, rgba(52,211,153,.95), rgba(52,211,153,.08));
    }

    .wl-history-head{
      display:flex;
      justify-content:space-between;
      gap:12px;
      align-items:flex-start;
    }

    .wl-history-copy{
      display:grid;
      gap:6px;
      min-width:0;
    }

    .wl-history-copy small{
      color:var(--muted2);
      font-size:11px;
      letter-spacing:.16em;
      text-transform:uppercase;
    }

    .wl-history-copy strong{
      color:#eef6ff;
      font-size:20px;
      letter-spacing:-.04em;
      line-height:1.08;
      word-break:break-word;
    }

    .wl-history-copy p{
      margin:0;
      color:#aab9d0;
      line-height:1.55;
      word-break:break-word;
    }

    .wl-history-badges{
      display:flex;
      flex-wrap:wrap;
      justify-content:flex-end;
      gap:8px;
    }

    .wl-history-meta{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:10px;
    }

    .wl-history-answer-list{
      display:grid;
      gap:10px;
    }

    .wl-history-answer-item{
      padding:12px 13px;
      border-radius:16px;
      border:1px solid rgba(148,163,184,.12);
      background:rgba(255,255,255,.03);
    }

    .wl-history-answer-item strong{
      display:block;
      margin-bottom:6px;
      color:#dce8ff;
      font-size:13px;
      line-height:1.45;
    }

    .wl-history-answer-item span{
      display:block;
      color:#a8b7ce;
      font-size:13px;
      line-height:1.55;
      white-space:pre-wrap;
      word-break:break-word;
    }

    .wl-history-empty{
      display:grid;
      align-items:center;
      min-height:220px;
      color:var(--muted);
      line-height:1.65;
    }

    .wl-nav-card{
      position:relative;
      overflow:hidden;
      display:grid;
      gap:14px;
      align-content:start;
      min-width:0;
      padding:18px;
      border-radius:22px;
      border:1px solid rgba(163,184,255,.12);
      background:linear-gradient(180deg, rgba(15,23,38,.96), rgba(8,13,24,.98));
      box-shadow:var(--shadow-soft);
    }

    .wl-nav-card::before{
      content:"";
      position:absolute;
      inset:0 auto auto 0;
      width:100%;
      height:2px;
      background:linear-gradient(90deg, rgba(96,165,250,.95), rgba(52,211,153,.08));
      opacity:.92;
    }

    .wl-nav-head{
      display:flex;
      justify-content:space-between;
      align-items:flex-start;
      gap:12px;
    }

    .wl-nav-copy{
      display:grid;
      gap:6px;
      min-width:0;
    }

    .wl-nav-copy small{
      color:var(--muted2);
      font-size:11px;
      letter-spacing:.16em;
      text-transform:uppercase;
    }

    .wl-nav-copy strong{
      color:#eef6ff;
      font-size:20px;
      letter-spacing:-.04em;
      line-height:1.08;
    }

    .wl-nav-copy p{
      margin:0;
      color:#aab9d0;
      line-height:1.55;
    }

    .wl-nav-position{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:34px;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(96,165,250,.18);
      background:rgba(37,99,235,.12);
      color:#dbeafe;
      font-size:11px;
      font-weight:800;
      letter-spacing:.12em;
      text-transform:uppercase;
      white-space:nowrap;
    }

    .wl-nav-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:10px;
    }

    .wl-nav-action{
      display:grid;
      gap:8px;
      min-width:0;
      padding:14px 15px;
      border-radius:18px;
      border:1px solid rgba(148,163,184,.14);
      background:rgba(255,255,255,.03);
      color:#eef6ff;
      text-align:left;
      cursor:pointer;
      transition:transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
    }

    .wl-nav-action:hover:not(:disabled){
      transform:translateY(-1px);
      border-color:rgba(96,165,250,.22);
      background:rgba(255,255,255,.045);
      box-shadow:0 14px 30px rgba(2,6,14,.16);
    }

    .wl-nav-action:disabled,
    .wl-nav-action.is-disabled{
      cursor:not-allowed;
      opacity:.5;
      transform:none;
      box-shadow:none;
    }

    .wl-nav-action small{
      color:var(--muted2);
      font-size:11px;
      letter-spacing:.14em;
      text-transform:uppercase;
    }

    .wl-nav-action strong{
      color:#eef6ff;
      font-size:15px;
      line-height:1.35;
      word-break:break-word;
    }

    .wl-nav-action span{
      color:#9fb0cb;
      font-size:12px;
      line-height:1.55;
      word-break:break-word;
    }

    .wl-nav-action[data-dir="older"]{
      border-color:rgba(129,140,248,.18);
    }

    .wl-nav-action[data-dir="newer"]{
      border-color:rgba(52,211,153,.18);
    }

    .quick-lookup-shell.is-loading{
      pointer-events:none;
    }

    .wl-loading-head{
      display:flex;
      justify-content:space-between;
      gap:16px;
      align-items:flex-start;
    }

    .wl-loading-user{
      display:flex;
      gap:14px;
      min-width:0;
      flex:1;
    }

    .wl-loading-copy{
      display:grid;
      gap:8px;
      flex:1;
      min-width:0;
    }

    .wl-loading-side{
      display:grid;
      gap:10px;
      min-width:140px;
      justify-items:end;
    }

    .wl-loading-chip-row{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:14px;
    }

    .wl-skeleton-block{
      position:relative;
      overflow:hidden;
      display:block;
      border-radius:14px;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(163,184,255,.08);
    }

    .wl-skeleton-block::after{
      content:"";
      position:absolute;
      inset:0;
      transform:translateX(-100%);
      background:linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
      animation:wlSkeletonPulse 1.25s ease-in-out infinite;
    }

    .wl-skeleton-avatar{
      width:60px;
      height:60px;
      border-radius:18px;
      flex-shrink:0;
    }

    .wl-skeleton-kicker{
      width:124px;
      height:12px;
      border-radius:999px;
    }

    .wl-skeleton-title{
      width:min(280px, 72%);
      height:22px;
    }

    .wl-skeleton-subtitle{
      width:min(320px, 82%);
      height:15px;
    }

    .wl-skeleton-pill{
      width:112px;
      height:34px;
      border-radius:999px;
    }

    .wl-skeleton-pill.short{
      width:96px;
    }

    .wl-skeleton-chip{
      width:132px;
      height:30px;
      border-radius:999px;
    }

    .wl-skeleton-chip.short{
      width:104px;
    }

    .wl-skeleton-metric{
      min-height:66px;
      padding:12px 13px;
      border-radius:14px;
      border:1px solid rgba(163,184,255,.09);
      background:rgba(255,255,255,.028);
      display:grid;
      gap:10px;
    }

    .wl-skeleton-line{
      height:12px;
      width:92px;
      border-radius:999px;
    }

    .wl-skeleton-line.value{
      width:54px;
      height:18px;
      border-radius:10px;
    }

    .wl-skeleton-note{
      width:100%;
      height:16px;
      border-radius:10px;
    }

    @keyframes wlSkeletonPulse{
      100%{
        transform:translateX(100%);
      }
    }

    .quick-lookup-headline{
      display:flex;
      justify-content:space-between;
      gap:14px;
      align-items:flex-start;
      margin-bottom:14px;
    }

    .quick-lookup-headline p{
      margin:4px 0 0;
      color:var(--muted);
      line-height:1.55;
    }

    .drawer-body{
      display:grid;
      gap:14px
    }

    .type-pill{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:4px 8px;
      border-radius:999px;
      font-size:10px;
      font-weight:800;
      text-transform:uppercase;
      letter-spacing:.08em;
      border:1px solid rgba(255,255,255,.08)
    }

    .type-pill::before{
      content:"";
      width:7px;
      height:7px;
      border-radius:999px;
      background:currentColor;
      box-shadow:0 0 0 4px rgba(255,255,255,.04)
    }

    .type-pill.blacklist{background:rgba(239,68,68,.14);color:#ffb1b1}
    .type-pill.warning{background:rgba(245,158,11,.14);color:#ffd27c}
    .type-pill.wl{background:rgba(96,165,250,.14);color:#b8d2ff}
    .type-pill.review{background:rgba(91,140,255,.14);color:#cfe0ff}

    .trend-board{
      display:grid;
      gap:14px
    }

    .trend-summary{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:10px
    }

    .trend-mini{
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.07);
      background:rgba(255,255,255,.03)
    }

    .trend-mini small{
      display:block;
      color:var(--muted);
      font-size:10px;
      margin-bottom:6px;
      text-transform:uppercase;
      letter-spacing:.08em
    }

    .trend-mini strong{
      display:block;
      font-size:18px
    }

    .mini-heatmap{
      display:grid;
      grid-template-columns:repeat(12,minmax(0,1fr));
      gap:6px
    }

    .mini-heat-cell{
      height:42px;
      border-radius:12px;
      background:rgba(255,255,255,.04);
      position:relative;
      overflow:hidden;
      border:1px solid rgba(255,255,255,.05)
    }

    .mini-heat-cell::before{
      content:"";
      position:absolute;
      inset:auto 0 0 0;
      height:calc(var(--fill, 0) * 1%);
      background:linear-gradient(180deg, rgba(122,146,255,.55), rgba(122,146,255,.96))
    }

    .mini-heat-cell span{
      position:absolute;
      inset:8px 0 auto;
      text-align:center;
      color:#d9e4ff;
      font-size:10px;
      font-weight:700
    }

    .mini-heat-cell small{
      position:absolute;
      left:0;
      right:0;
      bottom:6px;
      text-align:center;
      color:#9fb2d8;
      font-size:9px
    }

    .incident-row{
      border-left:2px solid transparent;
      cursor:pointer;
      transition:background .16s ease,border-color .16s ease,transform .16s ease, box-shadow .16s ease
    }

    .incident-row:hover{
      background:linear-gradient(180deg, rgba(22,31,52,.78), rgba(12,18,34,.9));
      border-left-color:rgba(122,146,255,.42)
    }

    .incident-row.is-fresh{
      box-shadow:inset 0 0 0 1px rgba(122,146,255,.08), 0 8px 20px rgba(2,6,14,.18)
    }

    .incident-row.is-fresh .incident-copy strong{
      text-shadow:0 0 16px rgba(122,146,255,.20)
    }

    .incident-head{display:none;}

    .incident-icon{
      display:none;
    }

    .incident-icon.blacklist{background:#ff8d8d}
    .incident-icon.warning{background:#ffd27c}
    .incident-icon.wl{background:#8fc4ff}

    .incident-row .type-pill::before{
      display:none;
    }

    .drawer-head{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      margin-bottom:16px
    }

    .drawer-head h3{
      margin:0 0 6px;
      font-size:20px
    }

    .drawer-body{
      display:grid;
      gap:14px
    }

    .drawer-card{
      padding:14px;
      border-radius:16px;
      border:1px solid rgba(255,255,255,.08);
      background:rgba(255,255,255,.03)
    }

    .drawer-card h4{
      margin:0 0 10px;
      font-size:14px
    }

    .drawer-actions{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:10px
    }

    .drawer-memory{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
      margin-bottom:14px;
    }

    .drawer-memory-pill{
      border:none;
      cursor:pointer;
      border-radius:999px;
      padding:7px 11px;
      background:rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.07);
      color:#dce8ff;
      font-size:11px;
      font-weight:700;
    }

    .drawer-memory-pill.active{
      background:rgba(91,140,255,.14);
      border-color:rgba(91,140,255,.28);
      color:#fff;
    }

    .drawer-timeline{
      display:grid;
      gap:10px
    }

    .replay-timeline .drawer-event{
      animation:replayReveal .45s ease both;
    }

    @keyframes replayReveal{
      from{opacity:0;transform:translateY(6px)}
      to{opacity:1;transform:translateY(0)}
    }

    .drawer-board{
      display:grid;
      gap:10px;
    }

    .board-card{
      border:1px solid rgba(255,255,255,.07);
      border-radius:14px;
      padding:12px;
      background:rgba(7,10,25,.34);
    }

    .board-card strong{
      display:block;
      color:#eef4ff;
      font-size:13px;
      margin-bottom:6px;
    }

    .board-card span{
      display:block;
      color:#b9cae9;
      font-size:12px;
      line-height:1.5;
    }

    @keyframes radarSweep{
      from{transform:rotate(0deg)}
      to{transform:rotate(360deg)}
    }

    @keyframes radarPulse{
      0%,100%{transform:scale(.92);opacity:.82}
      50%{transform:scale(1.08);opacity:1}
    }

    .modal-backdrop.action-modal{
      display:none;
      position:fixed;
      inset:0;
      background:rgba(4,6,13,.72);
      backdrop-filter:blur(10px);
      z-index:80;
      align-items:center;
      justify-content:center;
      padding:20px;
    }

    .action-confirm-modal{
      width:min(560px, 100%);
      border-radius:22px;
      border:1px solid rgba(255,255,255,.08);
      background:
        radial-gradient(circle at top right, rgba(91,140,255,.16), transparent 28%),
        linear-gradient(180deg, rgba(18,26,48,.98), rgba(9,13,24,.98));
      box-shadow:0 30px 80px rgba(0,0,0,.45);
      padding:20px;
    }

    .action-confirm-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:10px;
      margin:16px 0;
    }

    .action-confirm-item{
      padding:11px 12px;
      border-radius:14px;
      background:rgba(255,255,255,.03);
      border:1px solid rgba(255,255,255,.06);
    }

    .action-confirm-item small{
      display:block;
      color:var(--muted);
      font-size:10px;
      text-transform:uppercase;
      letter-spacing:.08em;
      margin-bottom:6px;
    }

    .action-confirm-item strong{
      color:#eef4ff;
      font-size:13px;
      line-height:1.5;
    }

    .drawer-event{
      display:grid;
      grid-template-columns:auto 1fr auto;
      gap:10px;
      align-items:start;
      padding:10px 0;
      border-bottom:1px solid rgba(255,255,255,.06)
    }

    .drawer-event:last-child{border-bottom:none}

    .drawer-dot{
      width:10px;
      height:10px;
      border-radius:999px;
      margin-top:6px;
      background:#7c8db5
    }

    .drawer-dot.blacklist_active,.drawer-dot.blacklist,.drawer-dot.critical{background:#ef4444}
    .drawer-dot.warning,.drawer-dot.watch{background:#f59e0b}
    .drawer-dot.wl,.drawer-dot.review{background:#60a5fa}
    .drawer-dot.identifiers{background:#34d399}

    .notes-panel textarea{
      min-height:110px
    }

    .notes-meta{
      color:#9fb2d8;
      font-size:12px;
      margin-top:10px
    }

    .footer-brand{
      display:flex;
      justify-content:center;
      align-items:center;
      gap:12px;
      margin-top:20px;
      padding:14px 18px;
      border-radius:20px;
      border:1px solid rgba(163,184,255,.1);
      background:linear-gradient(180deg, rgba(18,27,47,.72), rgba(8,13,24,.92))
    }

    .footer-brand-mark{
      width:36px;
      height:36px;
      border-radius:12px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:linear-gradient(135deg,var(--accent),var(--accent2));
      font-weight:800
    }

    .input,select,textarea{
      width:100%;
      background:linear-gradient(180deg, rgba(11,18,32,.96), rgba(13,21,37,.96));
      border:1px solid rgba(163,184,255,.1);
      border-radius:14px;
      color:var(--text);
      padding:11px 13px;
      font-size:13px;
      color-scheme:dark;
      transition:border-color .16s ease, box-shadow .16s ease, background .16s ease
    }

    .input:focus,select:focus,textarea:focus{
      outline:none;
      border-color:rgba(102,163,255,.4);
      box-shadow:0 0 0 4px rgba(102,163,255,.12);
      background:linear-gradient(180deg, rgba(13,21,37,.98), rgba(15,24,43,.98))
    }

    select option,
    select optgroup{
      background:#0f182b;
      color:#eef4ff;
    }

    textarea{
      min-height:120px;
      resize:vertical
    }

    .btn{
      border:1px solid transparent;
      border-radius:14px;
      padding:10px 14px;
      font-weight:800;
      font-size:13px;
      cursor:pointer;
      color:white;
      background:linear-gradient(135deg,var(--accent),#4f7cff 62%,var(--accent2));
      box-shadow:0 10px 24px rgba(77,208,225,.14);
      transition:transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease
    }

    .btn:hover{
      transform:translateY(-1px);
      box-shadow:0 14px 30px rgba(77,208,225,.18)
    }

    .btn.secondary{
      background:rgba(255,255,255,.04);
      border-color:rgba(163,184,255,.1);
      box-shadow:none
    }

    .btn.green{
      background:linear-gradient(135deg,#16a34a,#22c55e)
    }

    .btn.red{
      background:linear-gradient(135deg,#dc2626,#ef4444)
    }

    .btn.yellow{
      background:linear-gradient(135deg,#d97706,#f59e0b)
    }

    .toolbar{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      align-items:center
    }

    .setting-card{
      background:linear-gradient(180deg, rgba(18,28,48,.76), rgba(9,14,26,.9));
      border:1px solid rgba(163,184,255,.1);
      border-radius:18px;
      padding:16px
    }

    .lookup{
      display:grid;
      grid-template-columns:1fr;
      gap:16px
    }

    .info-list{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:12px
    }

    .info-item{
      background:rgba(255,255,255,.028);
      border:1px solid rgba(163,184,255,.09);
      border-radius:14px;
      padding:12px 13px
    }

    .info-item small{
      display:block;
      color:var(--muted);
      margin-bottom:6px
    }

    .info-item strong{
      font-size:14px;
      word-break:break-all
    }

    .table-wrap{
      overflow:auto;
      border-radius:18px;
      border:1px solid rgba(163,184,255,.1);
      background:rgba(255,255,255,.02)
    }

    table{
      width:100%;
      border-collapse:collapse;
      min-width:1120px
    }

    th,td{
      text-align:left;
      padding:12px 13px;
      border-bottom:1px solid rgba(255,255,255,.06);
      font-size:13px;
      vertical-align:top
    }

    th{
      color:var(--muted);
      font-size:12px;
      text-transform:uppercase;
      letter-spacing:.08em;
      background:rgba(255,255,255,.03)
    }

    .badge{
      display:inline-flex;
      align-items:center;
      border-radius:999px;
      padding:6px 10px;
      font-size:12px;
      font-weight:700
    }

    .badge.green{background:rgba(34,197,94,.12);color:#86efac}
    .badge.red{background:rgba(239,68,68,.12);color:#fca5a5}
    .badge.yellow{background:rgba(245,158,11,.12);color:#fcd34d}
    .badge.blue{background:rgba(91,140,255,.12);color:#adc6ff}

    .muted{color:var(--muted)}
    .hidden{display:none!important}

    .pill{
      display:inline-flex;
      align-items:center;
      padding:9px 13px;
      border-radius:999px;
      border:1px solid rgba(163,184,255,.1);
      background:rgba(255,255,255,.04);
      font-weight:700;
      font-size:12px
    }

    .link-btn{
      background:none;
      border:none;
      color:#adc6ff;
      cursor:pointer;
      padding:0;
      font:inherit;
      font-weight:700
    }

    .filter-row{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-bottom:16px
    }

    .filter-row .input,
    .filter-row select{
      max-width:260px;
    }

    .user-card{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:220px;
    }

    .user-avatar{
      width:42px;
      height:42px;
      min-width:42px;
      border-radius:50%;
      padding:3px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background:
        radial-gradient(circle at 30% 25%, rgba(255,255,255,.32), transparent 26%),
        linear-gradient(180deg, rgba(102,163,255,.26), rgba(77,208,225,.16));
      box-shadow:
        0 0 0 1px rgba(255,255,255,.08),
        0 14px 26px rgba(2,6,14,.28);
      flex-shrink:0;
    }

    .user-card img{
      width:100%;
      height:100%;
      border-radius:50%;
      object-fit:cover;
      border:1px solid rgba(170,191,255,.34);
      background:linear-gradient(180deg, #111827, #0b1220);
      flex-shrink:0;
    }

    .user-meta{
      display:flex;
      flex-direction:column;
      min-width:0;
    }

    .user-name{
      font-weight:700;
      color:#eef4ff;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      max-width:240px;
    }

    .user-sub{
      font-size:12px;
      color:#b7c4e3;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      max-width:240px;
    }

    .user-id{
      font-size:11px;
      color:#8da0c7;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      max-width:240px;
    }

    .modal-backdrop{
      position:fixed;
      inset:0;
      background:rgba(0,0,0,.62);
      display:none;
      align-items:center;
      justify-content:center;
      padding:24px;
      z-index:1000
    }

    .modal{
      width:min(980px,100%);
      max-height:90vh;
      overflow-y:auto;
      overflow-x:hidden;
      overscroll-behavior:contain;
      scrollbar-gutter:stable both-edges;
      scrollbar-width:thin;
      scrollbar-color:rgba(120,145,255,.82) rgba(255,255,255,.04);
      background:linear-gradient(180deg, rgba(18,27,47,.96), rgba(8,13,24,.98));
      border:1px solid rgba(163,184,255,.1);
      border-radius:24px;
      box-shadow:var(--shadow);
      padding:22px
    }

    .modal-header{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:16px;
      margin-bottom:18px
    }

    .modal-header h3{margin:0;font-size:24px}

    .close-btn{
      border:none;
      background:rgba(255,255,255,.06);
      color:white;
      border-radius:12px;
      padding:10px 14px;
      cursor:pointer
    }

    .qa-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:16px
    }

    .qa-card{
      background:rgba(255,255,255,.03);
      border:1px solid rgba(163,184,255,.1);
      border-radius:18px;
      padding:16px;
    }

    .qa-card h4{
      margin:0 0 10px 0;
      font-size:14px;
      color:#cfe0ff;
    }

    .qa-card p{
      margin:0;
      line-height:1.6;
      color:#eef4ff;
      white-space:pre-wrap;
      word-break:break-word;
    }

    .meta-grid{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:12px;
      margin-bottom:18px;
    }

    .meta-item{
      background:rgba(255,255,255,.03);
      border:1px solid rgba(163,184,255,.1);
      border-radius:16px;
      padding:13px;
    }

    .meta-item small{
      display:block;
      color:var(--muted);
      margin-bottom:6px
    }

    .meta-item strong{
      font-size:14px;
      word-break:break-word
    }

    .login-overlay{
      position:fixed;
      inset:0;
      display:none;
      align-items:flex-start;
      justify-content:flex-start;
      overflow-y:auto;
      overflow-x:hidden;
      scrollbar-width:thin;
      scrollbar-color:rgba(102,163,255,.55) rgba(255,255,255,.04);
      background:
        radial-gradient(circle at top left, rgba(96,165,250,.18), transparent 28%),
        radial-gradient(circle at top right, rgba(34,197,94,.12), transparent 24%),
        linear-gradient(180deg, rgba(3,7,18,.94), rgba(4,9,20,.98));
      z-index:2000;
      padding:28px
    }

    .login-overlay::-webkit-scrollbar{
      width:10px;
    }

    .login-overlay::-webkit-scrollbar-track{
      background:rgba(255,255,255,.04);
      border-radius:999px;
    }

    .login-overlay::-webkit-scrollbar-thumb{
      background:linear-gradient(180deg, rgba(128,152,255,.92), rgba(88,106,205,.92));
      border-radius:999px;
      border:1px solid rgba(17,24,39,.55);
    }

    .login-card{
      width:min(1320px,100%);
      min-height:calc(100vh - 56px);
      background:linear-gradient(180deg, rgba(11,18,34,.98), rgba(6,11,22,.98));
      border:1px solid rgba(163,184,255,.12);
      border-radius:36px;
      box-shadow:0 34px 90px rgba(2,6,23,.45);
      padding:24px 28px 28px;
      position:relative;
      overflow:hidden;
      animation:loginRise .45s ease both;
      margin:0 auto;
      flex:none;
    }

    .login-card::before{
      content:"";
      position:absolute;
      inset:auto -120px -120px auto;
      width:280px;
      height:280px;
      border-radius:999px;
      background:radial-gradient(circle, rgba(59,130,246,.18), transparent 68%);
      pointer-events:none;
    }

    .login-card::after{
      content:"";
      position:absolute;
      inset:0;
      pointer-events:none;
      background:
        linear-gradient(135deg, transparent 0%, rgba(255,255,255,.035) 45%, transparent 70%),
        radial-gradient(circle at 24% 22%, rgba(77,208,225,.08), transparent 22%);
      opacity:.7;
    }

    .login-shell{
      display:grid;
      grid-template-columns:1fr;
      gap:24px;
      position:relative;
      z-index:1;
    }

    .login-topbar{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:18px;
      flex-wrap:wrap;
      padding:4px 2px 18px;
      border-bottom:1px solid rgba(163,184,255,.1);
    }

    .login-brandline{
      display:flex;
      align-items:center;
      gap:16px;
      min-width:0;
    }

    .login-brandmark{
      width:58px;
      height:58px;
      border-radius:18px;
      border:1px solid rgba(163,184,255,.16);
      background:linear-gradient(180deg, rgba(22,34,58,.95), rgba(12,18,30,.98));
      display:grid;
      place-items:center;
      overflow:hidden;
      flex:none;
      box-shadow:inset 0 1px 0 rgba(255,255,255,.04);
    }

    .login-brandmark img{
      width:100%;
      height:100%;
      object-fit:contain;
      display:block;
    }

    .login-brandcopy{
      min-width:0;
    }

    .login-kicker{
      display:inline-flex;
      align-items:center;
      gap:10px;
      width:max-content;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(96,165,250,.22);
      background:rgba(59,130,246,.08);
      color:#cfe0ff;
      font-size:12px;
      letter-spacing:.08em;
      text-transform:uppercase;
      font-weight:700;
    }

    .login-brandname{
      margin-top:12px;
      font-size:32px;
      line-height:1;
      letter-spacing:-.04em;
      font-weight:900;
      font-family:"Segoe UI Variable Display","Segoe UI",Inter,Arial,sans-serif;
    }

    .login-top-actions{
      display:flex;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }

    .login-top-links{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
    }

    .login-top-link{
      display:inline-flex;
      align-items:center;
      min-height:40px;
      padding:0 14px;
      border-radius:999px;
      border:1px solid rgba(163,184,255,.12);
      background:rgba(255,255,255,.035);
      color:#d8e7ff;
      font-size:13px;
      font-weight:700;
      transition:border-color .18s ease,transform .18s ease,background .18s ease;
    }

    .login-top-link:hover{
      transform:translateY(-1px);
      border-color:rgba(103,164,255,.3);
      background:rgba(255,255,255,.055);
    }

    .login-stage{
      display:grid;
      grid-template-columns:minmax(0,1.12fr) minmax(360px,.88fr);
      gap:30px;
      align-items:center;
    }

    .login-hero{
      display:flex;
      flex-direction:column;
      justify-content:center;
      gap:20px;
      padding:8px 4px 0;
    }

    .login-card h2{
      margin:0;
      font-size:clamp(52px,5vw,76px);
      line-height:.95;
      max-width:840px;
      letter-spacing:-.055em;
    }

    .login-lead{
      margin:0;
      color:var(--muted);
      line-height:1.8;
      font-size:17px;
      max-width:700px;
    }

    .login-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:6px;
    }

    .login-actions .btn{
      min-width:172px;
      justify-content:center;
    }

    .btn.ghost{
      background:rgba(255,255,255,.04);
      border:1px solid rgba(163,184,255,.12);
      color:#eef4ff;
    }

    .login-proof-strip{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:12px;
      margin-top:4px;
    }

    .login-proof{
      border:1px solid rgba(163,184,255,.1);
      border-radius:22px;
      background:linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
      padding:16px 18px;
    }

    .login-proof-label{
      display:block;
      color:#8aa2cc;
      font-size:11px;
      letter-spacing:.12em;
      text-transform:uppercase;
      font-weight:800;
      margin-bottom:10px;
    }

    .login-proof strong{
      display:block;
      color:#eef4ff;
      line-height:1.4;
      font-size:16px;
    }

    .login-scene{
      display:grid;
      grid-template-rows:minmax(0,1fr) auto;
      gap:18px;
      min-height:460px;
      padding:24px;
      border-radius:30px;
      border:1px solid rgba(163,184,255,.12);
      background:
        linear-gradient(180deg, rgba(10,18,34,.72), rgba(6,12,24,.96)),
        radial-gradient(circle at 12% 14%, rgba(77,208,225,.22), transparent 30%),
        url('/discord-assets/vibe-welcome-bg.svg') center/cover no-repeat;
      overflow:hidden;
      position:relative;
    }

    .login-scene::before{
      content:"";
      position:absolute;
      inset:auto -12% -18% 22%;
      height:58%;
      background:
        linear-gradient(180deg, rgba(7,12,24,.14), rgba(7,12,24,.68)),
        url('/discord-assets/vibe-boost-bg.svg') center/cover no-repeat;
      border-radius:34px;
      border:1px solid rgba(163,184,255,.08);
      opacity:.34;
      transform:rotate(-4deg);
      pointer-events:none;
    }

    .login-scene-core{
      position:relative;
      display:grid;
      place-items:center;
      min-height:280px;
      isolation:isolate;
    }

    .login-scene-ring{
      position:absolute;
      border-radius:999px;
      border:1px solid rgba(103,164,255,.16);
      animation:loginOrbit 14s linear infinite;
    }

    .login-scene-ring.ring-a{
      width:82%;
      height:82%;
    }

    .login-scene-ring.ring-b{
      width:58%;
      height:58%;
      animation-duration:18s;
      transform:rotate(18deg);
      border-color:rgba(77,208,225,.16);
    }

    .login-scene-ring.ring-c{
      width:34%;
      height:34%;
      animation-duration:10s;
      transform:rotate(-12deg);
    }

    .login-scene-mark{
      width:84px;
      height:84px;
      padding:12px;
      border-radius:26px;
      border:1px solid rgba(163,184,255,.16);
      background:linear-gradient(180deg, rgba(25,40,68,.95), rgba(11,18,30,.98));
      box-shadow:0 26px 60px rgba(9,16,29,.42);
      display:grid;
      place-items:center;
      position:relative;
      z-index:2;
      animation:loginFloat 6s ease-in-out infinite;
      transform:translate(-168px, -96px);
    }

    .login-scene-mark img{
      width:100%;
      height:100%;
      object-fit:contain;
      display:block;
    }

    .login-scene-panel{
      position:relative;
      z-index:2;
      width:min(100%, 470px);
      padding:22px;
      border-radius:28px;
      border:1px solid rgba(163,184,255,.14);
      background:
        linear-gradient(180deg, rgba(11,20,36,.94), rgba(8,13,24,.96)),
        radial-gradient(circle at top right, rgba(94,203,255,.12), transparent 28%);
      box-shadow:0 26px 70px rgba(4,9,19,.38);
      backdrop-filter:blur(18px);
    }

    .login-scene-panel-head{
      display:grid;
      grid-template-columns:minmax(0,1fr) auto;
      gap:16px;
      align-items:start;
    }

    .login-scene-panel-kicker{
      color:#8fb4e8;
      font-size:10px;
      font-weight:800;
      letter-spacing:.14em;
      text-transform:uppercase;
      margin-bottom:10px;
    }

    .login-scene-panel-head strong{
      display:block;
      font-size:24px;
      line-height:1.06;
      font-weight:900;
      letter-spacing:-.03em;
    }

    .login-scene-panel-copy{
      margin:14px 0 0;
      color:var(--muted);
      line-height:1.75;
      font-size:14px;
      max-width:38ch;
    }

    .login-scene-panel-badge{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-width:62px;
      height:38px;
      padding:0 14px;
      border-radius:999px;
      border:1px solid rgba(103,164,255,.18);
      background:rgba(255,255,255,.04);
      color:#dceaff;
      font-size:12px;
      font-weight:800;
      letter-spacing:.12em;
      text-transform:uppercase;
    }

    .login-scene-panel-grid{
      display:grid;
      grid-template-columns:repeat(3, minmax(0,1fr));
      gap:10px;
      margin-top:18px;
    }

    .login-scene-panel-stat{
      padding:14px 14px 16px;
      border-radius:18px;
      border:1px solid rgba(163,184,255,.08);
      background:rgba(255,255,255,.035);
      min-width:0;
    }

    .login-scene-panel-stat small{
      display:block;
      margin-bottom:8px;
      color:#8aa2cc;
      font-size:10px;
      font-weight:800;
      letter-spacing:.12em;
      text-transform:uppercase;
    }

    .login-scene-panel-stat strong{
      display:block;
      color:#eef4ff;
      line-height:1.45;
      font-size:14px;
    }

    .login-scene-list{
      display:grid;
      gap:12px;
    }

    .login-scene-item{
      display:grid;
      grid-template-columns:auto 1fr;
      gap:12px;
      align-items:start;
      padding-top:14px;
      border-top:1px solid rgba(163,184,255,.08);
    }

    .login-scene-item:first-child{
      padding-top:0;
      border-top:none;
    }

    .scene-dot{
      width:10px;
      height:10px;
      border-radius:999px;
      background:linear-gradient(135deg, #67a4ff, #5be2ff);
      box-shadow:0 0 0 5px rgba(103,164,255,.08);
      margin-top:7px;
    }

    .login-scene-item strong{
      display:block;
      margin-bottom:6px;
      font-size:15px;
    }

    .login-scene-item p{
      margin:0;
      color:var(--muted);
      line-height:1.65;
      font-size:13px;
    }

    .login-detail-row{
      display:grid;
      grid-template-columns:minmax(0,1fr) minmax(0,.94fr);
      gap:18px;
    }

    .login-detail-panel{
      border:1px solid rgba(163,184,255,.12);
      border-radius:24px;
      background:linear-gradient(180deg, rgba(17,25,45,.92), rgba(9,15,29,.98));
      padding:22px;
      display:grid;
      gap:16px;
      box-shadow:0 20px 46px rgba(2,6,23,.25);
    }

    .login-detail-label{
      color:#8aa2cc;
      font-size:11px;
      letter-spacing:.12em;
      text-transform:uppercase;
      font-weight:800;
    }

    .login-detail-panel h3{
      margin:0;
      font-size:26px;
      line-height:1.08;
      letter-spacing:-.03em;
    }

    .login-detail-copy{
      margin:0;
      color:var(--muted);
      line-height:1.75;
    }

    .login-steps{
      display:grid;
      gap:14px;
    }

    .login-step{
      display:grid;
      grid-template-columns:44px 1fr;
      gap:14px;
      align-items:start;
      padding-top:14px;
      border-top:1px solid rgba(163,184,255,.08);
    }

    .login-step:first-child{
      padding-top:0;
      border-top:none;
    }

    .login-step-index{
      display:grid;
      place-items:center;
      width:44px;
      height:44px;
      border-radius:14px;
      border:1px solid rgba(103,164,255,.18);
      background:linear-gradient(180deg, rgba(103,164,255,.16), rgba(103,164,255,.06));
      color:#dbeafe;
      font-size:14px;
      font-weight:900;
      letter-spacing:.06em;
    }

    .login-step p{
      margin:0;
      color:var(--muted);
      line-height:1.7;
      font-size:14px;
    }

    .login-inline-links{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
    }

    .login-inline-link{
      display:inline-flex;
      align-items:center;
      min-height:40px;
      padding:0 14px;
      border-radius:999px;
      border:1px solid rgba(163,184,255,.12);
      background:rgba(255,255,255,.035);
      color:#d8e7ff;
      font-size:13px;
      font-weight:700;
    }

    .login-mini-points{
      display:grid;
      gap:10px;
    }

    .login-mini-points div{
      padding:11px 13px;
      border-radius:16px;
      background:rgba(255,255,255,.035);
      border:1px solid rgba(163,184,255,.08);
      color:#dbeafe;
      font-size:13px;
      line-height:1.6;
    }

    .login-support-note{
      color:var(--muted);
      font-size:13px;
      line-height:1.6;
    }

    @keyframes loginRise{
      from{opacity:0;transform:translateY(18px) scale(.985)}
      to{opacity:1;transform:translateY(0) scale(1)}
    }

    @keyframes loginFloat{
      0%,100%{transform:translateY(0)}
      50%{transform:translateY(-8px)}
    }

    @keyframes loginOrbit{
      from{transform:rotate(0deg)}
      to{transform:rotate(360deg)}
    }

    .settings-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:16px;
    }

    .settings-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:16px;
    }

    .top-user{
      display:flex;
      align-items:center;
      gap:12px;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(163,184,255,.1);
      background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025));
    }

    .top-user img{
      width:34px;
      height:34px;
      border-radius:12px;
      object-fit:cover;
      border:1px solid rgba(163,184,255,.12);
      background:#111827;
    }

    .top-user-text{
      display:flex;
      flex-direction:column;
      line-height:1.2;
    }

    .top-user-text strong{font-size:13px}
    .top-user-text span{font-size:11px;color:var(--muted)}

    #serverPickerSection{
      display:none;
      width:min(1180px, 100%);
      margin:0 auto;
    }

    .server-picker{
      padding:16px 0 0;
    }

    .server-picker-shell{
      display:grid;
      gap:24px;
    }

    .server-picker-head{
      display:grid;
      gap:12px;
      max-width:760px;
      margin:0 auto;
      text-align:center;
    }

    .server-picker-kicker{
      font-size:12px;
      letter-spacing:.18em;
      text-transform:uppercase;
      color:#8ea6d7;
      font-weight:800;
    }

    .server-picker-head h2{
      margin:0;
      font-size:clamp(34px, 5vw, 54px);
      line-height:1.02;
      font-weight:900;
      letter-spacing:-.03em;
    }

    .server-picker-head p{
      margin:0;
      color:var(--muted);
      font-size:15px;
      line-height:1.7;
    }

    .server-picker-summary{
      display:flex;
      justify-content:center;
      gap:10px;
      flex-wrap:wrap;
      margin-top:4px;
    }

    .server-picker-summary-pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:10px 14px;
      border-radius:999px;
      border:1px solid rgba(163,184,255,.12);
      background:rgba(12,18,32,.72);
      color:#dce8ff;
      font-size:12px;
      font-weight:700;
      box-shadow:0 12px 28px rgba(2,8,23,.2);
    }

    .server-picker-grid{
      display:grid;
      grid-template-columns:repeat(auto-fit, minmax(248px, 1fr));
      gap:18px;
      align-items:stretch;
    }

    .server-card{
      position:relative;
      overflow:hidden;
      min-height:336px;
      padding:18px;
      border-radius:26px;
      border:1px solid rgba(163,184,255,.12);
      background:linear-gradient(180deg, rgba(17,25,43,.94), rgba(8,13,24,.98));
      box-shadow:0 24px 64px rgba(2,8,23,.3);
      display:grid;
      grid-template-rows:auto 1fr auto;
      gap:18px;
      isolation:isolate;
    }

    .server-card::before{
      content:"";
      position:absolute;
      inset:-8%;
      background-image:var(--server-bg, none);
      background-size:cover;
      background-position:center;
      opacity:.3;
      filter:blur(26px) saturate(1.08);
      transform:scale(1.06);
      z-index:-2;
    }

    .server-card::after{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at top, rgba(255,255,255,.18), transparent 34%),
        linear-gradient(180deg, rgba(8,12,22,.12), rgba(8,12,22,.78) 48%, rgba(8,12,22,.96));
      z-index:-1;
    }

    .server-card.is-current{
      border-color:rgba(102,163,255,.34);
      box-shadow:0 28px 72px rgba(46,98,255,.22);
    }

    .server-card-top{
      display:flex;
      justify-content:space-between;
      align-items:flex-start;
      gap:12px;
    }

    .server-card-badges{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }

    .server-card-badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      min-height:30px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(163,184,255,.12);
      background:rgba(8,12,22,.48);
      color:#dce8ff;
      font-size:11px;
      font-weight:800;
      letter-spacing:.04em;
      text-transform:uppercase;
    }

    .server-card-badge.access{
      color:#cfe1ff;
      background:rgba(102,163,255,.14);
      border-color:rgba(102,163,255,.22);
    }

    .server-card-badge.live{
      color:#8df1b4;
      background:rgba(34,197,94,.14);
      border-color:rgba(34,197,94,.22);
    }

    .server-card-badge.locked{
      color:#ffd58a;
      background:rgba(245,158,11,.14);
      border-color:rgba(245,158,11,.22);
    }

    .server-card-badge.memory{
      color:#d3dcff;
      background:rgba(255,255,255,.06);
    }

    .server-card-avatar{
      width:92px;
      height:92px;
      border-radius:50%;
      margin:6px auto 0;
      display:grid;
      place-items:center;
      position:relative;
      background:radial-gradient(circle at 30% 30%, rgba(255,255,255,.2), rgba(88,116,224,.18) 45%, rgba(10,18,34,.96) 90%);
      border:1px solid rgba(255,255,255,.1);
      box-shadow:0 20px 44px rgba(18,29,65,.34);
      overflow:hidden;
    }

    .server-card-avatar img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
    }

    .server-card-avatar-fallback{
      position:absolute;
      inset:0;
      display:grid;
      place-items:center;
      font-size:28px;
      font-weight:900;
      letter-spacing:.04em;
      color:#f4f8ff;
      text-transform:uppercase;
      background:linear-gradient(180deg, rgba(122,151,255,.16), rgba(20,31,54,.8));
    }

    .server-card-body{
      display:grid;
      align-content:end;
      gap:10px;
    }

    .server-card-name{
      margin:0;
      font-size:28px;
      line-height:1.08;
      font-weight:900;
      letter-spacing:-.03em;
    }

    .server-card-id{
      color:#97acd4;
      font-size:12px;
      font-family:ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    }

    .server-card-copy{
      color:var(--muted);
      font-size:13px;
      line-height:1.65;
      min-height:64px;
    }

    .server-card-foot{
      display:flex;
      justify-content:space-between;
      align-items:flex-end;
      gap:14px;
      flex-wrap:wrap;
    }

    .server-card-status{
      color:#dce8ff;
      font-size:12px;
      line-height:1.55;
      max-width:70%;
    }

    .server-picker-empty{
      grid-column:1 / -1;
      padding:30px;
      border-radius:26px;
      text-align:center;
      display:grid;
      gap:14px;
      justify-items:center;
    }

    .server-picker-empty h3{
      margin:0;
      font-size:24px;
      font-weight:900;
    }

    .server-picker-empty p{
      margin:0;
      color:var(--muted);
      max-width:640px;
      line-height:1.7;
    }

    @media (max-width: 900px){
      body.server-picker-mode .main{
        padding:18px 14px 28px;
      }

      .server-picker-head{
        max-width:none;
      }

      .server-card{
        min-height:302px;
      }

      .server-card-name{
        font-size:24px;
      }

      .server-card-status{
        max-width:none;
      }
    }

    .action-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:16px;
      margin-top:18px;
    }

    .action-row{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin-top:12px;
    }

    .action-row .btn{
      min-width:160px;
    }

    .mini-actions{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
    }

    .mini-actions .btn{
      padding:8px 10px;
      font-size:12px;
      border-radius:10px;
    }

    .radio-wrap{
      display:flex;
      gap:18px;
      flex-wrap:wrap;
      margin-top:14px;
      margin-bottom:12px;
    }

    .radio-wrap label{
      display:flex;
      align-items:center;
      gap:8px;
      color:#dce7ff;
      font-size:14px;
      cursor:pointer;
    }

    .duration-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:12px;
      margin-top:12px;
    }

    .questions-editor{
      display:grid;
      grid-template-columns:1fr;
      gap:16px;
      margin-top:18px;
    }

    .settings-overview{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:10px;
      margin-bottom:12px;
    }

    .settings-overview-card{
      background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.022));
      border:1px solid rgba(163,184,255,.1);
      border-radius:16px;
      padding:11px 13px;
    }

    .settings-overview-card small{
      display:block;
      color:var(--muted);
      font-size:12px;
      margin-bottom:8px;
      text-transform:uppercase;
      letter-spacing:.08em;
    }

    .settings-overview-card strong{
      color:#eef4ff;
      font-size:15px;
      line-height:1.3;
    }

    .settings-stack{
      display:grid;
      gap:16px;
      margin-bottom:16px;
    }

    .settings-group{
      border:1px solid rgba(163,184,255,.1);
      border-radius:18px;
      background:linear-gradient(180deg, rgba(13,22,38,.92), rgba(8,14,26,.98));
      padding:16px;
      box-shadow:0 20px 40px rgba(2,8,23,.24);
    }

    .settings-group-head{
      margin-bottom:12px;
      display:flex;
      justify-content:space-between;
      gap:12px;
      align-items:flex-start;
      flex-wrap:wrap;
    }

    .settings-group-head h4{
      margin:0 0 6px;
      font-size:14px;
      color:#eef4ff;
      letter-spacing:.01em;
    }

    .settings-group-head p{
      margin:0;
      font-size:12px;
      color:var(--muted);
      line-height:1.55;
      max-width:760px;
    }

    .settings-main-grid{
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:12px;
      margin-bottom:14px;
    }

    .settings-mini-card{
      padding:13px;
      border-radius:16px;
      box-shadow:inset 0 1px 0 rgba(255,255,255,.035);
    }

    .settings-mini-card h4{
      margin:0 0 8px;
      font-size:12px;
      text-transform:uppercase;
      letter-spacing:.06em;
      color:#cfdcff;
    }

    .settings-mini-card .input,
    .settings-mini-card textarea,
    .settings-mini-card select{
      font-size:13px;
      padding:9px 11px;
    }

    .settings-span-2{
      grid-column:span 2;
    }

    .settings-span-3{
      grid-column:span 3;
    }

    .settings-span-full{
      grid-column:1 / -1;
    }

    .settings-subgrid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:12px;
    }

    .settings-card-note{
      margin-top:8px;
      color:var(--muted);
      font-size:12px;
      line-height:1.5;
    }

    .questions-box{
      background:linear-gradient(180deg, rgba(18,28,48,.72), rgba(9,14,26,.92));
      border:1px solid rgba(163,184,255,.1);
      border-radius:20px;
      padding:16px;
    }

    .questions-box h4{
      margin:0 0 8px;
      font-size:15px;
    }

    .questions-header{
      display:flex;
      justify-content:space-between;
      align-items:flex-start;
      gap:16px;
      margin-bottom:14px;
    }

    .questions-header p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.55;
      max-width:760px;
    }

    .settings-questions-intro{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:10px;
      margin-bottom:12px;
    }

    .q-input{
      width:100%;
      background:#0b1328;
      border:1px solid rgba(163,184,255,.1);
      border-radius:12px;
      color:#eef4ff;
      padding:9px 11px;
      font-size:13px;
    }

    .q-mini-btn{
      border:none;
      cursor:pointer;
      border-radius:10px;
      padding:8px 10px;
      font-size:12px;
      font-weight:700;
      color:white;
      background:linear-gradient(135deg,var(--accent),var(--accent2));
    }

    .q-mini-btn.red{
      background:linear-gradient(135deg,#dc2626,#ef4444);
    }

    .q-mini-btn.secondary{
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.08);
    }

    .q-toolbar{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      align-items:center;
      justify-content:flex-end;
    }

    .settings-lock-pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:10px 14px;
      border-radius:999px;
      border:1px solid rgba(91,140,255,.2);
      background:rgba(91,140,255,.08);
      color:#dbe7ff;
      font-size:12px;
      font-weight:800;
      letter-spacing:.03em;
      white-space:nowrap;
    }

    .guide-card{
      border:1px solid rgba(255,255,255,.08);
      border-radius:14px;
      padding:12px 14px;
      background:rgba(255,255,255,.025);
    }

    .guide-card small{
      display:block;
      color:var(--muted);
      margin-bottom:8px;
      text-transform:uppercase;
      letter-spacing:.06em;
      font-size:11px;
    }

    .guide-card strong{
      display:block;
      color:#eef4ff;
      margin-bottom:8px;
      font-size:15px;
    }

    .guide-card span{
      display:block;
      color:#b9cae9;
      font-size:13px;
      line-height:1.55;
    }

    .tickets-layout{
      display:grid;
      grid-template-columns:minmax(0, 1.45fr) minmax(320px, .95fr);
      gap:16px;
      align-items:start;
    }

    @media (max-width: 1180px){
      .tickets-layout{
        grid-template-columns:1fr;
      }
    }

    @media (max-width: 860px){
      .ticket-category-grid{
        grid-template-columns:1fr;
      }
    }

    /* Vibe Manager Brand Refresh */
    :root{
      --bg:#050914;
      --panel:#0c1424;
      --panel-2:#111b30;
      --soft:#08101d;
      --soft-2:#0d1627;
      --border:rgba(119,220,255,.12);
      --border-strong:rgba(119,220,255,.26);
      --text:#f5f9ff;
      --muted:#9cb0d3;
      --muted-2:#7388ad;
      --accent:#5ecbff;
      --accent2:#4b8cff;
      --shadow:0 28px 90px rgba(0,0,0,.42);
      --shadow-soft:0 18px 46px rgba(0,0,0,.26);
      --radius:26px;
      --radius-sm:18px;
    }

    body{
      background:
        radial-gradient(circle at 18% 0%, rgba(94,203,255,.14), transparent 26%),
        radial-gradient(circle at 88% 0%, rgba(75,140,255,.12), transparent 24%),
        linear-gradient(180deg, rgba(255,255,255,.02), transparent 24%),
        var(--bg);
    }

    body::before{
      opacity:.12;
      background-size:72px 72px;
    }

    .sidebar{
      width:276px;
      padding:20px 18px;
      background:
        radial-gradient(circle at top, rgba(94,203,255,.08), transparent 24%),
        linear-gradient(180deg, rgba(6,10,18,.98), rgba(7,11,20,.94));
      border-right:1px solid rgba(119,220,255,.12);
      box-shadow:inset -1px 0 0 rgba(255,255,255,.03);
    }

    .brand{
      gap:14px;
      padding:4px 4px 18px;
      margin-bottom:20px;
      border-bottom:1px solid rgba(119,220,255,.1);
    }

    .logo{
      flex:0 0 52px;
      width:52px;
      height:52px;
      border-radius:18px;
      padding:6px;
      background:
        radial-gradient(circle at top left, rgba(255,255,255,.22), transparent 30%),
        linear-gradient(160deg, rgba(94,203,255,.28), rgba(75,140,255,.14));
      border:1px solid rgba(119,220,255,.22);
      box-shadow:0 18px 36px rgba(6,20,42,.32);
    }

    .logo img{
      width:100%;
      height:100%;
      transform:scale(.92);
    }

    .brand h1{
      font-size:22px;
      letter-spacing:-.03em;
    }

    .brand p{
      color:#b7caf0;
      font-size:11px;
      letter-spacing:.16em;
      text-transform:uppercase;
    }

    .nav{
      gap:8px;
      margin-bottom:22px;
    }

    .nav button{
      padding:13px 15px;
      border-radius:16px;
      border-color:rgba(255,255,255,.03);
      background:linear-gradient(180deg, rgba(255,255,255,.015), rgba(255,255,255,0));
    }

    .nav button:hover,.nav button.active{
      background:
        linear-gradient(90deg, rgba(94,203,255,.16), rgba(75,140,255,.12)),
        linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
      border-color:rgba(119,220,255,.22);
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.03), 0 10px 24px rgba(4,9,18,.24);
      transform:translateX(3px);
    }

    .box{
      border-radius:20px;
      background:
        radial-gradient(circle at top right, rgba(94,203,255,.05), transparent 30%),
        linear-gradient(180deg, rgba(14,22,38,.9), rgba(8,13,24,.92));
    }

    .main{
      padding:24px 26px 32px;
    }

    .topbar{
      top:12px;
      padding:18px 20px;
      border-radius:26px;
      border-color:rgba(119,220,255,.14);
      background:
        radial-gradient(circle at top right, rgba(94,203,255,.08), transparent 24%),
        linear-gradient(180deg, rgba(9,14,26,.92), rgba(7,11,20,.82));
    }

    .topbar-brandline{
      display:flex;
      align-items:center;
      max-width:420px;
      margin-bottom:10px;
    }

    .topbar-brandline img{
      display:block;
      width:min(100%, 360px);
      height:auto;
      filter:drop-shadow(0 12px 28px rgba(75,140,255,.18));
    }

    .title h2{
      font-size:36px;
      margin-top:0;
    }

    .title p{
      max-width:760px;
      font-size:14px;
      color:#aec2e6;
    }

    .section{
      padding:20px 20px 22px;
      margin-bottom:20px;
    }

    .section-header{
      padding-bottom:14px;
      border-bottom:1px solid rgba(119,220,255,.08);
      margin-bottom:16px;
    }

    .section-header h3{
      font-size:20px;
      font-weight:900;
    }

    .filter-chip{
      border-radius:999px;
      border:1px solid rgba(119,220,255,.12);
      background:rgba(255,255,255,.03);
      color:#c7d7f2;
    }

    .filter-chip.active{
      background:linear-gradient(135deg, rgba(94,203,255,.22), rgba(75,140,255,.22));
      border-color:rgba(119,220,255,.34);
      box-shadow:0 10px 24px rgba(5,14,28,.22);
    }

    .table-wrap{
      border-radius:20px;
      border:1px solid rgba(119,220,255,.1);
      background:linear-gradient(180deg, rgba(8,12,22,.82), rgba(7,10,18,.96));
    }

    table{
      border-collapse:separate;
      border-spacing:0;
    }

    thead tr{
      background:linear-gradient(180deg, rgba(94,203,255,.08), rgba(255,255,255,.02));
    }

    th,td{
      border-bottom:1px solid rgba(119,220,255,.08);
      padding:16px 14px;
    }

    th{
      color:#b9cced;
      font-size:11px;
      letter-spacing:.12em;
    }

    tbody tr:hover{
      background:rgba(94,203,255,.035);
    }

    .pill{
      border-radius:999px;
      border-color:rgba(119,220,255,.16);
      background:rgba(255,255,255,.035);
      color:#dce9ff;
    }

    .btn{
      border-radius:16px;
      background:linear-gradient(135deg, var(--accent), var(--accent2) 62%, #4338CA);
      box-shadow:0 14px 32px rgba(75,140,255,.22);
    }

    .btn.secondary,.btn.ghost{
      background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
      color:#eef4ff;
      border-color:rgba(119,220,255,.12);
      box-shadow:none;
    }

    .btn.red{
      background:linear-gradient(135deg, #ff5b7a, #ef4444);
    }

    .footer-brand{
      justify-content:flex-start;
      gap:16px;
      border-radius:24px;
      border-color:rgba(119,220,255,.12);
      background:
        radial-gradient(circle at top right, rgba(94,203,255,.06), transparent 24%),
        linear-gradient(180deg, rgba(12,18,32,.88), rgba(7,11,20,.96));
    }

    .footer-brand-mark{
      width:46px;
      height:46px;
      border-radius:16px;
      padding:5px;
      background:linear-gradient(160deg, rgba(94,203,255,.2), rgba(75,140,255,.14));
      border:1px solid rgba(119,220,255,.18);
    }

    .footer-wordmark img{
      display:none;
    }

    .server-pulse-grid{
      display:grid;
      grid-template-columns:repeat(4, minmax(0, 1fr));
      gap:12px;
      margin-bottom:16px;
    }

    .server-pulse-item{
      padding:15px 16px;
      border-radius:20px;
      border:1px solid rgba(119,220,255,.1);
      background:linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015));
    }

    .server-pulse-item strong{
      display:block;
      color:#f5f9ff;
      font-size:30px;
      letter-spacing:-.05em;
      line-height:1;
      margin-bottom:8px;
    }

    .server-pulse-item span{
      display:block;
      color:#8fa6c8;
      font-size:12px;
      line-height:1.5;
    }

    .incident-row{
      min-height:0;
      align-items:center;
      border-radius:20px;
      border-color:rgba(119,220,255,.1);
      background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
      transition:border-color .18s ease, transform .18s ease, box-shadow .18s ease;
    }

    .incident-row.is-fresh{
      border-color:rgba(46,201,124,.2);
      box-shadow:0 0 0 1px rgba(46,201,124,.05) inset;
    }

    .incident-row:hover{
      transform:translateY(-1px);
    }

    .incident-side{
      display:grid;
      gap:10px;
      justify-items:end;
      min-width:112px;
    }

    .type-pill{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:30px;
      padding:0 12px;
      border-radius:999px;
      border:1px solid rgba(148,163,184,.16);
      background:rgba(255,255,255,.04);
      color:#d7e6ff;
      font-size:11px;
      font-weight:800;
      letter-spacing:.08em;
      text-transform:uppercase;
    }

    .type-pill.blacklist{
      color:#ffb3bf;
      border-color:rgba(243,93,119,.22);
      background:rgba(243,93,119,.12);
    }

    .type-pill.warning{
      color:#ffd89a;
      border-color:rgba(232,167,58,.2);
      background:rgba(232,167,58,.12);
    }

    .type-pill.wl{
      color:#9fd9ff;
      border-color:rgba(94,203,255,.22);
      background:rgba(94,203,255,.12);
    }

    .incident-user-title{
      margin-bottom:10px;
      color:#f7fbff;
      font-size:14px;
      font-weight:800;
    }

    .incident-user-main{
      display:flex;
      gap:12px;
      align-items:center;
      min-width:0;
    }

    .user-avatar{
      width:42px;
      height:42px;
      border-radius:14px;
      overflow:hidden;
      border:1px solid rgba(119,220,255,.16);
      background:rgba(255,255,255,.04);
      flex:none;
    }

    .user-avatar img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
    }

    .incident-user-meta{
      min-width:0;
    }

    .user-name{
      color:#f6fbff;
      font-size:15px;
      font-weight:800;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }

    .incident-user-foot{
      margin-top:10px;
    }

    .chart-total{
      text-align:right;
    }

    .chart-total strong{
      display:block;
      color:#f7fbff;
      font-size:36px;
      line-height:1;
      letter-spacing:-.05em;
    }

    .chart-total span{
      display:block;
      margin-top:6px;
      color:#8fa6c8;
      font-size:12px;
      line-height:1.5;
    }

    .table-tab-kpis{
      display:grid;
      grid-template-columns:repeat(4, minmax(0, 1fr));
      gap:14px;
      margin-bottom:16px;
    }

    .table-tab-kpi{
      position:relative;
      overflow:hidden;
      min-height:116px;
      padding:16px 18px;
      border-radius:22px;
      border:1px solid rgba(119,220,255,.1);
      background:
        radial-gradient(circle at top right, rgba(94,203,255,.12), transparent 28%),
        linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
      box-shadow:inset 0 1px 0 rgba(255,255,255,.03), 0 14px 32px rgba(3,8,18,.16);
    }

    .table-tab-kpi::before{
      content:"";
      position:absolute;
      inset:0 0 auto 0;
      height:2px;
      background:linear-gradient(90deg, rgba(94,203,255,.78), rgba(94,203,255,0));
      pointer-events:none;
    }

    .table-tab-kpi small{
      display:block;
      color:#8da4c8;
      font-size:11px;
      letter-spacing:.1em;
      text-transform:uppercase;
      margin-bottom:14px;
    }

    .table-tab-kpi strong{
      display:block;
      color:#f7fbff;
      font-size:38px;
      line-height:1;
      letter-spacing:-.05em;
      margin-bottom:10px;
    }

    .table-tab-kpi span{
      display:block;
      color:#8fa6c8;
      font-size:12px;
      line-height:1.55;
    }

    #tab-whitelist .filter-row,
    #tab-blacklist .filter-row,
    #tab-warnings .filter-row{
      display:grid;
      grid-template-columns:repeat(auto-fit, minmax(180px, 1fr));
      gap:12px;
      padding:16px;
      border-radius:22px;
      border:1px solid rgba(119,220,255,.1);
      background:linear-gradient(180deg, rgba(11,18,32,.84), rgba(8,13,24,.96));
      margin-bottom:14px;
    }

    #tab-analytics .analytics-summary{
      grid-template-columns:repeat(5, minmax(0, 1fr));
      gap:14px;
      margin-bottom:16px;
    }

    #tab-audit .timeline-list{
      display:grid;
      gap:12px;
    }

    #tab-audit .timeline-item{
      padding:16px 18px 16px 22px;
    }

    #tab-audit .timeline-item::before{
      left:10px;
      top:18px;
      box-shadow:0 0 0 4px rgba(94,203,255,.1);
    }

    @media(max-width:1360px){
      .dashboard-main-grid{
        grid-template-columns:1fr;
      }

      .dashboard-secondary-column{
        grid-template-columns:repeat(2, minmax(0, 1fr));
        align-items:start;
      }

      .dashboard-secondary-column > .dashboard-feed-card:last-child{
        grid-column:1 / -1;
      }
    }

    @media(max-width:1120px){
      .dashboard-stat-grid,
      .server-pulse-grid,
      .dashboard-chart-grid,
      .dashboard-secondary-column{
        grid-template-columns:repeat(2, minmax(0, 1fr));
      }

      .dashboard-action-row{
        grid-template-columns:1fr;
      }

      .dashboard-trust-strip{
        grid-template-columns:1fr;
      }

      .dashboard-server-banner-copy{
        max-width:none;
      }

      .dashboard-server-identity{
        align-items:flex-start;
      }

      .dashboard-server-banner-art{
        font-size:56px;
      }
    }

    /* 2026 redesign pass: calm, consistent, professional workspace */
    :root{
      --bg:#09111a;
      --panel:#101926;
      --panel-2:#152131;
      --soft:#0c1320;
      --soft-2:#101926;
      --border:rgba(148,163,184,.14);
      --border-strong:rgba(148,163,184,.24);
      --text:#f3f7fd;
      --muted:#95a4bc;
      --muted-2:#72829d;
      --accent:#7cb8ff;
      --accent2:#5c90ff;
      --green:#2ec97c;
      --yellow:#e8a73a;
      --red:#f35d77;
      --shadow:0 22px 56px rgba(2,8,18,.28);
      --shadow-soft:0 14px 34px rgba(2,8,18,.18);
      --radius:24px;
      --radius-sm:18px;
      --content-max:1560px;
      --control-h:46px;
    }

    body{
      background:
        linear-gradient(180deg, rgba(255,255,255,.012), transparent 26%),
        radial-gradient(circle at top left, rgba(124,184,255,.08), transparent 24%),
        radial-gradient(circle at top right, rgba(124,184,255,.05), transparent 20%),
        radial-gradient(circle at bottom center, rgba(36,201,124,.035), transparent 28%),
        var(--bg);
    }

    body::before{
      background-size:72px 72px;
      opacity:.08;
      mask-image:linear-gradient(180deg, rgba(0,0,0,.22), transparent 92%);
    }

    .sidebar{
      width:280px;
      padding:22px 18px 24px;
      background:linear-gradient(180deg, rgba(7,11,19,.98), rgba(9,13,22,.94));
      border-right:1px solid rgba(148,163,184,.1);
      box-shadow:inset -1px 0 0 rgba(255,255,255,.02);
    }

    .brand{
      gap:14px;
      margin-bottom:24px;
      padding:4px 4px 18px;
    }

    .logo{
      width:54px;
      height:54px;
      border-radius:18px;
      padding:6px;
      background:linear-gradient(160deg, rgba(124,184,255,.18), rgba(92,144,255,.08));
      border:1px solid rgba(124,184,255,.16);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
      flex:0 0 auto;
    }

    .brand h1{
      font-size:22px;
      font-weight:800;
    }

    .brand p{
      margin-top:5px;
      font-size:12px;
      letter-spacing:.08em;
      text-transform:uppercase;
    }

    .nav{
      gap:8px;
      margin-bottom:20px;
    }

    .nav button{
      min-height:48px;
      padding:13px 16px;
      border-radius:16px;
      font-size:14px;
      letter-spacing:-.01em;
    }

    .nav button:hover,.nav button.active{
      transform:none;
      background:linear-gradient(90deg, rgba(124,184,255,.14), rgba(124,184,255,.05));
      border-color:rgba(124,184,255,.18);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.05);
    }

    .box,
    .login-feature,
    .landing-card{
      border-radius:20px;
      background:linear-gradient(180deg, rgba(15,23,36,.94), rgba(10,15,25,.98));
      border-color:var(--border);
      box-shadow:none;
    }

    .box{
      padding:16px;
      margin-bottom:16px;
    }

    .main{
      padding:24px 28px 42px;
    }

    .topbar,
    .tab-section{
      width:min(var(--content-max), 100%);
      margin-inline:auto;
    }

    .topbar{
      margin-bottom:24px;
      padding:18px 20px;
      border-radius:28px;
      border-color:var(--border);
      background:linear-gradient(180deg, rgba(11,17,28,.9), rgba(11,17,28,.76));
      box-shadow:var(--shadow-soft);
    }

    .topbar-controls{
      display:grid;
      grid-template-columns:minmax(280px,.88fr) minmax(0,1.12fr);
      align-items:center;
      gap:18px;
      width:min(var(--content-max), 100%);
      margin:0 auto 18px;
    }

    .topbar-copy{
      display:grid;
      gap:8px;
      min-width:0;
    }

    .topbar-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      width:max-content;
      padding:6px 10px;
      border-radius:999px;
      border:1px solid rgba(124,184,255,.14);
      background:rgba(255,255,255,.03);
      color:#bcd1f3;
      font-size:10px;
      font-weight:800;
      letter-spacing:.14em;
      text-transform:uppercase;
    }

    .topbar-kicker::before{
      content:"";
      width:7px;
      height:7px;
      border-radius:999px;
      background:currentColor;
      box-shadow:0 0 0 6px rgba(124,184,255,.08);
    }

    .workspace-breadcrumb{
      font-size:16px;
      font-weight:850;
      color:var(--text);
      letter-spacing:-.015em;
    }

    .topbar-microcopy{
      color:var(--muted);
      font-size:12px;
      line-height:1.6;
      max-width:62ch;
    }

    .workspace-hero{
      width:min(var(--content-max), 100%);
      margin:0 auto 24px;
      padding:24px;
      display:grid;
      grid-template-columns:minmax(0,1.04fr) minmax(360px,.96fr);
      grid-template-areas:
        "copy stage"
        "meta stage";
      gap:14px 22px;
      border-radius:30px;
      background:
        radial-gradient(circle at top right, rgba(124,184,255,.14), transparent 24%),
        radial-gradient(circle at left center, rgba(92,144,255,.08), transparent 28%),
        linear-gradient(180deg, rgba(13,20,33,.98), rgba(9,14,24,.98));
      border:1px solid var(--border);
      box-shadow:var(--shadow);
      position:relative;
      overflow:hidden;
    }

    .workspace-hero::before{
      content:"";
      position:absolute;
      inset:0 auto 0 0;
      width:40%;
      background:linear-gradient(90deg, rgba(255,255,255,.024), transparent);
      pointer-events:none;
    }

    .workspace-copy{
      grid-area:copy;
      position:relative;
      z-index:1;
      display:grid;
      gap:10px;
      align-content:start;
      min-width:0;
    }

    .workspace-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      width:max-content;
      padding:5px 10px;
      border-radius:999px;
      background:rgba(124,184,255,.1);
      border:1px solid rgba(124,184,255,.18);
      color:#cfe0ff;
      font-size:10px;
      font-weight:800;
      letter-spacing:.12em;
      text-transform:uppercase;
    }

    .workspace-kicker::before{
      content:"";
      width:7px;
      height:7px;
      border-radius:999px;
      background:currentColor;
      box-shadow:0 0 0 6px rgba(124,184,255,.08);
    }

    .workspace-copy h2{
      margin:0;
      font-size:40px;
      line-height:.94;
      letter-spacing:-.055em;
      font-weight:900;
      max-width:11ch;
    }

    .workspace-copy p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.64;
      max-width:56ch;
    }

    .workspace-hero.is-compact{
      grid-template-columns:1fr;
      grid-template-areas:"copy";
      gap:0;
      padding:18px 22px;
      margin-bottom:20px;
      background:
        radial-gradient(circle at top right, rgba(124,184,255,.08), transparent 26%),
        linear-gradient(180deg, rgba(12,19,31,.98), rgba(8,13,22,.985));
    }

    .workspace-hero.is-compact::before{
      width:100%;
      background:linear-gradient(90deg, rgba(255,255,255,.016), transparent 52%);
    }

    .workspace-hero.is-compact .workspace-stage,
    .workspace-hero.is-compact .workspace-meta{
      display:none;
    }

    .workspace-hero.is-compact .workspace-copy{
      gap:8px;
      max-width:none;
    }

    .workspace-hero.is-compact .workspace-kicker{
      padding:4px 10px;
      font-size:10px;
    }

    .workspace-hero.is-compact .workspace-copy h2{
      font-size:28px;
      line-height:1.04;
      letter-spacing:-.04em;
      max-width:none;
    }

    .workspace-hero.is-compact .workspace-copy p{
      max-width:74ch;
      font-size:14px;
      line-height:1.68;
    }

    .workspace-stage{
      grid-area:stage;
      position:relative;
      min-height:100%;
    }

    .workspace-stage-surface{
      position:relative;
      min-height:100%;
      padding:20px;
      border-radius:26px;
      border:1px solid rgba(163,184,255,.12);
      overflow:hidden;
      background:
        linear-gradient(180deg, rgba(9,15,28,.52), rgba(6,12,24,.9)),
        linear-gradient(135deg, rgba(255,255,255,.035), transparent 42%),
        url('/discord-assets/vibe-welcome-bg.svg') center/cover no-repeat;
      display:flex;
      flex-direction:column;
      gap:12px;
      box-shadow:inset 0 1px 0 rgba(255,255,255,.04);
    }

    .workspace-stage-surface::before{
      content:"";
      position:absolute;
      inset:auto -12% -18% 24%;
      height:58%;
      background:
        linear-gradient(180deg, rgba(7,12,24,.14), rgba(7,12,24,.72)),
        url('/discord-assets/vibe-boost-bg.svg') center/cover no-repeat;
      opacity:.42;
      transform:rotate(-7deg);
      pointer-events:none;
    }

    .workspace-stage-surface::after{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 12% 12%, rgba(77,208,225,.15), transparent 24%),
        linear-gradient(180deg, rgba(255,255,255,.03), transparent 24%);
      pointer-events:none;
    }

    .workspace-stage-media{
      position:absolute;
      inset:0;
      background-position:center;
      background-size:cover;
      background-repeat:no-repeat;
      opacity:0;
      transition:opacity .22s ease;
      pointer-events:none;
    }

    .workspace-stage-surface.has-media .workspace-stage-media{
      opacity:.34;
    }

    .workspace-stage-head,
    .workspace-stage-copy,
    .workspace-stage-tags,
    .workspace-stage-grid,
    .workspace-stage-art{
      position:relative;
      z-index:1;
    }

    .workspace-stage-head{
      display:grid;
      grid-template-columns:auto minmax(0,1fr);
      gap:14px;
      align-items:center;
    }

    .workspace-stage-avatar{
      width:62px;
      height:62px;
      border-radius:18px;
      border:1px solid rgba(163,184,255,.18);
      background:linear-gradient(180deg, rgba(25,40,68,.94), rgba(10,16,28,.98));
      display:grid;
      place-items:center;
      overflow:hidden;
      box-shadow:0 16px 34px rgba(2,6,14,.3);
      flex:none;
    }

    .workspace-stage-avatar img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:none;
    }

    .workspace-stage-avatar span{
      color:#eef4ff;
      font-size:18px;
      font-weight:900;
      letter-spacing:-.04em;
    }

    .workspace-stage-kicker{
      color:#8fb4e8;
      font-size:9px;
      font-weight:800;
      letter-spacing:.14em;
      text-transform:uppercase;
      margin-bottom:8px;
    }

    .workspace-stage-title{
      font-size:22px;
      line-height:1.02;
      font-weight:900;
      letter-spacing:-.035em;
      max-width:13ch;
      overflow-wrap:anywhere;
    }

    .workspace-stage-copy{
      margin:0;
      color:#c7d4ef;
      line-height:1.58;
      font-size:13px;
      max-width:38ch;
    }

    .workspace-stage-tags{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }

    .workspace-stage-chip{
      display:inline-flex;
      align-items:center;
      min-height:30px;
      padding:0 10px;
      border-radius:999px;
      border:1px solid rgba(163,184,255,.12);
      background:rgba(255,255,255,.045);
      color:#d2def6;
      font-size:11px;
      font-weight:700;
    }

    .workspace-stage-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:8px;
      margin-top:auto;
    }

    .workspace-stage-stat{
      min-width:0;
      padding:12px 12px 13px;
      border-radius:16px;
      border:1px solid rgba(163,184,255,.08);
      background:rgba(255,255,255,.04);
    }

    .workspace-stage-stat small{
      display:block;
      margin-bottom:6px;
      color:#8aa2cc;
      font-size:9px;
      font-weight:800;
      letter-spacing:.12em;
      text-transform:uppercase;
    }

    .workspace-stage-stat strong{
      display:block;
      color:#eef4ff;
      font-size:13px;
      line-height:1.36;
      overflow-wrap:anywhere;
    }

    .workspace-stage-art{
      position:absolute;
      right:22px;
      bottom:18px;
      color:rgba(236,244,255,.16);
      font-size:42px;
      font-weight:900;
      letter-spacing:-.06em;
      text-transform:uppercase;
      pointer-events:none;
      user-select:none;
    }

    .workspace-meta{
      grid-area:meta;
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:10px;
      align-content:start;
    }

    .workspace-meta-card{
      min-height:104px;
      padding:14px 14px 13px;
      border-radius:18px;
      border:1px solid rgba(148,163,184,.12);
      background:linear-gradient(180deg, rgba(18,27,41,.92), rgba(11,17,28,.98));
      display:grid;
      gap:8px;
      align-content:start;
      box-shadow:var(--shadow-soft);
    }

    .workspace-meta-card small{
      color:var(--muted);
      font-size:10px;
      text-transform:uppercase;
      letter-spacing:.12em;
    }

    .workspace-meta-card strong{
      color:var(--text);
      font-size:15px;
      line-height:1.22;
      letter-spacing:-.02em;
      word-break:break-word;
    }

    .workspace-meta-card span{
      color:var(--muted);
      font-size:11px;
      line-height:1.42;
    }

    .title h2{
      font-size:36px;
      line-height:1.02;
      letter-spacing:-.045em;
    }

    .title p{
      max-width:820px;
      font-size:14px;
      line-height:1.6;
    }

    .top-user,
    .top-user.hidden + .btn,
    .toolbar > .pill,
    .toolbar > .btn,
    .toolbar > .input,
    .toolbar > select{
      min-height:var(--control-h);
    }

    .tab-section{
      display:grid;
      gap:22px;
      animation:workspaceFade .24s ease;
    }

    @keyframes workspaceFade{
      from{opacity:0;transform:translateY(8px)}
      to{opacity:1;transform:none}
    }

    .panel::before{
      opacity:.38;
    }

    .section-header{
      margin-bottom:18px;
      padding-bottom:14px;
      border-bottom:1px solid rgba(148,163,184,.1);
      align-items:flex-start;
      gap:14px;
    }

    .toolbar{
      gap:12px;
      align-items:center;
      justify-content:flex-end;
    }

    .lang-switch{
      display:inline-flex;
      align-items:center;
      padding:4px;
      border-radius:15px;
      border:1px solid var(--border);
      background:rgba(255,255,255,.03);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.02);
      flex:none;
    }

    .lang-btn{
      min-height:34px;
      padding:0 12px;
      border:none;
      background:transparent;
      border-radius:12px;
      color:var(--muted);
      font-size:12px;
      font-weight:800;
      letter-spacing:.08em;
      text-transform:uppercase;
      cursor:pointer;
      transition:background .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
    }

    .lang-btn:hover{
      color:var(--text);
      transform:translateY(-1px);
    }

    .lang-btn.active{
      background:linear-gradient(135deg, rgba(124,184,255,.22), rgba(77,208,225,.12));
      color:var(--text);
      box-shadow:inset 0 0 0 1px rgba(124,184,255,.18);
    }

    .input,
    select,
    textarea{
      min-height:var(--control-h);
      padding:12px 14px;
      font-size:14px;
      border-radius:16px;
      background:linear-gradient(180deg, rgba(11,18,30,.98), rgba(13,20,34,.98));
      border-color:var(--border);
    }

    textarea{
      min-height:120px;
      line-height:1.55;
      resize:vertical;
    }

    .input:focus,
    select:focus,
    textarea:focus{
      border-color:rgba(124,184,255,.38);
      box-shadow:0 0 0 4px rgba(124,184,255,.11);
      background:linear-gradient(180deg, rgba(12,20,34,.99), rgba(15,24,40,.99));
    }

    .btn{
      min-height:var(--control-h);
      padding:0 16px;
      border-radius:16px;
      font-size:13px;
      font-weight:800;
      letter-spacing:.01em;
      background:linear-gradient(135deg, #7cb8ff, #5c90ff 70%, #4d79ff);
      box-shadow:0 12px 24px rgba(92,144,255,.18);
    }

    .btn:hover{
      transform:translateY(-1px);
      box-shadow:0 16px 26px rgba(92,144,255,.18);
    }

    .btn.secondary,
    .btn.ghost{
      background:linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.02));
      border-color:var(--border);
      box-shadow:none;
      color:var(--text);
    }

    .btn.green{background:linear-gradient(135deg, #2ec97c, #23965b)}
    .btn.red{background:linear-gradient(135deg, #f56a80, #e04d63)}
    .btn.yellow{background:linear-gradient(135deg, #e8ab3f, #d88b11)}

    .pill{
      min-height:42px;
      padding:10px 14px;
      border-color:var(--border);
      background:rgba(255,255,255,.03);
      color:#e4ecf9;
    }

    #activeGuildPill{
      max-width:min(300px, 100%);
      overflow:hidden;
      text-overflow:ellipsis;
      white-space:nowrap;
    }

    .filter-chip{
      min-height:36px;
      padding:8px 13px;
      font-size:12px;
      border-color:var(--border);
      background:rgba(255,255,255,.03);
      color:#c7d3e6;
    }

    .filter-chip.active{
      background:rgba(124,184,255,.14);
      border-color:rgba(124,184,255,.22);
      box-shadow:none;
    }

    .table-wrap{
      border-radius:20px;
      border-color:var(--border);
      background:linear-gradient(180deg, rgba(9,14,23,.88), rgba(7,11,19,.98));
    }

    table{
      min-width:1000px;
    }

    th,td{
      padding:14px 16px;
      border-bottom:1px solid rgba(148,163,184,.08);
      vertical-align:middle;
    }

    th{
      font-size:11px;
      letter-spacing:.12em;
      color:#afbdd3;
      background:rgba(255,255,255,.02);
    }

    tbody tr:hover{
      background:rgba(124,184,255,.035);
    }

    .quick-action-grid{
      grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .identity-focus-band{
      grid-template-columns:minmax(0,1fr) minmax(270px,.34fr);
    }

    .action-grid.action-rail{
      gap:14px;
    }

    .action-grid .setting-card{
      padding:18px;
    }

    .action-row{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:10px;
    }

    .quick-status-inline{
      padding-top:16px;
      margin-top:16px;
      border-top:1px solid rgba(148,163,184,.1);
    }

    .settings-group{
      padding:20px;
      border-radius:22px;
    }

    .settings-group-head{
      margin-bottom:16px;
      padding-bottom:12px;
      border-bottom:1px solid rgba(148,163,184,.1);
    }

    .setting-card{
      padding:18px;
      border-radius:18px;
    }

    .login-card{
      background:linear-gradient(180deg, rgba(11,18,30,.99), rgba(8,12,22,.99));
      border-color:var(--border);
      box-shadow:var(--shadow);
    }

    .login-card h2{
      letter-spacing:-.05em;
      line-height:1;
    }

    .login-lead{
      line-height:1.7;
    }

    .login-proof,
    .login-detail-panel,
    .login-scene{
      border-radius:22px;
    }

    @media(max-width:640px){
      .notif-overview-grid{
        grid-template-columns:1fr;
      }

      .notif-item-top{
        flex-direction:column;
      }

      .quick-lookup-head,
      .drawer-hero-top{
        flex-direction:column;
      }

      .quick-lookup-side,
      .drawer-hero-side{
        width:100%;
        justify-items:start;
      }

      .wl-lookup-summary,
      .wl-history-meta{
        grid-template-columns:1fr;
      }

      .wl-history-head{
        flex-direction:column;
      }

      .wl-history-badges{
        justify-content:flex-start;
      }

      .wl-loading-head{
        flex-direction:column;
      }

      .wl-loading-side{
        width:100%;
        justify-items:start;
      }

      .wl-nav-head{
        flex-direction:column;
      }

      .wl-nav-grid{
        grid-template-columns:1fr;
      }
    }

    @media(max-width:1280px){
      .topbar-controls,
      .workspace-hero{
        grid-template-columns:1fr;
      }

      .workspace-copy h2{
        max-width:none;
      }

      .workspace-meta{
        grid-template-columns:repeat(2,minmax(0,1fr));
      }

      .workspace-hero{
        grid-template-areas:
          "copy"
          "stage"
          "meta";
      }

      .workspace-stage-grid{
        grid-template-columns:1fr;
      }

      .lookup-console-card{
        grid-template-columns:1fr;
      }

      .lookup-note{
        min-height:0;
        padding:12px 14px;
      }
    }

    @media(max-width:1100px){
      .grid-stats,.meta-grid,.settings-overview,.dashboard-panels,.command-kpis,.dashboard-grid,.case-shell,.case-grid-2,.trend-summary,.command-fill{grid-template-columns:repeat(2,minmax(0,1fr))}
      .analytics-summary{grid-template-columns:repeat(3,minmax(0,1fr))}
      .analytics-trend-strip,.staff-analytics-slider{grid-template-columns:1fr}
      .lookup-stage,.lookup-overview,.lookup-hero-head,.lookup-hero-profile,.identity-focus-band,.identity-lane-grid,.downloads-detail-grid{grid-template-columns:1fr}
      .lookup-hero-metrics{grid-template-columns:repeat(2,minmax(0,1fr))}
      .command-fill{
        grid-template-columns:1fr;
        grid-template-areas:"quick" "today";
      }
      .lookup,.info-list,.qa-grid,.settings-grid,.action-grid,.duration-grid,.question-columns,.question-answer-guide,.question-fields,.intel-grid,.intel-summary,.action-chip-grid,.network-center,.network-row,.preview-grid,.settings-questions-intro,.lookup-stage,.lookup-deep-grid,.network-graph-shell,.identity-stat-strip,.investigation-board,.downloads-detail-grid{grid-template-columns:1fr}
      .settings-main-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
      .question-default-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
      .dashboard-panels{grid-template-columns:1fr}
      .command-hero,.case-shell{grid-template-columns:1fr}
      .case-sidebar{position:static}
      .case-header-kpis{grid-template-columns:repeat(2,minmax(0,1fr))}
      .settings-span-2,.settings-span-3{grid-column:auto}
      .login-stage,
      .login-detail-row,
      .login-proof-strip{grid-template-columns:1fr}
    }

    @media(max-width:920px){
      body{display:block}
      .sidebar{
        width:100%;
        min-height:auto;
        border-right:none;
        border-bottom:1px solid var(--border)
      }
      .main{padding:18px}
      .topbar{position:static;padding:12px 14px}
      .workspace-hero{padding:20px 18px}
      .workspace-copy h2{font-size:34px}
      .workspace-meta{grid-template-columns:1fr}
      .workspace-stage-head{grid-template-columns:1fr}
      .workspace-stage-art{display:none}
      .dashboard-overview-panel{padding:18px}
      .dashboard-stat-grid,
      .dashboard-main-grid,
      .dashboard-chart-grid,
      .dashboard-secondary-column,
      .server-pulse-grid{grid-template-columns:1fr}
      .dashboard-trust-strip{grid-template-columns:1fr}
      .dashboard-action-row{grid-template-columns:1fr}
      .dashboard-server-banner{
        min-height:110px;
        padding:18px;
      }
      .dashboard-server-avatar{
        width:56px;
        height:56px;
        flex-basis:56px;
        border-radius:18px;
      }
      .dashboard-server-banner-copy strong{font-size:26px}
      .dashboard-server-banner-art{display:none}
      .table-tab-kpis,
      #tab-analytics .analytics-summary{grid-template-columns:repeat(2, minmax(0, 1fr))}
      .lookup-hero-metrics{grid-template-columns:repeat(2,minmax(0,1fr))}
      .title h2{font-size:30px}
        .grid-stats,.meta-grid,.command-kpis,.case-header-kpis,.command-fill,.dashboard-panels,.question-default-grid,.settings-main-grid,.settings-overview,.analytics-summary,.analytics-trend-strip,.staff-analytics-slider{grid-template-columns:1fr}
        .lookup-console-card,.lookup-overview,.lookup-hero-head,.lookup-hero-profile,.identity-focus-band,.identity-lane-grid,.identity-stat-strip,.downloads-detail-grid{grid-template-columns:1fr}
        .lookup-search-actions{min-width:0;flex-direction:column;align-items:stretch}
        .lookup-risk-stack{width:100%;min-width:0}
        .lookup-hero-metrics{grid-template-columns:repeat(2,minmax(0,1fr))}
        .network-orbit-stage{min-height:280px}
        .network-satellite{width:118px}
        .lookup-board{grid-template-columns:1fr}
        .command-fill{grid-template-areas:"quick" "today"}
        .today-grid,.quick-action-grid{grid-template-columns:1fr}
      .lookup-profile{flex-direction:column;align-items:flex-start}
      .case-banner{grid-template-columns:1fr}
      .watchlist-item,.feed-item{grid-template-columns:1fr}
      .incident-row{grid-template-columns:1fr}
      .incident-side{
        justify-items:start;
        min-width:0;
      }
      .trend-summary,.drawer-actions{grid-template-columns:1fr}
      .login-card{
        padding:20px;
        min-height:0;
      }
      .login-card h2{font-size:38px}
      .login-actions .btn{width:100%}
      .login-topbar,
      .login-top-actions{align-items:stretch}
      .login-top-actions{width:100%;justify-content:space-between}
      .login-stage,
      .login-detail-row{grid-template-columns:1fr}
      .login-scene{min-height:0}
      .login-scene-panel-grid{grid-template-columns:1fr}
      .login-scene-mark{transform:none;justify-self:start}
    }

    @media(max-width:1320px){
      #tab-lookup .lookup-sidebar .setting-card{
        grid-template-columns:1fr;
      }

      #tab-lookup .lookup-sidebar .setting-card > .quick-status-inline{
        grid-column:1;
        grid-row:auto;
      }
    }

    @media(max-width:1120px){
      #tab-lookup > .panel.section > .section-header h3{
        font-size:38px;
      }

      #tab-lookup .lookup-console-card{
        grid-template-columns:1fr;
        grid-template-areas:
          "copy"
          "search"
          "note";
        align-items:start;
      }

      #tab-lookup .lookup-row-utility,
      #tab-lookup .lookup-row-intel,
      #tab-lookup .lookup-row-summary{
        grid-template-columns:1fr;
      }

      #tab-lookup .lookup-ticket-shell,
      #tab-lookup .lookup-ticket-viewer-grid{
        grid-template-columns:1fr;
      }

      #tab-lookup .lookup-ticket-shell{
        grid-template-columns:1fr;
        grid-template-areas:
          "viewer"
          "transcript"
          "rail";
      }

      #tab-lookup .lookup-sidebar .setting-card > .action-row,
      #tab-lookup .lookup-sidebar .quick-status-inline .info-list,
      #tab-lookup .lookup-ticket-meta,
      #tab-lookup .lookup-transcript-meta-grid{
        grid-template-columns:1fr;
      }

      #tab-lookup .lookup-ticket-card{
        width:auto;
        min-width:0;
      }

      #tab-lookup .lookup-ticket-viewer-head h5{
        font-size:28px;
      }

      #tab-lookup .lookup-ticket-list{
        max-height:340px;
      }
    }

    @media(max-width:820px){
      #tab-lookup > .panel.section{
        padding:20px;
      }

      #tab-lookup > .panel.section > .section-header h3{
        font-size:30px;
      }

      #tab-lookup .lookup-search-actions{
        grid-template-columns:1fr;
      }

      #tab-lookup .lookup-search-actions .btn{
        width:100%;
        min-width:0;
      }

      #tab-lookup .lookup-console-card h4,
      #tab-lookup .lookup-row > .intel-panel h4,
      #tab-lookup .lookup-ticket-panel > h4,
      #tab-lookup .lookup-sidebar .setting-card > h4,
      #tab-lookup .lookup-graph-panel .section-header h4{
        font-size:26px;
      }

      #tab-lookup .lookup-ticket-viewer{
        padding:18px;
      }

      #tab-lookup .lookup-ticket-transcript-body{
        min-height:200px;
        max-height:320px;
      }
    }

    /* 2026-04-25 shell redesign */
    :root{
      --bg:#050814;
      --panel:#0a1220;
      --panel-2:#111b2f;
      --soft:#080e1a;
      --soft-2:#0d1526;
      --border:rgba(141,171,255,.14);
      --border-strong:rgba(141,171,255,.24);
      --text:#f2f6ff;
      --muted:#93a6ca;
      --muted-2:#7588ae;
      --accent:#76b0ff;
      --accent2:#56c6ff;
      --shadow:0 34px 94px rgba(2,6,18,.42);
      --shadow-soft:0 20px 54px rgba(2,6,18,.24);
      --content-max:1540px;
      --radius:30px;
      --radius-sm:20px;
    }

    html,
    body{
      background:
        radial-gradient(circle at top left, rgba(118,176,255,.16), transparent 24%),
        radial-gradient(circle at top right, rgba(86,198,255,.1), transparent 22%),
        linear-gradient(180deg, rgba(255,255,255,.02), transparent 18%),
        var(--bg);
    }

    body::before{
      background:
        linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
      background-size:68px 68px;
      mask-image:linear-gradient(180deg, rgba(0,0,0,.42), transparent 88%);
      opacity:.18;
    }

    body::after{
      background:
        linear-gradient(180deg, rgba(255,255,255,.02), transparent 30%),
        linear-gradient(90deg, rgba(118,176,255,.06), transparent 22%, transparent 78%, rgba(86,198,255,.04));
      opacity:.8;
    }

    .sidebar{
      width:266px;
      padding:14px 14px 20px;
      background:
        linear-gradient(180deg, rgba(8,13,24,.97), rgba(7,11,20,.94)),
        linear-gradient(180deg, rgba(255,255,255,.02), transparent 20%);
      border-right:1px solid rgba(141,171,255,.1);
      box-shadow:inset -1px 0 0 rgba(255,255,255,.02);
    }

    .sidebar::before{
      content:"";
      position:absolute;
      inset:0 0 auto 0;
      height:88px;
      pointer-events:none;
      background:linear-gradient(180deg, rgba(118,176,255,.06), transparent);
    }

    .brand{
      margin:2px 2px 16px;
      padding:8px 6px 14px;
      border-bottom-color:rgba(141,171,255,.1);
    }

    .logo{
      width:52px;
      height:52px;
      border-radius:18px;
      padding:7px;
      background:linear-gradient(180deg, rgba(120,174,255,.16), rgba(31,46,86,.14));
      border:1px solid rgba(141,171,255,.14);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
    }

    .brand h1{
      font-size:20px;
      letter-spacing:-.04em;
    }

    .brand p{
      margin-top:4px;
      font-size:11px;
      letter-spacing:.12em;
      color:#b3c2e2;
    }

    .nav{
      gap:6px;
      margin-bottom:14px;
    }

    .nav button{
      min-height:42px;
      padding:10px 14px;
      border-radius:15px;
      color:#9dafd2;
      font-size:13px;
      font-weight:700;
      background:transparent;
      border:1px solid transparent;
      overflow:visible;
    }

    .nav button:hover,
    .nav button.active{
      color:var(--text);
      background:linear-gradient(90deg, rgba(118,176,255,.16), rgba(118,176,255,.04));
      border-color:rgba(141,171,255,.16);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.05), 0 10px 20px rgba(2,6,18,.14);
    }

    .box{
      border-radius:20px;
      border-color:rgba(141,171,255,.12);
      background:
        linear-gradient(180deg, rgba(12,19,34,.96), rgba(8,13,24,.98)),
        linear-gradient(180deg, rgba(255,255,255,.02), transparent);
      box-shadow:0 16px 36px rgba(2,6,18,.15);
      padding:13px;
      margin-bottom:12px;
    }

    .box h3{
      margin-bottom:8px;
      font-size:11px;
      letter-spacing:.12em;
    }

    .box p{
      font-size:12px;
      line-height:1.45;
    }

    .main{
      padding:26px 32px 56px;
    }

    .panel{
      border-radius:30px;
      border-color:rgba(141,171,255,.12);
      background:
        linear-gradient(180deg, rgba(12,19,34,.96), rgba(8,13,24,.98)),
        linear-gradient(135deg, rgba(255,255,255,.03), transparent 42%);
      box-shadow:var(--shadow);
    }

    .panel::before{
      height:1px;
      background:linear-gradient(90deg, transparent, rgba(141,171,255,.36), transparent);
    }

    .section{
      padding:22px 22px 24px;
      margin-bottom:24px;
    }

    .section-header{
      padding-bottom:16px;
      margin-bottom:18px;
      border-bottom:1px solid rgba(141,171,255,.08);
    }

    .section-header h3{
      font-size:20px;
      letter-spacing:-.03em;
    }

    .topbar{
      padding:18px 22px;
      border-radius:32px;
      border-color:rgba(141,171,255,.12);
      background:
        linear-gradient(180deg, rgba(10,16,28,.92), rgba(9,14,24,.82)),
        linear-gradient(135deg, rgba(255,255,255,.03), transparent 48%);
      box-shadow:var(--shadow-soft);
    }

    .topbar-controls{
      grid-template-columns:minmax(280px,.64fr) minmax(0,1.36fr);
      gap:22px;
      margin-bottom:20px;
    }

    .topbar-copy{
      gap:10px;
    }

    .topbar-kicker{
      padding:7px 11px;
      background:rgba(118,176,255,.08);
      border-color:rgba(141,171,255,.16);
      color:#cad8f4;
    }

    .workspace-breadcrumb{
      font-size:18px;
      letter-spacing:-.025em;
    }

    .topbar-microcopy{
      font-size:13px;
      max-width:66ch;
    }

    .toolbar{
      justify-content:flex-end;
      gap:12px;
    }

    .top-user{
      min-height:52px;
      padding:8px 14px 8px 10px;
      border-radius:18px;
      border-color:rgba(141,171,255,.12);
      background:linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
      box-shadow:inset 0 1px 0 rgba(255,255,255,.04);
    }

    .workspace-hero{
      padding:26px;
      gap:16px 22px;
      grid-template-columns:minmax(0,.9fr) minmax(420px,1.1fr);
      border-radius:32px;
      background:
        linear-gradient(180deg, rgba(12,19,34,.96), rgba(8,13,24,.98)),
        linear-gradient(135deg, rgba(255,255,255,.03), transparent 42%),
        url('/discord-assets/vibe-welcome-bg.svg') center/cover no-repeat;
      border-color:rgba(141,171,255,.12);
      box-shadow:var(--shadow);
    }

    .workspace-hero::before{
      width:46%;
      background:linear-gradient(90deg, rgba(255,255,255,.03), transparent);
    }

    .workspace-copy{
      gap:10px;
    }

    .workspace-kicker{
      padding:5px 10px;
      background:rgba(118,176,255,.1);
      border-color:rgba(141,171,255,.16);
      color:#d7e4ff;
    }

    .workspace-copy h2{
      font-size:clamp(38px, 4.4vw, 60px);
      line-height:.92;
      max-width:9.2ch;
    }

    .workspace-copy p{
      font-size:14px;
      line-height:1.62;
      max-width:50ch;
    }

    .workspace-stage-surface{
      padding:20px;
      border-radius:26px;
      border-color:rgba(141,171,255,.14);
      background:
        linear-gradient(180deg, rgba(9,15,28,.54), rgba(7,12,23,.9)),
        linear-gradient(135deg, rgba(255,255,255,.04), transparent 46%),
        url('/discord-assets/vibe-welcome-bg.svg') center/cover no-repeat;
    }

    .workspace-stage-head{
      gap:14px;
      align-items:flex-start;
    }

    .workspace-stage-avatar{
      width:64px;
      height:64px;
      border-radius:18px;
      border-color:rgba(141,171,255,.18);
    }

    .workspace-stage-title{
      font-size:22px;
      line-height:1.02;
      max-width:15ch;
    }

    .workspace-stage-copy{
      font-size:13px;
      line-height:1.58;
      max-width:38ch;
    }

    .workspace-stage-tags{
      gap:8px;
    }

    .workspace-stage-chip{
      min-height:30px;
      padding:0 10px;
      border-color:rgba(141,171,255,.12);
      background:rgba(255,255,255,.05);
      color:#d7e2f7;
      font-size:11px;
    }

    .workspace-stage-grid{
      gap:8px;
    }

    .workspace-stage-stat{
      padding:12px 12px 13px;
      border-radius:16px;
      background:rgba(255,255,255,.05);
      border-color:rgba(141,171,255,.1);
    }

    .workspace-stage-art{
      font-size:42px;
      right:24px;
      bottom:16px;
      color:rgba(236,244,255,.14);
    }

    .workspace-meta{
      gap:10px;
    }

    .workspace-meta-card{
      min-height:104px;
      padding:14px;
      border-radius:18px;
      border:1px solid rgba(141,171,255,.1);
      background:linear-gradient(180deg, rgba(11,18,32,.72), rgba(9,14,24,.9));
      box-shadow:inset 0 1px 0 rgba(255,255,255,.04);
    }

    #serverPickerSection{
      width:min(var(--content-max), 100%);
    }

    .server-picker{
      padding:18px 0 0;
    }

    .server-picker-shell{
      gap:26px;
    }

    .server-picker-head{
      max-width:none;
      margin:0;
      padding:34px;
      text-align:left;
      border:1px solid rgba(141,171,255,.12);
      border-radius:38px;
      background:
        linear-gradient(180deg, rgba(12,19,34,.96), rgba(8,13,24,.98)),
        linear-gradient(135deg, rgba(255,255,255,.03), transparent 42%),
        url('/discord-assets/vibe-welcome-bg.svg') center/cover no-repeat;
      box-shadow:var(--shadow-soft);
    }

    .server-picker-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      width:max-content;
      padding:7px 12px;
      border-radius:999px;
      background:rgba(118,176,255,.09);
      border:1px solid rgba(141,171,255,.16);
      color:#cbdbf5;
    }

    .server-picker-head h2{
      max-width:10ch;
      font-size:clamp(46px, 5.4vw, 72px);
      line-height:.94;
      letter-spacing:-.05em;
    }

    .server-picker-head p{
      max-width:58ch;
      font-size:16px;
      line-height:1.8;
    }

    .server-picker-summary{
      justify-content:flex-start;
      gap:12px;
      margin-top:8px;
    }

    .server-picker-summary-pill{
      min-height:40px;
      padding:0 14px;
      border-color:rgba(141,171,255,.12);
      background:rgba(9,15,28,.62);
    }

    .server-picker-grid{
      grid-template-columns:repeat(auto-fit, minmax(320px, 1fr));
      gap:22px;
    }

    .server-card{
      min-height:372px;
      padding:22px;
      border-radius:30px;
      border-color:rgba(141,171,255,.12);
      background:
        linear-gradient(180deg, rgba(13,20,34,.95), rgba(8,13,24,.98)),
        linear-gradient(135deg, rgba(255,255,255,.03), transparent 44%);
      box-shadow:0 24px 60px rgba(2,6,18,.22);
    }

    .server-card-avatar{
      width:104px;
      height:104px;
      margin-top:10px;
    }

    .server-card-name{
      font-size:32px;
      line-height:1.02;
    }

    .server-card-copy{
      font-size:14px;
      line-height:1.72;
      min-height:72px;
    }

    .server-card-status{
      font-size:13px;
      line-height:1.65;
    }

    .input,
    select,
    textarea{
      min-height:46px;
      padding:12px 14px;
      border-radius:16px;
      border-color:rgba(141,171,255,.12);
      background:linear-gradient(180deg, rgba(9,15,28,.98), rgba(12,18,31,.98));
      box-shadow:inset 0 1px 0 rgba(255,255,255,.03);
    }

    .input:focus,
    select:focus,
    textarea:focus{
      border-color:rgba(118,176,255,.36);
      box-shadow:0 0 0 4px rgba(118,176,255,.1);
    }

    .btn{
      min-height:46px;
      padding:0 18px;
      border-radius:16px;
      border:1px solid rgba(141,171,255,.14);
      background:linear-gradient(135deg, #76b0ff, #5d87ff 72%, #5074ff);
      box-shadow:0 14px 32px rgba(76,111,255,.24);
    }

    .btn:hover{
      box-shadow:0 18px 36px rgba(76,111,255,.24);
    }

    .btn.secondary,
    .btn.ghost{
      border-color:rgba(141,171,255,.12);
      background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
      box-shadow:none;
    }

    .btn.red{
      background:linear-gradient(135deg, #f76c8e, #ec5374);
    }

    .pill{
      min-height:42px;
      padding:10px 14px;
      border-color:rgba(141,171,255,.12);
      background:rgba(255,255,255,.045);
      color:#e2ebfb;
    }

    .setting-card{
      padding:18px;
      border-radius:20px;
      border:1px solid rgba(141,171,255,.1);
      background:
        linear-gradient(180deg, rgba(11,18,32,.78), rgba(8,13,24,.94)),
        linear-gradient(135deg, rgba(255,255,255,.02), transparent 44%);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.04);
    }

    .tab-section{
      gap:24px;
    }

    .footer-brand{
      width:min(var(--content-max), 100%);
      margin-inline:auto;
      padding:18px 20px;
      border-radius:30px;
      border:1px solid rgba(141,171,255,.12);
      background:
        linear-gradient(180deg, rgba(11,18,32,.92), rgba(8,13,24,.96)),
        linear-gradient(135deg, rgba(255,255,255,.02), transparent 48%);
      box-shadow:var(--shadow-soft);
    }

    .footer-brand-mark{
      width:58px;
      height:58px;
      border-radius:20px;
      background:linear-gradient(180deg, rgba(118,176,255,.14), rgba(30,45,82,.14));
      border:1px solid rgba(141,171,255,.14);
    }

    @media(max-width:1320px){
      .topbar-controls,
      .workspace-hero{
        grid-template-columns:1fr;
      }

      .workspace-copy h2,
      .server-picker-head h2{
        max-width:none;
      }

      .server-picker-grid{
        grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
      }
    }

    @media(max-width:1024px){
      .main{
        padding:22px 22px 48px;
      }

      .topbar{
        padding:16px 18px;
      }

      .workspace-hero{
        padding:28px;
      }

      .server-picker-head{
        padding:28px;
      }

      .login-stage,
      .login-detail-row{
        grid-template-columns:1fr;
      }

      .login-scene{
        min-height:0;
      }
    }

    @media(max-width:820px){
      .sidebar{
        width:100%;
        height:auto;
        position:static;
        padding-bottom:18px;
      }

      .main{
        padding:18px 16px 42px;
      }

      .topbar,
      .workspace-hero,
      .server-picker-head,
      .footer-brand{
        border-radius:26px;
      }

      .workspace-hero{
        padding:24px;
      }

      .workspace-stage-grid,
      .workspace-meta{
        grid-template-columns:1fr;
      }

      .login-card{
        width:100%;
        min-height:0;
        padding:20px;
        border-radius:30px;
      }

      .login-card h2{
        font-size:clamp(44px, 12vw, 62px);
      }

      .server-picker-head h2{
        font-size:clamp(34px, 12vw, 54px);
      }
    }
