/* =========================================================
   CIMSUM • LumiVex Quant Labs
   Single source of truth stylesheet (Login + Index)
   Light mode (LumiVex-ish) + Dark mode (TRON)
   ========================================================= */

/* -------------------------
   Theme tokens
   ------------------------- */
   :root{
    /* Light mode (LumiVex-ish) */
    --bg0: #f7fafc;
    --bg1: #ffffff;
    --card: rgba(255,255,255,0.85);
    --text: #0f172a;
    --muted: #55627a;
    --border: rgba(15, 23, 42, 0.10);
  
    /* LumiVex palette hints */
    --lv-blue:      #b0c0d9;
    --lv-coolgray:  #ccd1d9;
    --lv-coral:     #eb4117;
    --lv-peach:     #f5a490;
    --lv-mintblue:  #6aded4;
    --lv-cream:     #fffaf6;
    --lv-mutedtext: #5f6a80;
  
    /* Accent */
    --accentA: #0ea5e9; /* sky */
    --accentB: #6aded4; /* mint */
    --accentC: #eb4117; /* coral */
    --accentD: #39ffb0; /* optional */
  
    --shadow: 0 18px 60px rgba(2, 6, 23, 0.12);
    --radius: 18px;
  }
  
  [data-theme="dark"]{
    /* TRON dark mode */
    --bg0: #060814;
    --bg1: #0b1022;
    --card: rgba(10, 14, 32, 0.72);
    --text: #e6f4ff;
    --muted: rgba(230, 244, 255, 0.70);
    --border: rgba(0, 255, 255, 0.18);
  
    --accentA: #23d5ff; /* electric blue */
    --accentB: #ffe34f; /* electric yellow */
    --accentC: #ff3b6b; /* electric red */
    --accentD: #39ffb0; /* electric green */
  
    --shadow: 0 22px 80px rgba(0, 0, 0, 0.55);
  }
  
  /* -------------------------
     Base
     ------------------------- */
  *{ box-sizing:border-box; }
  html, body { height: 100%; }
  body{
    margin:0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
    color: var(--text);
    background:
      radial-gradient(900px 600px at 15% 20%, rgba(14,165,233,0.20), transparent 55%),
      radial-gradient(900px 600px at 85% 30%, rgba(106,222,212,0.22), transparent 55%),
      radial-gradient(900px 600px at 40% 95%, rgba(235,65,23,0.10), transparent 55%),
      linear-gradient(180deg, var(--bg0), var(--bg1));
  }
  
  a{ color: inherit; }
  
  /* Grid vibe background for dark mode */
  .bg-grid::before{
    content:"";
    position:fixed;
    inset:0;
    pointer-events:none;
    opacity:0;
    background:
      linear-gradient(rgba(35,213,255,0.08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(35,213,255,0.08) 1px, transparent 1px);
    background-size:46px 46px;
    filter: drop-shadow(0 0 18px rgba(35,213,255,0.25));
    transition: opacity 240ms ease;
  }
  [data-theme="dark"] .bg-grid::before{ opacity:0.55; }
  
  /* -------------------------
     Layout containers
     ------------------------- */
  .shell{
    min-height:100%;
    display:grid;
    place-items:center;
    padding: 40px 18px;
  }
  
  .wrap{
    width: min(1080px, 100%);
    display:grid;
    grid-template-columns: 1.1fr 0.9fr; /* Login page default */
    gap:18px;
    align-items:stretch;
  }
  @media (max-width: 980px){
    .wrap{ grid-template-columns:1fr; }
  }
  
  .card{
    position:relative;
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    overflow:hidden;
    backdrop-filter: blur(10px);
  }
  
  .card::before{
    content:"";
    position:absolute;
    inset:-2px;
    background: linear-gradient(90deg, var(--accentA), var(--accentB), var(--accentC), var(--accentA));
    opacity:0.35;
    filter: blur(18px);
    animation: hue 8s linear infinite;
    z-index:0;
  }
  @keyframes hue{
    0%   { transform: translateX(-6%); }
    50%  { transform: translateX(6%); }
    100% { transform: translateX(-6%); }
  }
  
  .card > .inner{
    position:relative;
    z-index:1;
    padding:26px;
  }
  
  /* -------------------------
     Brand / header UI
     ------------------------- */
  .brandRow{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
  }
  
  .brandLeft{
    display:flex;
    align-items:center;
    gap:12px;
  }
  
  .logo{
    width:54px;
    height:54px;
    border-radius:14px;
    border:1px solid var(--border);
    background: rgba(255,255,255,0.45);
    padding:8px;
  }
  [data-theme="dark"] .logo{
    background: rgba(6,8,20,0.6);
    filter: drop-shadow(0 0 14px rgba(35,213,255,0.30));
  }
  
  .brandTitle{ line-height:1.05; }
  .brandTitle .name{
    font-weight:900;
    letter-spacing:0.3px;
    font-size:22px;
    background: linear-gradient(90deg, var(--accentA), var(--accentB), var(--accentC));
    -webkit-background-clip: text;
    background-clip:text;
    color:transparent;
    animation: shimmer 6s linear infinite;
  }
  @keyframes shimmer{
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
  }
  .brandTitle .sub{
    margin-top:4px;
    color: var(--muted);
    font-size:12px;
  }
  
  .topbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:14px;
    flex-wrap:wrap;
  }
  .topbarRight{
    display:flex;
    gap:10px;
    align-items:center;
  }
  
  /* -------------------------
     Buttons / inputs
     ------------------------- */
  .modeBtn{
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text);
    border-radius: 12px;
    padding: 9px 12px;
    cursor:pointer;
    transition: transform 120ms ease, border-color 120ms ease, box-shadow 120ms ease;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }
  .modeBtn:hover{
    transform: translateY(-1px);
    border-color: rgba(14,165,233,0.35);
    box-shadow: 0 10px 30px rgba(14,165,233,0.10);
  }
  
  .btn{
    width:100%;
    border:0;
    border-radius:14px;
    padding:12px 14px;
    cursor:pointer;
    font-weight:900;
    color:#06101a;
    background: linear-gradient(90deg, var(--accentA), var(--accentB));
    box-shadow: 0 18px 50px rgba(14,165,233,0.18);
    transition: transform 120ms ease, filter 120ms ease;
  }
  .btn:hover{
    transform: translateY(-1px);
    filter: brightness(1.05);
  }
  
  .field{
    display:grid;
    gap:6px;
    margin-bottom:12px;
  }
  .label{
    font-size:12px;
    color: var(--muted);
  }
  .input{
    width:100%;
    border-radius:14px;
    padding:12px 12px;
    border:1px solid var(--border);
    background: rgba(255,255,255,0.55);
    color: var(--text);
    outline:none;
    transition: border-color 120ms ease, box-shadow 120ms ease;
  }
  [data-theme="dark"] .input{ background: rgba(6,8,20,0.55); }
  .input:focus{
    border-color: rgba(14,165,233,0.45);
    box-shadow: 0 0 0 4px rgba(14,165,233,0.18);
  }
  
  /* -------------------------
     Headings / text
     ------------------------- */
  .heroH1{
    margin:16px 0 6px;
    font-size:28px;
    letter-spacing:-0.3px;
  }
  .heroP{
    margin:0 0 18px;
    color: var(--muted);
    line-height:1.45;
  }
  
  .formTitle{
    margin:0;
    font-size:18px;
    font-weight:900;
  }
  .formSub{
    margin:6px 0 16px;
    color: var(--muted);
    font-size:13px;
    line-height:1.35;
  }
  
  .footerNote{
    margin-top:14px;
    color: var(--muted);
    font-size:11px;
    line-height:1.35;
  }
  
  .badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    border:1px solid var(--border);
    border-radius:999px;
    padding:8px 10px;
    background: rgba(255,255,255,0.35);
  }
  [data-theme="dark"] .badge{ background: rgba(6,8,20,0.45); }
  
  .error{
    margin-top:12px;
    border-radius:14px;
    border:1px solid rgba(255,59,107,0.35);
    background: rgba(255,59,107,0.10);
    color: var(--text);
    padding:10px 12px;
    font-size:13px;
  }
  
  /* -------------------------
     Login page extras
     ------------------------- */
  .kpiRow{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:10px;
    margin-top:16px;
  }
  @media (max-width:520px){
    .kpiRow{ grid-template-columns:1fr; }
  }
  .kpi{
    border:1px solid var(--border);
    border-radius:14px;
    padding:12px;
    background: rgba(255,255,255,0.35);
  }
  [data-theme="dark"] .kpi{ background: rgba(6,8,20,0.45); }
  .kpi .k{ font-size:12px; color: var(--muted); }
  .kpi .v{ margin-top:6px; font-weight:800; }
  
  .list{
    margin:14px 0 0;
    padding:0;
    list-style:none;
    display:grid;
    gap:10px;
  }
  .list li{
    display:flex;
    gap:10px;
    align-items:flex-start;
    color: var(--muted);
  }
  .dot{
    width:10px;
    height:10px;
    margin-top:6px;
    border-radius:999px;
    background: linear-gradient(180deg, var(--accentA), var(--accentB));
    box-shadow: 0 0 18px rgba(35,213,255,0.35);
  }
  
  .cta{
    margin-top:16px;
    display:grid;
    gap:10px;
  }
  .cta a{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    text-decoration:none;
    border-radius:14px;
    padding:11px 12px;
    border:1px solid var(--border);
    background: transparent;
    color: var(--text);
    transition: transform 120ms ease, border-color 120ms ease, box-shadow 120ms ease;
  }
  .cta a:hover{
    transform: translateY(-1px);
    border-color: rgba(14,165,233,0.35);
    box-shadow: 0 14px 40px rgba(14,165,233,0.10);
  }
  
  /* -------------------------
     Index layout + stacked mode
     ------------------------- */
  .layoutBtnRow{
    display:flex;
    gap:10px;
    align-items:center;
    flex-wrap:wrap;
  }
  
  .grid2{
    display:grid;
    gap:18px;
    grid-template-columns: 0.95fr 1.05fr;
    grid-template-areas: "upload results";
    align-items:start;
  }
  
  .uploadCard{ grid-area: upload; }
  .resultsCard{ grid-area: results; }
  
  @media (max-width:980px){
    .grid2{
      grid-template-columns:1fr;
      grid-template-areas:
        "upload"
        "results";
    }
  }
  
  /* Stacked mode (forced after first result) */
  .grid2.stacked{
    grid-template-columns:1fr !important;
    grid-template-areas:
      "upload"
      "results" !important;
  }
  
  /* -------------------------
     Summary box + rendering
     ------------------------- */
  .summaryBox{
    margin-top:12px;
    border:1px solid var(--border);
    border-radius:16px;
    padding:14px;
    background: rgba(255,255,255,0.35);
    overflow:auto;
    min-height: 520px;
    max-height: 75vh;
  }
  [data-theme="dark"] .summaryBox{
    background: rgba(6,8,20,0.45);
  }
  
  /* Typography inside the rendered markdown */
  .rendered-summary{
    line-height: 1.55;
    font-size: 14px;
  }
  
  .rendered-summary h1,
  .rendered-summary h2,
  .rendered-summary h3{
    margin: 14px 0 8px;
    line-height: 1.15;
    letter-spacing: -0.2px;
  }
  .rendered-summary h2{
    font-size: 18px;
    font-weight: 900;
  }
  .rendered-summary h3{
    font-size: 15px;
    font-weight: 900;
    opacity: 0.95;
  }
  
  .rendered-summary p{
    margin: 0 0 10px;
    color: var(--text);
  }
  
  .rendered-summary ul,
  .rendered-summary ol{
    margin: 8px 0 12px 18px;
  }
  
  .rendered-summary li{
    margin: 4px 0;
    color: var(--text);
  }
  
  /* Tables: make them look premium */
  .rendered-summary table{
    width:100%;
    border-collapse: collapse;
    margin: 12px 0 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
  }
  
  .rendered-summary th,
  .rendered-summary td{
    padding: 10px 10px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    font-size: 13px;
  }
  
  .rendered-summary th{
    font-weight: 900;
    background: rgba(255,255,255,0.45);
  }
  [data-theme="dark"] .rendered-summary th{
    background: rgba(6,8,20,0.55);
  }
  
  .rendered-summary tr:nth-child(even) td{
    background: rgba(255,255,255,0.22);
  }
  [data-theme="dark"] .rendered-summary tr:nth-child(even) td{
    background: rgba(6,8,20,0.35);
  }
  
  /* Make numeric columns easier to scan */
  .rendered-summary td{
    white-space: nowrap;
  }
  .rendered-summary td:first-child{
    white-space: normal;
  }
  
  /* -------------------------
     Results header + spinner
     ------------------------- */
  .resultsHeader{
    display:flex;
    justify-content: space-between;
    align-items:center;
    gap:10px;
  }
  
  .spinnerWrap{
    margin-top:14px;
    display:flex;
    align-items:center;
    gap:14px;
    border:1px solid var(--border);
    border-radius:16px;
    padding:12px;
    background: rgba(255,255,255,0.25);
  }
  [data-theme="dark"] .spinnerWrap{ background: rgba(6,8,20,0.35); }
  
  .spinner{
    width:34px;
    height:34px;
    border-radius:999px;
    border:4px solid rgba(255,255,255,0.35);
    border-top:4px solid var(--accentA);
    animation: spin 1s linear infinite;
    filter: drop-shadow(0 0 14px rgba(35,213,255,0.25));
  }
  @keyframes spin{ to { transform: rotate(360deg); } }
  
  .spinTitle{ font-weight: 900; }
  .spinSub{ color: var(--muted); font-size: 13px; margin-top: 2px; }
  
  /* -------------------------
     Modal
     ------------------------- */
  .modal{
    position:fixed;
    inset:0;
    display:grid;
    place-items:center;
    background: rgba(0,0,0,0.55);
    padding:18px;
    z-index:50;
  }
  .modalContent{
    width: min(700px, 100%);
    border-radius:18px;
    border:1px solid var(--border);
    background: var(--card);
    box-shadow: var(--shadow);
    padding:18px;
  }
  .modalTop{
    display:flex;
    justify-content: space-between;
    align-items:center;
    gap:10px;
  }
  .modalTitle{
    font-weight:900;
    font-size:18px;
    background: linear-gradient(90deg, var(--accentA), var(--accentB), var(--accentC));
    -webkit-background-clip:text;
    background-clip:text;
    color: transparent;
  }
  .modalActions{
    display:flex;
    gap:10px;
    justify-content:flex-end;
    flex-wrap:wrap;
  }


  /* =========================================================
   PDF Export Theme (clean white, professional)
   Applied only to the offscreen clone: .pdf-export
   ========================================================= */

