.tools-hero{
    max-width: 920px;
    margin: 0 auto;
}
.tools-panel{
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    background:linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.015));
    box-shadow:0 18px 40px rgba(0,0,0,.22);
    backdrop-filter:blur(8px);
}
.tools-note{
    font-size:.9rem;
    color:rgba(255,255,255,.66);
}
.tool-card{
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    background:rgba(255,255,255,.025);
    height:100%;
    transition:transform .15s ease,border-color .15s ease,box-shadow .15s ease;
}
.tool-card:hover{
    transform:translateY(-4px);
    border-color:rgba(255,193,7,.35);
    box-shadow:0 12px 24px rgba(0,0,0,.2);
}
.tool-pill{
    display:inline-flex;
    align-items:center;
    padding:5px 10px;
    border-radius:999px;
    font-size:.72rem;
    font-weight:800;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.12);
    color:rgba(255,255,255,.9);
}
.tool-card-title{
    font-size:1.05rem;
    font-weight:800;
}
.tool-card-text{
    color:rgba(255,255,255,.76);
    font-size:.94rem;
}
.tools-empty{
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    background:rgba(255,255,255,.02);
}
.future-list{
    list-style:none;
    padding-left:0;
    margin:0;
}
.future-list li{
    padding:10px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
    color:rgba(255,255,255,.82);
}
.future-list li:last-child{
    border-bottom:0;
}
.future-label{
    color:rgba(255,255,255,.62);
    font-weight:700;
    margin-right:8px;
}

body.light-mode .tools-panel,
body.light-mode .tool-card,
body.light-mode .tools-empty{
    background:#fff;
    border-color:#e5e7eb;
    box-shadow:0 10px 24px rgba(0,0,0,.08);
}
body.light-mode .tools-note,
body.light-mode .tool-card-text,
body.light-mode .future-list li,
body.light-mode .future-label{
    color:#6b7280;
}
body.light-mode .tool-card-title{
    color:#111827;
}
body.light-mode .tool-pill{
    background:#f3f4f6;
    color:#111827;
    border-color:#d1d5db;
}
body.light-mode .future-list li{
    border-color:#e5e7eb;
}
