:root{
  --bg:#06080d;
  --surface:#0f1626;
  --surface-2:#131c30;
  --surface-3:#1a2438;
  --text:#f8fafc;
  --muted:#a7b0bf;
  --muted-2:#7f8aa0;
  --border:rgba(255,255,255,.08);
  --border-strong:rgba(255,255,255,.16);
  --accent:#ff6a00;
  --accent-2:#ffb347;
  --shadow:0 18px 46px rgba(0,0,0,.55);
  --shadow-soft:0 12px 24px rgba(0,0,0,.35);
  --radius:16px;
  --radius-lg:24px;
  --max:1160px;
  color-scheme: dark;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:"Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 520px at 16% -10%, rgba(255,106,0,.20), transparent 55%),
    radial-gradient(800px 520px at 88% 0%, rgba(0,200,255,.14), transparent 55%),
    radial-gradient(900px 720px at 40% 110%, rgba(255,255,255,.06), transparent 60%),
    linear-gradient(180deg, #05070b 0%, #07090d 100%);
  min-height:100vh;
  display:flex;
  flex-direction:column;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.hidden{display:none !important}

h1,h2,h3{margin:0;font-weight:850;letter-spacing:-.02em}
p{margin:0;color:var(--muted);line-height:1.6}

/* Announcement */
.announcement{
  background:linear-gradient(90deg, rgba(255,106,0,.18), rgba(255,179,71,.12));
  border-bottom:1px solid rgba(255,255,255,.08);
}
.announcement-inner{
  max-width:var(--max);
  margin:0 auto;
  padding:8px 20px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-size:12px;
  color:var(--muted);
}
.announcement-inner a{
  color:#fff;
  font-weight:800;
  text-decoration:underline;
}

/* Header */
.top-bar{
  position:sticky;
  top:0;
  z-index:50;
  width:100%;
  background:rgba(6,8,13,.82);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--border);
}
.top-bar-inner{
  max-width:var(--max);
  margin:0 auto;
  padding:14px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.top-bar-left{display:flex;align-items:center;gap:12px;min-width:200px}
.logo-circle{
  width:36px;height:36px;border-radius:12px;
  display:grid;place-items:center;
  font-weight:900;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,106,0,.90), rgba(255,106,0,.08) 55%),
    linear-gradient(180deg, #1a2232 0%, #0f131c 100%);
  border:1px solid var(--border-strong);
  box-shadow:var(--shadow-soft);
}
.brand-text{display:flex;flex-direction:column;gap:2px}
.brand-name{font-size:12px;font-weight:900;letter-spacing:.2em;text-transform:uppercase}
.brand-subtitle{font-size:11px;color:var(--muted)}
.top-nav{display:flex;align-items:center;gap:8px;flex-wrap:wrap;justify-content:flex-end}
.nav-link{
  font-size:12px;
  color:var(--muted);
  padding:8px 12px;
  border-radius:999px;
  border:1px solid transparent;
  transition:all .2s ease;
}
.nav-link:hover{color:var(--text);border-color:var(--border);background:rgba(255,255,255,.05)}
.nav-active{color:var(--text);background:rgba(255,106,0,.16);border-color:rgba(255,106,0,.36)}
.nav-cta{color:#111;background:linear-gradient(180deg, rgba(255,106,0,1) 0%, rgba(255,106,0,.92) 100%);border-color:rgba(255,106,0,.55);font-weight:900}

/* Page */
.page{
  width:100%;
  max-width:var(--max);
  margin:0 auto;
  padding:24px 20px 32px;
  display:flex;
  flex-direction:column;
  gap:24px;
}
.page.tool-page{max-width:1480px;width:min(1480px, calc(100vw - 40px))}

.hero{
  display:grid;
  grid-template-columns:minmax(0, 1.15fr) minmax(0, .85fr);
  gap:20px;
  align-items:stretch;
}
@media (max-width: 1024px){
  .hero{grid-template-columns:1fr}
}
.hero-home{
  position:relative;
}

.hero-card{
  border-radius:var(--radius-lg);
  border:1px solid var(--border);
  background:
    radial-gradient(820px 440px at 18% 10%, rgba(255,106,0,.24), transparent 58%),
    linear-gradient(180deg, rgba(18,26,43,.92) 0%, rgba(7,10,15,.95) 100%);
  box-shadow:var(--shadow);
  padding:28px;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.hero-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:11px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--muted);
}
.hero-eyebrow::before{
  content:"";
  width:12px;height:12px;border-radius:3px;
  background:linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow:0 0 0 4px rgba(255,106,0,.18)
}
.hero-card h1{font-size:38px;line-height:1.05}
.hero-actions{display:flex;gap:10px;flex-wrap:wrap}

.hero-metrics{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(140px, 1fr));
  gap:10px;
  margin-top:10px;
}
.metric{
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg, rgba(19,28,48,.55) 0%, rgba(7,10,15,.85) 100%);
  padding:10px 12px;
  display:flex;
  flex-direction:column;
  gap:6px;
}
.metric-label{font-size:10px;color:var(--muted-2);text-transform:uppercase;letter-spacing:.2em}
.metric-value{font-size:14px;font-weight:800;color:#fff}

.hero-media{
  display:grid;
  gap:14px;
  min-width:0;
}
.hero-media-card{
  border-radius:20px;
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(420px 200px at 20% 20%, rgba(255,106,0,.18), transparent 60%),
    linear-gradient(180deg, rgba(20,28,44,.88) 0%, rgba(8,10,15,.92) 100%);
  box-shadow:var(--shadow-soft);
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.hero-media-card h3{font-size:16px;font-weight:800}
.hero-media-actions{display:flex;gap:8px;flex-wrap:wrap}

.section-title{display:flex;flex-direction:column;gap:6px;margin-bottom:12px}
.section-title h2{font-size:22px}
.section-title .hint{color:var(--muted-2);font-size:13px}

.panel{
  border-radius:var(--radius);
  border:1px solid var(--border);
  background:linear-gradient(180deg, rgba(17,26,43,.90) 0%, rgba(8,10,14,.94) 100%);
  box-shadow:var(--shadow-soft);
  padding:20px;
}
.panel.wide{padding:26px}

.grid-3{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:16px;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:16px;
}

/* Icon row */
.icon-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
}
@media (max-width: 980px){
  .icon-grid{grid-template-columns:repeat(2, minmax(0, 1fr))}
}
@media (max-width: 640px){
  .icon-grid{grid-template-columns:1fr}
}
.icon-card{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(19,28,48,.75) 0%, rgba(7,10,15,.92) 100%);
  box-shadow:var(--shadow-soft);
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:10px;
  min-height:170px;
}
.icon-badge{
  width:44px;height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  display:grid;place-items:center;
}
.icon-badge img{
  width:24px;
  height:24px;
  object-fit:contain;
}
.icon-card h3{font-size:15px}
.icon-card p{font-size:13px}
.feature-panel{position:relative;overflow:hidden}
.feature-panel::after{
  content:"";
  position:absolute;
  top:-120px;
  right:-160px;
  width:320px;
  height:320px;
  background:radial-gradient(circle, rgba(255,106,0,.18), transparent 70%);
  pointer-events:none;
}