.pdf-export{
    background:#ffffff !important;
    color:#0f172a !important;
    font-family: Arial, system-ui, -apple-system, Segoe UI, Roboto, Inter, sans-serif !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
  }
  
  .pdf-export .rendered-summary{
    color:#0f172a !important;
  }
  
  .pdf-export .rendered-summary h1,
  .pdf-export .rendered-summary h2,
  .pdf-export .rendered-summary h3{
    color:#0f172a !important;
    margin: 12px 0 8px !important;
  }
  
  .pdf-export .rendered-summary p,
  .pdf-export .rendered-summary li{
    color:#0f172a !important;
  }
  
  .pdf-export .rendered-summary table{
    width:100% !important;
    border-collapse: collapse !important;
    border: 1px solid #e2e8f0 !important;
    margin: 10px 0 14px !important;
  }
  
  .pdf-export .rendered-summary th{
    background:#f1f5f9 !important;
    color:#0f172a !important;
    font-weight:700 !important;
    border-bottom: 1px solid #e2e8f0 !important;
  }
  
  .pdf-export .rendered-summary td{
    border-bottom: 1px solid #e2e8f0 !important;
    color:#0f172a !important;
  }
  
  .pdf-export .rendered-summary th,
  .pdf-export .rendered-summary td{
    padding: 8px 8px !important;
    font-size: 12px !important;
  }
  
  .pdf-export .rendered-summary tr:nth-child(even) td{
    background:#fafafa !important;
  }
  
  .pdf-export a{
    color:#0f172a !important;
    text-decoration:none !important;
  }

  /* =========================================================
   Signature Footer Bar (distinct from normal cards)
   ========================================================= */

