:root{
      --bg:#f5f7fb;
      --card:#ffffff;
      --ink:#18202a;
      --muted:#64748b;
      --line:#d9e2ec;
      --accent:#0f766e;
      --accent-2:#0ea5e9;
      --danger:#b91c1c;
      --warn:#b45309;
      --soft:#eef6ff;
      --success-bg:#ecfdf5;
      --shadow:0 10px 25px rgba(15,23,42,.08);
      --radius:18px;
    }

    *{box-sizing:border-box}
    body{
      margin:0;
      font-family:Arial, Helvetica, sans-serif;
      background:linear-gradient(180deg,#f8fbff 0%, var(--bg) 100%);
      color:var(--ink);
    }

    .container{
      max-width:1280px;
      margin:0 auto;
      padding:20px;
    }

    .hero{
      background:linear-gradient(135deg,#0f766e 0%, #0ea5e9 100%);
      color:#fff;
      border-radius:24px;
      padding:22px;
      box-shadow:var(--shadow);
      margin-bottom:20px;
    }

    .hero h1{
      margin:0 0 8px;
      font-size:clamp(1.5rem, 2.5vw, 2.3rem);
    }

    .hero p{
      margin:6px 0;
      opacity:.95;
    }

    .grid{
      display:grid;
      grid-template-columns:repeat(12,1fr);
      gap:18px;
    }

    .card{
      grid-column:span 12;
      background:var(--card);
      border:1px solid var(--line);
      border-radius:var(--radius);
      padding:18px;
      box-shadow:var(--shadow);
    }

    .card h2, .card h3{
      margin-top:0;
      margin-bottom:14px;
    }

    .cols-4{grid-column:span 4;}
    .cols-5{grid-column:span 5;}
    .cols-6{grid-column:span 6;}
    .cols-7{grid-column:span 7;}
    .cols-8{grid-column:span 8;}

    .form-grid{
      display:grid;
      grid-template-columns:repeat(12,1fr);
      gap:12px;
      align-items:end;
    }

    .field{
      grid-column:span 12;
      min-width:0;
    }

    .field-2{grid-column:span 2;}
    .field-3{grid-column:span 3;}
    .field-4{grid-column:span 4;}
    .field-6{grid-column:span 6;}

    label{
      display:block;
      margin-bottom:6px;
      font-size:.92rem;
      font-weight:700;
      color:#334155;
    }

    input, select, button, textarea{
      width:100%;
      border-radius:12px;
      border:1px solid #cbd5e1;
      padding:12px 14px;
      font-size:.97rem;
      background:#fff;
      color:var(--ink);
    }

    input:focus, select:focus, textarea:focus{
      outline:2px solid rgba(14,165,233,.15);
      border-color:var(--accent-2);
    }

    button{
      cursor:pointer;
      font-weight:700;
      transition:transform .06s ease, opacity .2s ease;
    }

    button:hover{opacity:.96}
    button:active{transform:translateY(1px)}

    .btn{
      background:var(--accent);
      color:#fff;
      border:none;
    }

    .btn-secondary{
      background:#0f172a;
      color:#fff;
      border:none;
    }

    .btn-soft{
      background:var(--soft);
      color:#0f172a;
      border:1px solid #bfdbfe;
    }

    .btn-danger{
      background:var(--danger);
      color:#fff;
      border:none;
    }

    .btn-warn{
      background:#fff7ed;
      color:var(--warn);
      border:1px solid #fed7aa;
    }

    .status{
      padding:12px 14px;
      border-radius:14px;
      background:#f8fafc;
      border:1px solid #e2e8f0;
      margin-top:10px;
      line-height:1.5;
    }

    .status strong{color:#0f172a}

    .metric-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
    }

    .metric{
      background:#f8fafc;
      border:1px solid #e2e8f0;
      border-radius:16px;
      padding:14px;
    }

    .metric .label{
      display:block;
      color:var(--muted);
      font-size:.9rem;
      margin-bottom:8px;
    }

    .metric .value{
      font-size:1.45rem;
      font-weight:800;
      letter-spacing:-.02em;
    }

    .subtle{
      color:var(--muted);
      font-size:.92rem;
    }

    .progress-wrap{
      margin-top:12px;
    }

    .progress{
      width:100%;
      height:16px;
      border-radius:999px;
      background:#e2e8f0;
      overflow:hidden;
      border:1px solid #cbd5e1;
    }

    .progress > span{
      display:block;
      height:100%;
      width:0;
      background:linear-gradient(90deg,#0f766e,#0ea5e9);
    }

    table{
      width:100%;
      border-collapse:collapse;
      margin-top:10px;
    }

    th, td{
      text-align:left;
      padding:12px 10px;
      border-bottom:1px solid #e2e8f0;
      vertical-align:top;
      font-size:.95rem;
    }

    th{
      background:#f8fafc;
      color:#334155;
      font-size:.9rem;
      position:sticky;
      top:0;
    }

    .table-wrap{
      overflow:auto;
      max-height:420px;
      border:1px solid #e2e8f0;
      border-radius:16px;
    }

    .pill{
      display:inline-block;
      padding:6px 10px;
      border-radius:999px;
      font-size:.82rem;
      font-weight:700;
      background:#eef2ff;
      color:#3730a3;
    }

    .pill.office{
      background:#ecfeff;
      color:#155e75;
    }

    .pill.remote{
      background:#f5f3ff;
      color:#6d28d9;
    }

    .footer-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:14px;
    }

    .hint{
      background:var(--success-bg);
      border:1px solid #bbf7d0;
      color:#166534;
      padding:10px 12px;
      border-radius:12px;
      margin-top:10px;
      font-size:.93rem;
    }

    .warning{
      background:#fff7ed;
      border:1px solid #fed7aa;
      color:#9a3412;
      padding:10px 12px;
      border-radius:12px;
      margin-top:10px;
      font-size:.93rem;
    }

    .danger-text{
      color:var(--danger);
      font-weight:700;
    }

    .right{
      text-align:right;
    }

    .mono{
      font-family:Consolas, Monaco, monospace;
    }

    @media (max-width: 1050px){
      .cols-4, .cols-5, .cols-6, .cols-7, .cols-8{grid-column:span 12;}
      .metric-grid{grid-template-columns:repeat(2,1fr);}
      .field-2, .field-3, .field-4, .field-6{grid-column:span 12;}
    }

    @media (max-width: 640px){
      .container{padding:14px;}
      .hero{padding:18px;}
      .metric-grid{grid-template-columns:1fr;}
      th, td{font-size:.9rem; padding:10px 8px;}
    }
.hidden{display:none!important}

.vc-topbar .vc-link-btn, .vc-topbar .vc-ghost-btn, .vc-topbar .vc-brand-block{width:auto !important; display:inline-flex;}
.vc-topbar .vc-topbar-actions{width:auto;}
.vc-topbar button, .vc-topbar a{width:auto !important;}