/* Buttons */
.btn,.btn-primary,.btn-ghost{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  border-radius:999px;
  padding:10px 14px;
  font-size:12px;
  font-weight:800;
  border:1px solid transparent;
  cursor:pointer;
  line-height:1;
  transition:all .2s ease;
}
.btn{color:var(--text);background:rgba(255,255,255,.06);border-color:rgba(255,255,255,.10)}
.btn:hover{background:rgba(255,255,255,.12)}
.btn-primary{color:#111;background:linear-gradient(180deg, rgba(255,106,0,1) 0%, rgba(255,106,0,.92) 100%);border-color:rgba(255,106,0,.60)}
.btn-primary:hover{filter:brightness(1.05)}
.btn-ghost{color:var(--muted);border-color:var(--border);background:transparent}
.btn-ghost:hover{color:var(--text);border-color:var(--border-strong);background:rgba(255,255,255,.05)}
.btn-small{padding:8px 12px;font-size:11px}

/* Inputs */
label{font-size:12px;color:var(--muted);display:block;margin-bottom:8px;font-weight:900}
select, textarea, input[type="text"], input[type="email"], input[type="number"]{
  width:100%;
  border-radius:12px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  color:var(--text);
  padding:10px 12px;
  outline:none;
  font-size:13px;
}
select option{background:#0f1624;color:#f1f5f9}

/* Shop */
.product-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:18px;
}
.product-card{
  border-radius:20px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.02) 100%);
  box-shadow:var(--shadow-soft);
  overflow:hidden;
  transition:transform .2s ease, box-shadow .2s ease;
}
.product-card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.product-thumb{
  height:160px;
  background:
    radial-gradient(640px 260px at 20% 30%, rgba(255,106,0,.20), transparent 55%),
    linear-gradient(180deg, rgba(17,26,43,.75) 0%, rgba(8,10,14,.75) 100%);
}
.product-body{padding:16px;display:flex;flex-direction:column;gap:10px}
.product-name{font-weight:800;font-size:15px;color:#fff}
.product-meta{font-size:12px;color:var(--muted-2)}
.product-row{display:flex;align-items:center;justify-content:space-between;gap:8px;margin-top:auto}
.price{font-weight:900;font-size:16px}
.badge{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.1em;
  padding:4px 8px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  color:var(--muted);
}
.badge.accent{border-color:rgba(255,106,0,.5);color:rgba(255,210,190,.95)}

/* Gallery */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:16px;
}
.gallery-tile{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  overflow:hidden;
  box-shadow:var(--shadow-soft);
}
.gallery-image{
  height:160px;
  background:
    radial-gradient(640px 260px at 20% 30%, rgba(0,200,255,.22), transparent 55%),
    linear-gradient(180deg, rgba(17,26,43,.75) 0%, rgba(8,10,14,.75) 100%);
}
.gallery-body{padding:14px;display:flex;flex-direction:column;gap:6px}
.gallery-title{font-weight:800;font-size:14px;color:#fff}
.gallery-meta{font-size:12px;color:var(--muted-2)}

/* Footer */
.footer{
  border-top:1px solid var(--border);
  padding:20px;
  color:var(--muted-2);
  font-size:12px;
  display:flex;
  flex-direction:column;
  gap:6px;
  max-width:var(--max);
  width:100%;
  margin:0 auto 20px;
}

/* Tooling + wizard (existing) */
.hero-subtitle{margin:0;color:var(--muted);line-height:1.55;max-width:80ch}
.hero-row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.btn-icon{
  width:16px;
  height:16px;
  display:block;
  flex-shrink:0;
}
.wizard-title{
  font-size:12px;
  font-weight:900;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:var(--muted-2);
  margin-bottom:8px;
}

.js-status{font-size:12px;font-weight:900;letter-spacing:.02em;padding:10px 12px;border-radius:999px;border:1px solid rgba(255,255,255,.12);user-select:none;white-space:nowrap}
.js-status-ok{background:rgba(34,197,94,.12);color:rgba(220,252,231,.95)}
.js-status-warn{background:rgba(255,106,0,.12);color:rgba(255,226,204,.95)}

.card{
  border-radius:var(--radius);
  border:1px solid var(--border);
  background:linear-gradient(180deg, rgba(17,26,43,.90) 0%, rgba(10,12,16,.90) 100%);
  box-shadow:var(--shadow-soft);
  padding:16px;
}

/* Wizard layout */
.wizard-shell{display:grid;grid-template-columns:410px 1fr;gap:14px;align-items:start}
@media (max-width:980px){ .wizard-shell{grid-template-columns:1fr} }

/* Left card spacing */
.wizard-left .field{ margin-bottom:14px; }
.wizard-left textarea{ min-height:140px; }

/* Left buttons */
.wizard-left .button-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:10px;
}
.wizard-left .button-row button{
  width:auto;
  min-width:190px;
}