.footerBar{
    position: relative;
    border-radius: calc(var(--radius) + 4px);
    overflow: hidden;
    border: 1px solid rgba(35,213,255,0.30);
    box-shadow:
      0 24px 90px rgba(0,0,0,0.55),
      0 0 0 1px rgba(255,227,79,0.10) inset;
  }
  
  /* kill the standard animated glow layer */
  .footerBar::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
  
    /* distinct “brand bar” background */
    background:
      radial-gradient(700px 180px at 18% 50%, rgba(35,213,255,0.26), transparent 60%),
      radial-gradient(700px 180px at 82% 50%, rgba(255,227,79,0.22), transparent 60%),
      linear-gradient(90deg, rgba(10,14,32,0.82), rgba(10,14,32,0.62));
    filter: saturate(1.1);
  }
  
  [data-theme="light"] .footerBar::before{
    background:
      radial-gradient(700px 180px at 18% 50%, rgba(14,165,233,0.18), transparent 60%),
      radial-gradient(700px 180px at 82% 50%, rgba(235,65,23,0.14), transparent 60%),
      linear-gradient(90deg, rgba(255,255,255,0.88), rgba(255,255,255,0.78));
  }
  
  /* top divider glow */
  .footerBar::after{
    content:"";
    position:absolute;
    left: 18px;
    right: 18px;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(35,213,255,0.65), rgba(255,227,79,0.55), transparent);
    z-index: 1;
    opacity: 0.9;
  }
  
  .footerBar .inner{
    position: relative;
    z-index: 2;
    padding: 18px 22px;
  }
  
  /* Footer typography */
  .footerTitle{
    font-weight: 950;
    letter-spacing: -0.25px;
    font-size: 15px;
  }
  
  .footerSub{
    margin-top: 6px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
  }
  
  /* Footer CTA row */
  .footerActions{
    display:flex;
    gap: 10px;
    align-items:center;
    flex-wrap: wrap;
  }
  
  /* Make “Visit Levida.ai” feel like a premium chip */
  .footerLink{
    border-radius: 999px;
    padding: 10px 14px;
    border: 1px solid rgba(35,213,255,0.35);
    background: rgba(6,8,20,0.35);
    text-decoration: none;
    font-weight: 800;
  }
  
  [data-theme="light"] .footerLink{
    background: rgba(255,255,255,0.55);
  }
  
  /* Make logout look like the primary action */
  .footerLogout{
    width: auto !important;
    padding: 10px 16px !important;
    border-radius: 999px !important;
    font-weight: 950 !important;
    box-shadow:
      0 18px 55px rgba(35,213,255,0.18),
      0 0 18px rgba(255,227,79,0.18);
  }


  .footerParentLink{
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid rgba(35,213,255,0.35);
    padding-bottom: 2px;
    transition: border-color 150ms ease, text-shadow 150ms ease;
  }
  
  .footerParentLink:hover{
    border-bottom-color: rgba(255,227,79,0.60);
    text-shadow: 0 0 14px rgba(35,213,255,0.25);
  }
  
  .footerInlineLink{
    color: inherit;
    font-weight: 900;
    text-decoration: none;
    border-bottom: 1px dashed rgba(255,227,79,0.45);
    padding-bottom: 1px;
    transition: border-color 150ms ease;
  }
  .footerInlineLink:hover{
    border-bottom-color: rgba(35,213,255,0.55);
  }

  /* Optional: skip link (accessibility) */
