.tools-c .of-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.tools-c .of-card {
  position: absolute;
  left: 50%;
  bottom: 8px;
  margin-left: -62px;
  width: 124px;
  height: 152px;
  background: var(--surface-color);
  border-radius: 10px;
  border: 1px solid var(--border-color);
  box-shadow:
    0 6px 18px -6px rgba(0, 0, 0, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 10px 11px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transform-origin: center bottom;
  z-index: 5;
}

.tools-c .of-c1 {
  transform: rotate(-14deg) translateX(-62px);
  z-index: 5;
  opacity: 0.92;
}
.tools-c .of-c2 {
  transform: rotate(-5deg) translateX(-22px);
  z-index: 6;
}
.tools-c .of-c3 {
  transform: rotate(5deg) translateX(22px);
  z-index: 7;
}
.tools-c .of-c4 {
  transform: rotate(14deg) translateX(62px);
  z-index: 8;
  border-color: rgba(var(--primary-color-rgb), 0.35);
  box-shadow:
    0 14px 32px -10px rgba(var(--primary-color-rgb), 0.28),
    0 0 0 1px rgba(var(--primary-color-rgb), 0.1);
}

.tools-c:hover .of-c1 {
  transform: rotate(-18deg) translateX(-72px) translateY(-4px);
}
.tools-c:hover .of-c2 {
  transform: rotate(-7deg) translateX(-28px) translateY(-8px);
}
.tools-c:hover .of-c3 {
  transform: rotate(7deg) translateX(28px) translateY(-8px);
}
.tools-c:hover .of-c4 {
  transform: rotate(18deg) translateX(72px) translateY(-4px) scale(1.03);
  border-color: rgba(var(--primary-color-rgb), 0.5);
  box-shadow:
    0 20px 40px -10px rgba(var(--primary-color-rgb), 0.38),
    0 0 0 1px rgba(var(--primary-color-rgb), 0.18);
}

.tools-c .of-head {
  font-family: "JetBrains Mono", monospace;
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
}
.tools-c .of-head.tight {
  font-size: 6.5px;
  letter-spacing: 0;
  line-height: 1.1;
  white-space: nowrap;
}
.tools-c .of-c4 .of-head {
  color: var(--primary-color-deep);
}

.tools-c .of-pill {
  height: 4px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
}

.tools-c .of-c1 .of-line {
  height: 3px;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.08);
}
.tools-c .of-c1 .of-line.long {
  width: 90%;
}
.tools-c .of-c1 .of-line.med {
  width: 65%;
}
.tools-c .of-c1 .of-line.short {
  width: 40%;
}
.tools-c .of-c1 .of-section {
  margin-top: 4px;
  height: 7px;
  width: 38%;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.12);
}

.tools-c .of-chart {
  margin-top: 4px;
  flex: 1;
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(var(--info-color-rgb), 0.04),
    transparent
  );
  border-radius: 6px;
  overflow: hidden;
}
.tools-c .of-bars {
  position: absolute;
  inset: 6px 4px 4px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.tools-c .of-bars span {
  width: 12%;
  background: linear-gradient(
    180deg,
    rgba(var(--info-color-rgb), 0.7),
    rgba(var(--info-color-rgb), 0.25)
  );
  border-radius: 2px 2px 0 0;
}
.tools-c .of-c2 .of-pill {
  margin-top: 4px;
}

.tools-c .of-c3 .of-line {
  height: 2.5px;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.08);
}
.tools-c .of-c3 .of-line.f {
  width: 95%;
}
.tools-c .of-c3 .of-line.s {
  width: 88%;
}
.tools-c .of-c3 .of-line.t {
  width: 78%;
}
.tools-c .of-c3 .of-line.u {
  width: 60%;
}
.tools-c .of-sig {
  margin-top: auto;
  height: 14px;
  width: 50%;
  border-radius: 3px;
  background: repeating-linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.15) 0 1px,
    transparent 1px 4px
  );
}

.tools-c .of-profile {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 5px;
}
.tools-c .of-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.16),
    rgba(0, 0, 0, 0.08)
  );
  border: 1px solid rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}
.tools-c .of-prof-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}
.tools-c .of-prof-name {
  height: 4px;
  width: 80%;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.18);
}
.tools-c .of-prof-role {
  height: 3px;
  width: 56%;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.1);
}
.tools-c .of-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 6px;
}
.tools-c .of-info-row {
  height: 3px;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.09);
}
.tools-c .of-info-row.w90 {
  width: 90%;
}
.tools-c .of-info-row.w70 {
  width: 68%;
}
.tools-c .of-info-row.w50 {
  width: 48%;
}
.tools-c .of-stats {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
  padding-top: 6px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.tools-c .of-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.tools-c .of-stat-num {
  height: 6px;
  width: 60%;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.18);
}
.tools-c .of-stat-lbl {
  height: 2.5px;
  width: 80%;
  border-radius: 1px;
  background: rgba(0, 0, 0, 0.08);
}