/* View chips */
.view-label{display:none !important;}
.chip-row{display:flex;gap:10px;flex-wrap:wrap;margin-top:8px}
.chip{
  border-radius:999px;
  padding:9px 12px;
  min-height:34px;
  font-size:12px;
  font-weight:900;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:rgba(241,245,249,.88);
  cursor:pointer;
  line-height:1;
}
.chip-ghost{
  background:rgba(255,255,255,.03);
  border-color:rgba(255,255,255,.08);
  color:var(--muted);
}
.chip .btn-icon,
.chip .hint-icon img{
  width:14px;
  height:14px;
}
.hint-icon{
  display:inline-flex;
  align-items:center;
}
.chip-active{background:rgba(255,106,0,.16);border-color:rgba(255,106,0,.42);color:rgba(241,245,249,.95)}

/* Results header: sort+filters top-right */
.results-header{display:flex;align-items:flex-start;gap:12px;flex-wrap:wrap}
.results-title{font-weight:950;font-size:16px}
.results-subtitle{font-size:12px;color:var(--muted);max-width:60ch}
.results-mode-line{font-size:11px;color:var(--muted-2);margin-top:6px}
.results-hints{display:flex;gap:8px;flex-wrap:wrap;margin:10px 0}
.results-header-right{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin-left:auto;
  justify-content:flex-end;
}
.sort-label{display:none !important;}
.sort-select, #sortBy{
  appearance:none;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:
    url("/assets/icons/Sort.png") 10px center / 16px 16px no-repeat,
    rgba(255,255,255,.05);
  color:rgba(241,245,249,.92);
  font-weight:900;
  font-size:12px;
  padding:9px 34px 9px 36px;
  min-height:34px;
  cursor:pointer;
  line-height:1;
}
.filters-btn, #filtersBtn{
  min-height:34px;
  padding:9px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  color:rgba(241,245,249,.92);
  font-weight:900;
  line-height:1;
}