.skipLink{
    position:absolute;
    left:-9999px;
    top:10px;
    z-index:9999;
    padding:10px 12px;
    border-radius:12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
  }
  .skipLink:focus{ left:10px; }
  
  /* SEO block (clean + below the fold) */
  .seoBlock{
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  
  .seoH2{
    font-size: 14px;
    letter-spacing: 0.3px;
    margin: 0 0 10px;
    opacity: 0.95;
  }
  
  .seoH3{
    font-size: 13px;
    margin: 0 0 8px;
    opacity: 0.95;
  }
  
  .seoP{
    font-size: 13px;
    line-height: 1.5;
    color: var(--muted);
    margin: 0 0 10px;
  }
  
  .seoGrid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 10px;
  }
  
  @media (min-width: 900px){
    .seoGrid{ grid-template-columns: 1fr 1fr; }
  }
  
  .seoCard{
    padding: 12px;
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
  }
  
  .seoList{
    margin: 0;
    padding-left: 16px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
  }
  
  .seoDetails{
    margin-top: 10px;
    border-radius: 14px;
    padding: 10px 12px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
  }
  
  .seoDetails > summary{
    cursor: pointer;
    font-size: 13px;
    color: rgba(255,255,255,0.92);
    outline: none;
  }
  
  .seoDetailsBody{
    margin-top: 10px;
  }


  /* --- Footer --- */