/* Filters dropdown */
.filters-dropdown{
  display:none;
  width:280px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg, rgba(17,26,43,.96) 0%, rgba(8,10,14,.96) 100%);
  box-shadow:var(--shadow);
  padding:12px;
}
.filters-dropdown.show{display:block}
.filters-title{
  font-size:11px;
  font-weight:900;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:var(--muted-2);
  margin-bottom:10px;
}
.checkbox-row,
.radio-row{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  color:var(--muted);
  margin-bottom:8px;
}
.radio-block{margin-top:8px}
.radio-title{
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--muted-2);
  margin:8px 0 6px;
}
.filters-actions{margin-top:10px;display:flex;justify-content:flex-end}

/* Results box */
.results-grid, #results{
  margin-top:10px;
  border-radius:var(--radius);
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  padding:12px;
  overflow:auto;
  min-height:calc(100vh - 320px);
  max-height:calc(100vh - 320px);
}

/* Filament cards */
.card-result{
  position:relative;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.02) 100%);
  box-shadow:0 10px 22px rgba(0,0,0,.35);
  padding:12px 12px 10px;
  margin:10px 0;
}
.card-result-title{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:950;
}
.badge-row{display:flex;flex-wrap:wrap;gap:8px;margin:10px 0}
.badge-row .badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:11px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:var(--muted);
}
.badge-row .badge .icon{
  display:inline-flex;
  align-items:center;
}
.badge-row .badge img{
  width:14px;
  height:14px;
  display:block;
}
.badge-category-standard{border-color:rgba(56,189,248,.4);color:rgba(186,230,253,.95)}
.badge-category-engineering{border-color:rgba(168,85,247,.45);color:rgba(233,213,255,.95)}
.badge-category-flexible{border-color:rgba(34,197,94,.4);color:rgba(187,247,208,.95)}
.badge-category-special{border-color:rgba(249,115,22,.4);color:rgba(254,215,170,.95)}
.badge-category-support{border-color:rgba(250,204,21,.45);color:rgba(254,249,195,.95)}
.badge-difficulty-easy{border-color:rgba(34,197,94,.4);color:rgba(187,247,208,.95)}
.badge-difficulty-medium{border-color:rgba(59,130,246,.45);color:rgba(191,219,254,.95)}
.badge-difficulty-hard{border-color:rgba(249,115,22,.45);color:rgba(254,215,170,.95)}
.badge-difficulty-extreme{border-color:rgba(239,68,68,.45);color:rgba(254,202,202,.95)}
.enclosure-pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:11px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:var(--muted);
}
.enclosure-open{border-color:rgba(34,197,94,.4);color:rgba(187,247,208,.95)}
.enclosure-closed{border-color:rgba(249,115,22,.45);color:rgba(254,215,170,.95)}
.result-empty{
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  padding:14px;
  background:rgba(255,255,255,.03);
  color:var(--muted);
  line-height:1.6;
}

/* Icon fills the container (emoji/img/svg) */
.filament-icon{
  width:34px;height:34px;
  display:grid;place-items:center;
  border-radius:12px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  line-height:1;
  font-size:32px;
  padding:0;
}
.filament-icon img,.filament-icon svg{
  width:32px;height:32px;display:block;
}
.btn-copy-profile{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:rgba(241,245,249,.90);
  font-weight:900;
  padding:8px 12px;
  cursor:pointer;
  margin-top:10px;
}
.btn-copy-profile:hover{background:rgba(255,255,255,.08)}

/* Score + Copy pinned top-right */
.score-stack{
  position:absolute;
  top:12px;
  right:12px;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:8px;
  z-index:3;
}
.card-result-score{font-weight:950;color:rgba(241,245,249,.92)}
.btn-copy-profile.copy-under-score{
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:rgba(241,245,249,.90);
  font-weight:950;
  padding:8px 10px;
  cursor:pointer;
  line-height:1;
}

/* Print profile float */
.card-result.has-profile-float{ padding-right: 360px; }
.profile-float{
  position:absolute;
  top:92px;
  right:12px;
  width:332px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  padding:12px;
  z-index:2;
}
.profile-float .profile-title{margin:0 0 8px 0;font-weight:950}
.profile-float .profile-list{margin:0 0 0 18px;color:rgba(241,245,249,.90)}
@media (max-width: 1100px){
  .card-result.has-profile-float{ padding-right: 12px; }
  .profile-float{ position:static; margin:10px 0 0; width:auto; }
}

/* ===== Restore count visibility explicitly ===== */
.results-count{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:950;
  color:rgba(241,245,249,.90);
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
}
.inline-meta-count #resultsCount{
  display:inline-flex !important;
}

/* ===== Tools page ===== */
.tools-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:16px;
}
@media (max-width: 900px){
  .tools-grid{ grid-template-columns:1fr; }
}

.tool-card{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.02) 100%);
  box-shadow:0 10px 22px rgba(0,0,0,.35);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  min-height:260px;
}
.tool-thumb{
  height:160px;
  display:block;
  background:
    radial-gradient(680px 260px at 20% 30%, rgba(255,106,0,.18), transparent 55%),
    linear-gradient(180deg, rgba(17,26,43,.75) 0%, rgba(8,10,14,.75) 100%);
  border-bottom:1px solid rgba(255,255,255,.10);
}
.tool-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:drop-shadow(0 14px 24px rgba(0,0,0,.55));
}
.tool-body{
  padding:14px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.tool-title{
  font-size:16px;
  font-weight:950;
  letter-spacing:-.01em;
}
.tool-desc{
  color:rgba(241,245,249,.80);
  line-height:1.45;
  font-size:13px;
}
.tool-actions{
  margin-top:auto;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