.footerInner{
    display:flex;
    flex-direction:column;
    gap:14px;
  }
  
  .footerGrid{
    display:grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap:16px;
    align-items:start;
  }
  
  @media (max-width: 980px){
    .footerGrid{ grid-template-columns: 1fr; }
  }
  
  .footerBrandRow{
    display:flex;
    gap:12px;
    align-items:center;
  }
  
  .footerLogo{
    width:42px;
    height:42px;
    border-radius:12px;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.10);
  }
  
  .footerTitle{
    font-weight:800;
    letter-spacing:0.2px;
    font-size:14px;
    line-height:1.2;
  }
  
  .footerDot{
    opacity:0.65;
    margin: 0 6px;
  }
  
  .footerMuted{
    opacity:0.85;
    font-weight:600;
  }
  
  .footerSub{
    margin-top:6px;
    font-size:12.5px;
    line-height:1.45;
    color: var(--muted);
  }
  
  .footerLabel{
    font-size:12px;
    letter-spacing:0.3px;
    opacity:0.85;
    margin-bottom:10px;
    text-transform:uppercase;
  }
  
  .footerInlineLink{
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.18);
  }
  .footerInlineLink:hover{
    border-bottom-color: rgba(255,255,255,0.45);
  }
  
  .footerLinks{
    display:flex;
    flex-direction:column;
    gap:8px;
  }
  
  .footerLinkText{
    font-size:13px;
    text-decoration:none;
    color: rgba(255,255,255,0.88);
    opacity:0.9;
  }
  .footerLinkText:hover{ opacity:1; }
  
  .footerBadges{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:12px;
  }
  
  .footerPill{
    font-size:11.5px;
    padding:6px 10px;
    border-radius:999px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.86);
  }
  
  .footerActionsCol .footerActions{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
  }
  
  .footerBtn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    white-space:nowrap;
  }
  
  /* Divider + subtle glow bar */
  .footerBottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:14px;
    flex-wrap:wrap;
    padding-top:12px;
    border-top: 1px solid rgba(255,255,255,0.08);
    position:relative;
  }
  .footerBottom:before{
    content:"";
    position:absolute;
    left:0; right:0; top:-1px;
    height:1px;
    background: linear-gradient(90deg,
      rgba(120,180,255,0.0),
      rgba(120,180,255,0.25),
      rgba(210,120,255,0.25),
      rgba(120,180,255,0.0)
    );
    pointer-events:none;
  }
  
  .footerFine{
    font-size:12px;
    color: rgba(255,255,255,0.82);
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:8px;
  }
  
  .footerFineRight{
    display:flex;
    align-items:center;
    gap:8px;
    flex-wrap:wrap;
  }
  
  .footerFineMuted{
    color: var(--muted);
    font-size:12px;
  }
  
  .footerSep{
    opacity:0.5;
  }

  